diff options
author | Paolo Bonzini | 2011-11-14 14:31:51 +0100 |
---|---|---|
committer | Kevin Wolf | 2011-11-18 14:12:15 +0100 |
commit | f3b338ef4afaba105357f62143491e51d35c5b42 (patch) | |
tree | 10ba3081b4048e6f42712a12373c0dca5914faf1 /hw/scsi.h | |
parent | scsi: remove block descriptors from CDs (diff) | |
download | qemu-f3b338ef4afaba105357f62143491e51d35c5b42.tar.gz qemu-f3b338ef4afaba105357f62143491e51d35c5b42.tar.xz qemu-f3b338ef4afaba105357f62143491e51d35c5b42.zip |
scsi: pass down REQUEST SENSE to the device when there is no stored sense
This will let scsi-block/scsi-generic report progress on long
operations.
Reported-by: Thomas Schmitt <scdbackup@gmxbackup.net>
Tested-by: Thomas Schmitt <scdbackup@gmxbackup.net>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/scsi.h')
-rw-r--r-- | hw/scsi.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -179,6 +179,8 @@ extern const struct SCSISense sense_code_DEVICE_INTERNAL_RESET; #define SENSE_CODE(x) sense_code_ ## x int scsi_sense_valid(SCSISense sense); +int scsi_build_sense(uint8_t *in_buf, int in_len, + uint8_t *buf, int len, bool fixed); SCSIRequest *scsi_req_alloc(const SCSIReqOps *reqops, SCSIDevice *d, uint32_t tag, uint32_t lun, void *hba_private); |