aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Grover <agrover@redhat.com>2015-04-14 20:30:05 -0400
committerNicholas Bellinger <nab@linux-iscsi.org>2015-04-20 01:41:12 -0400
commit68d4cef3bab3fb9bb0dbac690ba35a96cb5a16d9 (patch)
tree7012440c3c50fdad22c00a07377e0d22340c3059
parent0ad46af8a618fc38e0cdc3927cfa9f7b42cc9423 (diff)
target: Put TCMU under a new config option
Conceptually version 2 should be viewed as an entirely new, incompatible version of TCMU, so emphasize this by changing the config option and Kconfig text. Signed-off-by: Andy Grover <agrover@redhat.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
-rw-r--r--drivers/target/Kconfig5
-rw-r--r--drivers/target/Makefile2
2 files changed, 4 insertions, 3 deletions
diff --git a/drivers/target/Kconfig b/drivers/target/Kconfig
index 81d44c477a5b..257361280510 100644
--- a/drivers/target/Kconfig
+++ b/drivers/target/Kconfig
@@ -31,12 +31,13 @@ config TCM_PSCSI
31 Say Y here to enable the TCM/pSCSI subsystem plugin for non-buffered 31 Say Y here to enable the TCM/pSCSI subsystem plugin for non-buffered
32 passthrough access to Linux/SCSI device 32 passthrough access to Linux/SCSI device
33 33
34config TCM_USER 34config TCM_USER2
35 tristate "TCM/USER Subsystem Plugin for Linux" 35 tristate "TCM/USER Subsystem Plugin for Linux"
36 depends on UIO && NET 36 depends on UIO && NET
37 help 37 help
38 Say Y here to enable the TCM/USER subsystem plugin for a userspace 38 Say Y here to enable the TCM/USER subsystem plugin for a userspace
39 process to handle requests 39 process to handle requests. This is version 2 of the ABI; version 1
40 is obsolete.
40 41
41source "drivers/target/loopback/Kconfig" 42source "drivers/target/loopback/Kconfig"
42source "drivers/target/tcm_fc/Kconfig" 43source "drivers/target/tcm_fc/Kconfig"
diff --git a/drivers/target/Makefile b/drivers/target/Makefile
index bbb4a7d638ef..e619c0266a79 100644
--- a/drivers/target/Makefile
+++ b/drivers/target/Makefile
@@ -22,7 +22,7 @@ obj-$(CONFIG_TARGET_CORE) += target_core_mod.o
22obj-$(CONFIG_TCM_IBLOCK) += target_core_iblock.o 22obj-$(CONFIG_TCM_IBLOCK) += target_core_iblock.o
23obj-$(CONFIG_TCM_FILEIO) += target_core_file.o 23obj-$(CONFIG_TCM_FILEIO) += target_core_file.o
24obj-$(CONFIG_TCM_PSCSI) += target_core_pscsi.o 24obj-$(CONFIG_TCM_PSCSI) += target_core_pscsi.o
25obj-$(CONFIG_TCM_USER) += target_core_user.o 25obj-$(CONFIG_TCM_USER2) += target_core_user.o
26 26
27# Fabric modules 27# Fabric modules
28obj-$(CONFIG_LOOPBACK_TARGET) += loopback/ 28obj-$(CONFIG_LOOPBACK_TARGET) += loopback/