diff options
author | Philippe Mathieu-Daudé | 2021-01-20 16:35:21 +0100 |
---|---|---|
committer | Gerd Hoffmann | 2021-01-22 14:51:35 +0100 |
commit | 2e8f72acb0e948566c129d3e819cd77b9a8789ac (patch) | |
tree | b6532237678e8e22376f72cb93415a69d2bc1249 /scsi | |
parent | hw/usb/hcd-xhci: Fix extraneous format-truncation error on 32-bit hosts (diff) | |
download | qemu-2e8f72acb0e948566c129d3e819cd77b9a8789ac.tar.gz qemu-2e8f72acb0e948566c129d3e819cd77b9a8789ac.tar.xz qemu-2e8f72acb0e948566c129d3e819cd77b9a8789ac.zip |
scsi/utils: Add INVALID_PARAM_VALUE sense code definition
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210120153522.1173897-3-philmd@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'scsi')
-rw-r--r-- | scsi/utils.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scsi/utils.c b/scsi/utils.c index b37c283014..793c3a6b9c 100644 --- a/scsi/utils.c +++ b/scsi/utils.c @@ -197,6 +197,11 @@ const struct SCSISense sense_code_INVALID_PARAM = { .key = ILLEGAL_REQUEST, .asc = 0x26, .ascq = 0x00 }; +/* Illegal request, Invalid value in parameter list */ +const struct SCSISense sense_code_INVALID_PARAM_VALUE = { + .key = ILLEGAL_REQUEST, .asc = 0x26, .ascq = 0x01 +}; + /* Illegal request, Parameter list length error */ const struct SCSISense sense_code_INVALID_PARAM_LEN = { .key = ILLEGAL_REQUEST, .asc = 0x1a, .ascq = 0x00 |