summary refs log tree commit diff
path: root/drivers/target/Makefile
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2012-05-20 11:59:14 -0400
committerNicholas Bellinger <nab@linux-iscsi.org>2012-07-16 17:25:56 -0700
commitd6e0175cf3f9737a760482d185bb73566bcc9331 (patch)
tree99ca8361ebc8c4e83f8335193963faa3f30007b5 /drivers/target/Makefile
parent88455ec4be02c395820b1ff57656b0844ec03ac3 (diff)
downloadlinux-d6e0175cf3f9737a760482d185bb73566bcc9331.tar.gz
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/Makefile')
-rw-r--r--drivers/target/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/target/Makefile b/drivers/target/Makefile
index 70cab2a138d1..50b887b349c0 100644
--- a/drivers/target/Makefile
+++ b/drivers/target/Makefile
@@ -10,6 +10,7 @@ target_core_mod-y		:= target_core_configfs.o \
 				   target_core_tpg.o \
 				   target_core_transport.o \
 				   target_core_cdb.o \
+				   target_core_sbc.o \
 				   target_core_spc.o \
 				   target_core_ua.o \
 				   target_core_rd.o \