David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | |
| 3 | config 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 | |
| 10 | config 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 | |
| 17 | config 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 | |
| 25 | config RDS_DEBUG |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 26 | bool "RDS debugging messages" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 27 | depends on RDS |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 28 | default n |