diff options
| author | Sam Eiderman <shmuel.eiderman@oracle.com> | 2019-10-16 19:41:41 +0300 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2019-10-31 11:47:25 -0400 |
| commit | 6b98c5aae65b432816b3f6d9ce765edf78d66864 (patch) | |
| tree | 22136c1452af6bf5e5d5581ee96525ad36e809fa /include/hw/scsi/scsi.h | |
| parent | f7209ea1be116e06b66408d9949f5281a6c7137c (diff) | |
| download | focaccia-qemu-6b98c5aae65b432816b3f6d9ce765edf78d66864.tar.gz focaccia-qemu-6b98c5aae65b432816b3f6d9ce765edf78d66864.zip | |
scsi: Propagate unrealize() callback to scsi-hd
We will need to add LCHS removal logic to scsi-hd's unrealize() in the next commit. Reviewed-by: Karl Heubaum <karl.heubaum@oracle.com> Reviewed-by: Arbel Moshe <arbel.moshe@oracle.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Sam Eiderman <shmuel.eiderman@oracle.com> Signed-off-by: Sam Eiderman <sameid@google.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'include/hw/scsi/scsi.h')
| -rw-r--r-- | include/hw/scsi/scsi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/scsi/scsi.h b/include/hw/scsi/scsi.h index d77a92361b..332ef602f4 100644 --- a/include/hw/scsi/scsi.h +++ b/include/hw/scsi/scsi.h @@ -59,6 +59,7 @@ struct SCSIRequest { typedef struct SCSIDeviceClass { DeviceClass parent_class; void (*realize)(SCSIDevice *dev, Error **errp); + void (*unrealize)(SCSIDevice *dev, Error **errp); int (*parse_cdb)(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf, void *hba_private); SCSIRequest *(*alloc_req)(SCSIDevice *s, uint32_t tag, uint32_t lun, |