diff options
author | Hannes Reinecke | 2020-11-16 19:40:40 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-03-06 11:42:56 +0100 |
commit | a108557bbff8a3f44233982f015f996426411be8 (patch) | |
tree | fbda3652f6241c5c1992fd0df3ce6e054dcff298 /include/scsi | |
parent | scsi-generic: do not snoop the output of failed commands (diff) | |
download | qemu-a108557bbff8a3f44233982f015f996426411be8.tar.gz qemu-a108557bbff8a3f44233982f015f996426411be8.tar.xz qemu-a108557bbff8a3f44233982f015f996426411be8.zip |
scsi: inline sg_io_sense_from_errno() into the callers.
Currently sg_io_sense_from_errno() converts the two input parameters
'errno' and 'io_hdr' into sense code and SCSI status. Having
split the function off into scsi_sense_from_errno() and
scsi_sense_from_host_status(), both of which are available generically,
we now inline the logic in the callers so that scsi-disk and
scsi-generic will be able to pass host_status to the HBA.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Message-Id: <20201116184041.60465-7-hare@suse.de>
[Put together from "scsi-disk: Add sg_io callback to evaluate status"
and what remains of "scsi: split sg_io_sense_from_errno() in two functions",
with many other fixes. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/utils.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/scsi/utils.h b/include/scsi/utils.h index 9080d65e27..d5c8efa16e 100644 --- a/include/scsi/utils.h +++ b/include/scsi/utils.h @@ -139,9 +139,6 @@ int scsi_cdb_length(uint8_t *buf); #ifdef CONFIG_LINUX #define SG_ERR_DRIVER_TIMEOUT 0x06 #define SG_ERR_DRIVER_SENSE 0x08 - -int sg_io_sense_from_errno(int errno_value, struct sg_io_hdr *io_hdr, - SCSISense *sense); #endif int scsi_sense_from_errno(int errno_value, SCSISense *sense); |