blob: 804f4f623ca4dea5027ab9f7befcd6582782b327 [file] [log] [blame]
Alexey Dobriyan9098c242009-01-22 11:11:56 +03001config SUNRPC
2 tristate
3
4config SUNRPC_GSS
5 tristate
Chuck Leverf7832882013-03-16 15:54:52 -04006 select OID_REGISTRY
Alexey Dobriyan9098c242009-01-22 11:11:56 +03007
Trond Myklebust9e00abc2011-07-13 19:20:49 -04008config SUNRPC_BACKCHANNEL
9 bool
10 depends on SUNRPC
11
Alexey Dobriyan9098c242009-01-22 11:11:56 +030012config SUNRPC_XPRT_RDMA
13 tristate
Kees Cook3fb790e2012-10-02 11:20:01 -070014 depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS
Alexey Dobriyan9098c242009-01-22 11:11:56 +030015 default SUNRPC && INFINIBAND
16 help
J. Bruce Fieldsce0cf662008-11-02 16:18:08 -050017 This option allows the NFS client and server to support
18 an RDMA-enabled transport.
Alexey Dobriyan9098c242009-01-22 11:11:56 +030019
20 To compile RPC client RDMA transport support as a module,
21 choose M here: the module will be called xprtrdma.
22
23 If unsure, say N.
24
Mel Gormana564b8f2012-07-31 16:45:12 -070025config SUNRPC_SWAP
26 bool
27 depends on SUNRPC
28 select NETVM
29
Alexey Dobriyan9098c242009-01-22 11:11:56 +030030config RPCSEC_GSS_KRB5
Trond Myklebuste3b28542011-04-15 12:58:56 -040031 tristate "Secure RPC: Kerberos V mechanism"
Trond Myklebustdf486a22010-08-17 17:42:45 -040032 depends on SUNRPC && CRYPTO
Trond Myklebuste3b28542011-04-15 12:58:56 -040033 depends on CRYPTO_MD5 && CRYPTO_DES && CRYPTO_CBC && CRYPTO_CTS
34 depends on CRYPTO_ECB && CRYPTO_HMAC && CRYPTO_SHA1 && CRYPTO_AES
35 depends on CRYPTO_ARC4
Trond Myklebustdf486a22010-08-17 17:42:45 -040036 default y
Alexey Dobriyan9098c242009-01-22 11:11:56 +030037 select SUNRPC_GSS
Alexey Dobriyan9098c242009-01-22 11:11:56 +030038 help
39 Choose Y here to enable Secure RPC using the Kerberos version 5
40 GSS-API mechanism (RFC 1964).
41
42 Secure RPC calls with Kerberos require an auxiliary user-space
43 daemon which may be found in the Linux nfs-utils package
44 available from http://linux-nfs.org/. In addition, user-space
45 Kerberos support should be installed.
46
Trond Myklebustdf486a22010-08-17 17:42:45 -040047 If unsure, say Y.
Trond Myklebuste27d3592012-03-18 14:07:42 -040048
49config SUNRPC_DEBUG
50 bool "RPC: Enable dprintk debugging"
51 depends on SUNRPC && SYSCTL
52 help
53 This option enables a sysctl-based debugging interface
54 that is be used by the 'rpcdebug' utility to turn on or off
55 logging of different aspects of the kernel RPC activity.
56
57 Disabling this option will make your kernel slightly smaller,
58 but makes troubleshooting NFS issues significantly harder.
59
60 If unsure, say Y.