diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2011-11-14 14:31:51 +0100 |
|---|---|---|
| committer | Kevin Wolf <kwolf@redhat.com> | 2011-11-18 14:12:15 +0100 |
| commit | f3b338ef4afaba105357f62143491e51d35c5b42 (patch) | |
| tree | 10ba3081b4048e6f42712a12373c0dca5914faf1 /hw/scsi.h | |
| parent | 0fd76ff40b43f5c9f02086a8d53c6157fc0d94a0 (diff) | |
| download | focaccia-qemu-f3b338ef4afaba105357f62143491e51d35c5b42.tar.gz focaccia-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
diff --git a/hw/scsi.h b/hw/scsi.h index ff8fdd0962..61c64d5c72 100644 --- a/hw/scsi.h +++ b/hw/scsi.h @@ -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); |