xref: /linux/net/rds/Kconfig (revision 2da68a77)
1# SPDX-License-Identifier: GPL-2.0-only
2
3config RDS
4	tristate "The Reliable Datagram Sockets Protocol"
5	depends on INET
6	help
7	  The RDS (Reliable Datagram Sockets) protocol provides reliable,
8	  sequenced delivery of datagrams over Infiniband or TCP.
9
10config RDS_RDMA
11	tristate "RDS over Infiniband"
12	depends on RDS && INFINIBAND && INFINIBAND_ADDR_TRANS
13	help
14	  Allow RDS to use Infiniband as a transport.
15	  This transport supports RDMA operations.
16
17config RDS_TCP
18	tristate "RDS over TCP"
19	depends on RDS
20	depends on IPV6 || !IPV6
21	help
22	  Allow RDS to use TCP as a transport.
23	  This transport does not support RDMA operations.
24
25config RDS_DEBUG
26	bool "RDS debugging messages"
27	depends on RDS
28	default n
29