diff options
author | Andy Grover <andy.grover@oracle.com> | 2009-08-21 08:28:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-08-23 22:13:09 -0400 |
commit | 40d866095df3bb70ded1813f4852cab445ef678b (patch) | |
tree | 681862ddcfe3706eacbacae324c6762e1c1f628c /net/rds/Kconfig | |
parent | 616b757ae18fb8ec2dfe7ff9d3f589f82cb0eb9d (diff) |
RDS: Modularize RDMA and TCP transports
Enable the building of transports as modules.
Also, improve consistency of Kconfig messages in relation to other
protocols, and move build dependency on IB from the RDS core code
to the rds_rdma module.
Signed-off-by: Andy Grover <andy.grover@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/Kconfig')
-rw-r--r-- | net/rds/Kconfig | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/net/rds/Kconfig b/net/rds/Kconfig index 796773b5df9b..ec753b3ae72a 100644 --- a/net/rds/Kconfig +++ b/net/rds/Kconfig | |||
@@ -1,14 +1,28 @@ | |||
1 | 1 | ||
2 | config RDS | 2 | config RDS |
3 | tristate "Reliable Datagram Sockets (RDS) (EXPERIMENTAL)" | 3 | tristate "The RDS Protocol (EXPERIMENTAL)" |
4 | depends on INET && INFINIBAND_IPOIB && EXPERIMENTAL | 4 | depends on INET && EXPERIMENTAL |
5 | depends on INFINIBAND && INFINIBAND_ADDR_TRANS | ||
6 | ---help--- | 5 | ---help--- |
7 | RDS provides reliable, sequenced delivery of datagrams | 6 | The RDS (Reliable Datagram Sockets) protocol provides reliable, |
8 | over Infiniband. | 7 | sequenced delivery of datagrams over Infiniband, iWARP, |
8 | or TCP. | ||
9 | |||
10 | config RDS_RDMA | ||
11 | tristate "RDS over Infiniband and iWARP" | ||
12 | depends on RDS && INFINIBAND && INFINIBAND_ADDR_TRANS | ||
13 | ---help--- | ||
14 | Allow RDS to use Infiniband and iWARP as a transport. | ||
15 | This transport supports RDMA operations. | ||
16 | |||
17 | config RDS_TCP | ||
18 | tristate "RDS over TCP" | ||
19 | depends on RDS | ||
20 | ---help--- | ||
21 | Allow RDS to use TCP as a transport. | ||
22 | This transport does not support RDMA operations. | ||
9 | 23 | ||
10 | config RDS_DEBUG | 24 | config RDS_DEBUG |
11 | bool "Debugging messages" | 25 | bool "RDS debugging messages" |
12 | depends on RDS | 26 | depends on RDS |
13 | default n | 27 | default n |
14 | 28 | ||