2019-05-19 13:07:45 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2016-06-21 18:04:20 +02:00
|
|
|
|
|
|
|
config NVME_TARGET
|
|
|
|
tristate "NVMe Target support"
|
|
|
|
depends on BLOCK
|
|
|
|
depends on CONFIGFS_FS
|
2020-05-19 17:05:57 +03:00
|
|
|
select BLK_DEV_INTEGRITY_T10 if BLK_DEV_INTEGRITY
|
2019-04-24 12:34:39 +02:00
|
|
|
select SGL_ALLOC
|
2016-06-21 18:04:20 +02:00
|
|
|
help
|
|
|
|
This enabled target side support for the NVMe protocol, that is
|
|
|
|
it allows the Linux kernel to implement NVMe subsystems and
|
|
|
|
controllers and export Linux block devices as NVMe namespaces.
|
|
|
|
You need to select at least one of the transports below to make this
|
|
|
|
functionality useful.
|
|
|
|
|
|
|
|
To configure the NVMe target you probably want to use the nvmetcli
|
|
|
|
tool from http://git.infradead.org/users/hch/nvmetcli.git.
|
|
|
|
|
2020-07-24 11:25:20 -06:00
|
|
|
config NVME_TARGET_PASSTHRU
|
|
|
|
bool "NVMe Target Passthrough support"
|
|
|
|
depends on NVME_TARGET
|
|
|
|
depends on NVME_CORE=y || NVME_CORE=NVME_TARGET
|
|
|
|
help
|
|
|
|
This enables target side NVMe passthru controller support for the
|
|
|
|
NVMe Over Fabrics protocol. It allows for hosts to manage and
|
|
|
|
directly access an actual NVMe controller residing on the target
|
|
|
|
side, incuding executing Vendor Unique Commands.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2016-06-21 18:04:21 +02:00
|
|
|
config NVME_TARGET_LOOP
|
|
|
|
tristate "NVMe loopback device support"
|
2016-07-12 08:36:40 -07:00
|
|
|
depends on NVME_TARGET
|
2016-08-18 11:16:36 -07:00
|
|
|
select NVME_CORE
|
2016-06-21 18:04:21 +02:00
|
|
|
select NVME_FABRICS
|
|
|
|
select SG_POOL
|
|
|
|
help
|
|
|
|
This enables the NVMe loopback device support, which can be useful
|
|
|
|
to test NVMe host and target side features.
|
|
|
|
|
2016-06-21 18:04:20 +02:00
|
|
|
If unsure, say N.
|
2016-07-06 21:55:51 +09:00
|
|
|
|
|
|
|
config NVME_TARGET_RDMA
|
|
|
|
tristate "NVMe over Fabrics RDMA target support"
|
2018-05-25 23:29:59 +02:00
|
|
|
depends on INFINIBAND && INFINIBAND_ADDR_TRANS
|
2016-07-12 08:36:40 -07:00
|
|
|
depends on NVME_TARGET
|
2018-01-05 08:26:49 -08:00
|
|
|
select SGL_ALLOC
|
2016-07-06 21:55:51 +09:00
|
|
|
help
|
|
|
|
This enables the NVMe RDMA target support, which allows exporting NVMe
|
|
|
|
devices over RDMA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2016-12-02 00:28:43 -08:00
|
|
|
|
|
|
|
config NVME_TARGET_FC
|
|
|
|
tristate "NVMe over Fabrics FC target driver"
|
|
|
|
depends on NVME_TARGET
|
|
|
|
depends on HAS_DMA
|
2018-01-05 08:26:48 -08:00
|
|
|
select SGL_ALLOC
|
2016-12-02 00:28:43 -08:00
|
|
|
help
|
|
|
|
This enables the NVMe FC target support, which allows exporting NVMe
|
|
|
|
devices over FC.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2016-12-02 00:28:44 -08:00
|
|
|
config NVME_TARGET_FCLOOP
|
|
|
|
tristate "NVMe over Fabrics FC Transport Loopback Test driver"
|
|
|
|
depends on NVME_TARGET
|
|
|
|
select NVME_CORE
|
|
|
|
select NVME_FABRICS
|
|
|
|
select SG_POOL
|
|
|
|
depends on NVME_FC
|
|
|
|
depends on NVME_TARGET_FC
|
|
|
|
help
|
|
|
|
This enables the NVMe FC loopback test support, which can be useful
|
|
|
|
to test NVMe-FC transport interfaces.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2018-12-03 17:52:15 -08:00
|
|
|
|
|
|
|
config NVME_TARGET_TCP
|
|
|
|
tristate "NVMe over Fabrics TCP target support"
|
|
|
|
depends on INET
|
|
|
|
depends on NVME_TARGET
|
|
|
|
help
|
|
|
|
This enables the NVMe TCP target support, which allows exporting NVMe
|
|
|
|
devices over TCP.
|
|
|
|
|
|
|
|
If unsure, say N.
|