summaryrefslogtreecommitdiffstats
path: root/drivers/target
diff options
context:
space:
mode:
authorRoland Dreier2012-01-18 03:00:56 +0100
committerNicholas Bellinger2012-01-18 09:35:58 +0100
commitbb1acb2ee038a6c13ee99e0b9fb44dacb4a9de84 (patch)
tree47ac9d29a68025c963f815933a68e1ed3f35de84 /drivers/target
parentiscsi-target: Fix discovery with INADDR_ANY and IN6ADDR_ANY_INIT (diff)
downloadkernel-qcow2-linux-bb1acb2ee038a6c13ee99e0b9fb44dacb4a9de84.tar.gz
kernel-qcow2-linux-bb1acb2ee038a6c13ee99e0b9fb44dacb4a9de84.tar.xz
kernel-qcow2-linux-bb1acb2ee038a6c13ee99e0b9fb44dacb4a9de84.zip
target: Return correct ASC for unimplemented VPD pages
My draft of SPC-4 says: If the device server does not implement the requested vital product data page, then the command shall be terminated with CHECK CONDITION status, with the sense key set to ILLEGAL REQUEST, and the additional sense code set to INVALID FIELD IN CDB. Signed-off-by: Roland Dreier <roland@purestorage.com> Cc: <stable@vger.kernel.org> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target')
-rw-r--r--drivers/target/target_core_cdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/target_core_cdb.c b/drivers/target/target_core_cdb.c
index 07a3025d0622..370ad13930a4 100644
--- a/drivers/target/target_core_cdb.c
+++ b/drivers/target/target_core_cdb.c
@@ -729,7 +729,7 @@ int target_emulate_inquiry(struct se_task *task)
}
pr_err("Unknown VPD Code: 0x%02x\n", cdb[2]);
- cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
+ cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
ret = -EINVAL;
out_unmap: