diff options
author | Sam Eiderman | 2019-10-16 18:41:41 +0200 |
---|---|---|
committer | John Snow | 2019-10-31 16:47:25 +0100 |
commit | 6b98c5aae65b432816b3f6d9ce765edf78d66864 (patch) | |
tree | 22136c1452af6bf5e5d5581ee96525ad36e809fa /include/hw/scsi | |
parent | bootdevice: Add interface to gather LCHS (diff) | |
download | qemu-6b98c5aae65b432816b3f6d9ce765edf78d66864.tar.gz qemu-6b98c5aae65b432816b3f6d9ce765edf78d66864.tar.xz 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')
-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, |