Kconfig 782 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. config BLK_DEV_RNBD
  3. bool
  4. config BLK_DEV_RNBD_CLIENT
  5. tristate "RDMA Network Block Device driver client"
  6. depends on INFINIBAND_RTRS_CLIENT
  7. select BLK_DEV_RNBD
  8. select SG_POOL
  9. help
  10. RNBD client is a network block device driver using rdma transport.
  11. RNBD client allows for mapping of a remote block devices over
  12. RTRS protocol from a target system where RNBD server is running.
  13. If unsure, say N.
  14. config BLK_DEV_RNBD_SERVER
  15. tristate "RDMA Network Block Device driver server"
  16. depends on INFINIBAND_RTRS_SERVER
  17. select BLK_DEV_RNBD
  18. help
  19. RNBD server is the server side of RNBD using rdma transport.
  20. RNBD server allows for exporting local block devices to a remote client
  21. over RTRS protocol.
  22. If unsure, say N.