Merge branch 'pm-opp'
[cascardo/linux.git] / net / sunrpc / Kconfig
1 config SUNRPC
2         tristate
3
4 config SUNRPC_GSS
5         tristate
6         select OID_REGISTRY
7
8 config SUNRPC_BACKCHANNEL
9         bool
10         depends on SUNRPC
11
12 config SUNRPC_SWAP
13         bool
14         depends on SUNRPC
15
16 config RPCSEC_GSS_KRB5
17         tristate "Secure RPC: Kerberos V mechanism"
18         depends on SUNRPC && CRYPTO
19         depends on CRYPTO_MD5 && CRYPTO_DES && CRYPTO_CBC && CRYPTO_CTS
20         depends on CRYPTO_ECB && CRYPTO_HMAC && CRYPTO_SHA1 && CRYPTO_AES
21         depends on CRYPTO_ARC4
22         default y
23         select SUNRPC_GSS
24         help
25           Choose Y here to enable Secure RPC using the Kerberos version 5
26           GSS-API mechanism (RFC 1964).
27
28           Secure RPC calls with Kerberos require an auxiliary user-space
29           daemon which may be found in the Linux nfs-utils package
30           available from http://linux-nfs.org/.  In addition, user-space
31           Kerberos support should be installed.
32
33           If unsure, say Y.
34
35 config SUNRPC_DEBUG
36         bool "RPC: Enable dprintk debugging"
37         depends on SUNRPC && SYSCTL
38         select DEBUG_FS
39         help
40           This option enables a sysctl-based debugging interface
41           that is be used by the 'rpcdebug' utility to turn on or off
42           logging of different aspects of the kernel RPC activity.
43
44           Disabling this option will make your kernel slightly smaller,
45           but makes troubleshooting NFS issues significantly harder.
46
47           If unsure, say Y.
48
49 config SUNRPC_XPRT_RDMA_CLIENT
50         tristate "RPC over RDMA Client Support"
51         depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS
52         default SUNRPC && INFINIBAND
53         help
54           This option allows the NFS client to support an RDMA-enabled
55           transport.
56
57           To compile RPC client RDMA transport support as a module,
58           choose M here: the module will be called xprtrdma.
59
60           If unsure, say N.
61
62 config SUNRPC_XPRT_RDMA_SERVER
63         tristate "RPC over RDMA Server Support"
64         depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS
65         default SUNRPC && INFINIBAND
66         help
67           This option allows the NFS server to support an RDMA-enabled
68           transport.
69
70           To compile RPC server RDMA transport support as a module,
71           choose M here: the module will be called svcrdma.
72
73           If unsure, say N.