diff options
author | Roland Dreier <roland@purestorage.com> | 2012-07-16 15:34:21 -0700 |
---|---|---|
committer | Ben Hutchings <ben@decadent.org.uk> | 2012-08-02 14:37:48 +0100 |
commit | 0c2305d15f446ea286545b12587a7c836a1fb08c (patch) | |
tree | 70f3af2af83a9f9295acb3da3d9c2ba923d1c37d /include/target | |
parent | 6e59fd8e47abf43042a41b904f095c02c47a8468 (diff) | |
download | lwn-0c2305d15f446ea286545b12587a7c836a1fb08c.tar.gz lwn-0c2305d15f446ea286545b12587a7c836a1fb08c.zip |
target: Add generation of LOGICAL BLOCK ADDRESS OUT OF RANGE
commit e2397c704429025bc6b331a970f699e52f34283e upstream.
Many SCSI commands are defined to return a CHECK CONDITION / ILLEGAL
REQUEST with ASC set to LOGICAL BLOCK ADDRESS OUT OF RANGE if the
initiator sends a command that accesses a too-big LBA. Add an enum
value and case entries so that target code can return this status.
Signed-off-by: Roland Dreier <roland@purestorage.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
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 94bbec38fd09..6ee550e4f533 100644 --- a/include/target/target_core_base.h +++ b/include/target/target_core_base.h @@ -157,6 +157,7 @@ enum tcm_sense_reason_table { TCM_CHECK_CONDITION_UNIT_ATTENTION = 0x0e, TCM_CHECK_CONDITION_NOT_READY = 0x0f, TCM_RESERVATION_CONFLICT = 0x10, + TCM_ADDRESS_OUT_OF_RANGE = 0x11, }; struct se_obj { |