0001 # SPDX-License-Identifier: GPL-2.0-or-later
0002
0003 config BLK_DEV_RNBD
0004 bool
0005
0006 config BLK_DEV_RNBD_CLIENT
0007 tristate "RDMA Network Block Device driver client"
0008 depends on INFINIBAND_RTRS_CLIENT
0009 select BLK_DEV_RNBD
0010 select SG_POOL
0011 help
0012 RNBD client is a network block device driver using rdma transport.
0013
0014 RNBD client allows for mapping of a remote block devices over
0015 RTRS protocol from a target system where RNBD server is running.
0016
0017 If unsure, say N.
0018
0019 config BLK_DEV_RNBD_SERVER
0020 tristate "RDMA Network Block Device driver server"
0021 depends on INFINIBAND_RTRS_SERVER
0022 select BLK_DEV_RNBD
0023 help
0024 RNBD server is the server side of RNBD using rdma transport.
0025
0026 RNBD server allows for exporting local block devices to a remote client
0027 over RTRS protocol.
0028
0029 If unsure, say N.