blob: e2bc99980f7553e75cd043f8315551520714f80e [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001
2menuconfig TARGET_CORE
3 tristate "Generic Target Core Mod (TCM) and ConfigFS Infrastructure"
4 depends on SCSI && BLOCK
5 select CONFIGFS_FS
Nicholas Bellinger41861fa2014-01-07 22:44:57 +00006 select CRC_T10DIF
Christoph Hellwig72148ae2017-01-28 09:32:51 +01007 select BLK_SCSI_REQUEST # only for scsi_command_size_tbl..
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08008 default n
9 help
10 Say Y or M here to enable the TCM Storage Engine and ConfigFS enabled
11 control path for target_core_mod. This includes built-in TCM RAMDISK
12 subsystem logic for virtual LUN 0 access
13
14if TARGET_CORE
15
16config TCM_IBLOCK
17 tristate "TCM/IBLOCK Subsystem Plugin for Linux/BLOCK"
Nicholas Bellingerecebbf62013-12-23 20:31:24 +000018 select BLK_DEV_INTEGRITY
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080019 help
20 Say Y here to enable the TCM/IBLOCK subsystem plugin for non-buffered
21 access to Linux/Block devices using BIO
22
23config TCM_FILEIO
24 tristate "TCM/FILEIO Subsystem Plugin for Linux/VFS"
25 help
26 Say Y here to enable the TCM/FILEIO subsystem plugin for buffered
27 access to Linux/VFS struct file or struct block_device
28
29config TCM_PSCSI
30 tristate "TCM/pSCSI Subsystem Plugin for Linux/SCSI"
31 help
32 Say Y here to enable the TCM/pSCSI subsystem plugin for non-buffered
33 passthrough access to Linux/SCSI device
34
Andy Grover68d4cef2015-04-14 17:30:05 -070035config TCM_USER2
Andy Grover7c9e7a62014-10-01 16:07:05 -070036 tristate "TCM/USER Subsystem Plugin for Linux"
37 depends on UIO && NET
38 help
39 Say Y here to enable the TCM/USER subsystem plugin for a userspace
Andy Grover68d4cef2015-04-14 17:30:05 -070040 process to handle requests. This is version 2 of the ABI; version 1
41 is obsolete.
Andy Grover7c9e7a62014-10-01 16:07:05 -070042
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070043source "drivers/target/loopback/Kconfig"
Kiran Patil3699d922011-04-18 16:24:14 -070044source "drivers/target/tcm_fc/Kconfig"
Nicholas Bellingere48354c2011-07-23 06:43:04 +000045source "drivers/target/iscsi/Kconfig"
Chris Boota511ce32012-04-14 17:50:35 -070046source "drivers/target/sbp/Kconfig"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070047
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048endif