summaryrefslogtreecommitdiffstats
path: root/drivers/target/target_core_spc.c
diff options
context:
space:
mode:
authorChristoph Hellwig2012-05-20 17:59:14 +0200
committerNicholas Bellinger2012-07-17 02:25:56 +0200
commitd6e0175cf3f9737a760482d185bb73566bcc9331 (patch)
tree99ca8361ebc8c4e83f8335193963faa3f30007b5 /drivers/target/target_core_spc.c
parenttarget: split parsing of SPC commands into a separate helper (diff)
downloadkernel-qcow2-linux-d6e0175cf3f9737a760482d185bb73566bcc9331.tar.gz
kernel-qcow2-linux-d6e0175cf3f9737a760482d185bb73566bcc9331.tar.xz
kernel-qcow2-linux-d6e0175cf3f9737a760482d185bb73566bcc9331.zip
target: add a parse_cdb method to the backend drivers
Instead of trying to handle all SCSI command sets in one function (transport_generic_cmd_sequencer) call out to the backend driver to perform this functionality. For pSCSI a copy of the existing code is used, but for all virtual backends we can use a new parse_sbc_cdb helper is used to provide a simple SBC emulation. For now this setups means a fair amount of duplication between pSCSI and the SBC library, but patches later in this series will sort out that problem. (nab: Fix up build failure in target_core_pscsi.c) Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/target_core_spc.c')
-rw-r--r--drivers/target/target_core_spc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/target/target_core_spc.c b/drivers/target/target_core_spc.c
index ec2108667d65..156291fbf6d8 100644
--- a/drivers/target/target_core_spc.c
+++ b/drivers/target/target_core_spc.c
@@ -152,6 +152,7 @@ int spc_parse_cdb(struct se_cmd *cmd, unsigned int *size, bool passthrough)
cmd->sam_task_attr = MSG_HEAD_TAG;
break;
case TEST_UNIT_READY:
+ *size = 0;
if (!passthrough)
cmd->execute_cmd = target_emulate_noop;
break;