diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-01-20 16:35:21 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-01-22 14:51:35 +0100 |
commit | 2e8f72acb0e948566c129d3e819cd77b9a8789ac (patch) | |
tree | b6532237678e8e22376f72cb93415a69d2bc1249 /include/scsi/utils.h | |
parent | 96b66e55755a81f9e9e959e5f8a3d3aad9949167 (diff) | |
download | qemu-2e8f72acb0e948566c129d3e819cd77b9a8789ac.zip qemu-2e8f72acb0e948566c129d3e819cd77b9a8789ac.tar.gz qemu-2e8f72acb0e948566c129d3e819cd77b9a8789ac.tar.bz2 |
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 'include/scsi/utils.h')
-rw-r--r-- | include/scsi/utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/scsi/utils.h b/include/scsi/utils.h index fbc5588..096489c 100644 --- a/include/scsi/utils.h +++ b/include/scsi/utils.h @@ -57,6 +57,8 @@ extern const struct SCSISense sense_code_LBA_OUT_OF_RANGE; extern const struct SCSISense sense_code_INVALID_FIELD; /* Illegal request, Invalid field in parameter list */ extern const struct SCSISense sense_code_INVALID_PARAM; +/* Illegal request, Invalid value in parameter list */ +extern const struct SCSISense sense_code_INVALID_PARAM_VALUE; /* Illegal request, Parameter list length error */ extern const struct SCSISense sense_code_INVALID_PARAM_LEN; /* Illegal request, LUN not supported */ |