diff options
author | Hannes Reinecke <hare@suse.de> | 2012-12-17 09:53:33 +0100 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2013-01-10 20:06:08 -0800 |
commit | ba829137bfd167623363548aa385be769c6b2664 (patch) | |
tree | 27d8f1896ec608476bd7b94edfdcd5d82a72e46e /include/target | |
parent | 18a9df42d53fabfa43b78be1104838cc8b9762e1 (diff) | |
download | linux-ba829137bfd167623363548aa385be769c6b2664.tar.gz linux-ba829137bfd167623363548aa385be769c6b2664.tar.bz2 linux-ba829137bfd167623363548aa385be769c6b2664.zip |
target: Introduce TCM_NO_SENSE
Introduce TCM_NO_SENSE, mapping to sense code
'Not ready, no additional sense information'.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Cc: Nicholas Bellinger <nab@risingtidesystems.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'include/target')
-rw-r--r-- | include/target/target_core_base.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/target/target_core_base.h b/include/target/target_core_base.h index 7cae2360221e..663e34a5383f 100644 --- a/include/target/target_core_base.h +++ b/include/target/target_core_base.h @@ -174,6 +174,7 @@ typedef unsigned __bitwise__ sense_reason_t; enum tcm_sense_reason_table { #define R(x) (__force sense_reason_t )(x) + TCM_NO_SENSE = R(0x00), TCM_NON_EXISTENT_LUN = R(0x01), TCM_UNSUPPORTED_SCSI_OPCODE = R(0x02), TCM_INCORRECT_AMOUNT_OF_DATA = R(0x03), |