Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-or-later
2
3config BLK_DEV_RNBD
4 bool
5
6config BLK_DEV_RNBD_CLIENT
7 tristate "RDMA Network Block Device driver client"
8 depends on INFINIBAND_RTRS_CLIENT
9 select BLK_DEV_RNBD
10 help
11 RNBD client is a network block device driver using rdma transport.
12
13 RNBD client allows for mapping of a remote block devices over
14 RTRS protocol from a target system where RNBD server is running.
15
16 If unsure, say N.
17
18config BLK_DEV_RNBD_SERVER
19 tristate "RDMA Network Block Device driver server"
20 depends on INFINIBAND_RTRS_SERVER
21 select BLK_DEV_RNBD
22 help
23 RNBD server is the server side of RNBD using rdma transport.
24
25 RNBD server allows for exporting local block devices to a remote client
26 over RTRS protocol.
27
28 If unsure, say N.