blob: 0754d0f466d2966eb5f5ef416e4b6e1661d0b1cc [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
Mel Gormana564b8f2012-07-31 16:45:12 -070012config SUNRPC_SWAP
13 bool
14 depends on SUNRPC
Mel Gormana564b8f2012-07-31 16:45:12 -070015
Alexey Dobriyan9098c242009-01-22 11:11:56 +030016config RPCSEC_GSS_KRB5
Trond Myklebuste3b28542011-04-15 12:58:56 -040017 tristate "Secure RPC: Kerberos V mechanism"
Trond Myklebustdf486a22010-08-17 17:42:45 -040018 depends on SUNRPC && CRYPTO
Trond Myklebuste3b28542011-04-15 12:58:56 -040019 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
Trond Myklebustdf486a22010-08-17 17:42:45 -040022 default y
Alexey Dobriyan9098c242009-01-22 11:11:56 +030023 select SUNRPC_GSS
Alexey Dobriyan9098c242009-01-22 11:11:56 +030024 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
Trond Myklebustdf486a22010-08-17 17:42:45 -040033 If unsure, say Y.
Trond Myklebuste27d3592012-03-18 14:07:42 -040034
35config SUNRPC_DEBUG
36 bool "RPC: Enable dprintk debugging"
37 depends on SUNRPC && SYSCTL
38 help
39 This option enables a sysctl-based debugging interface
40 that is be used by the 'rpcdebug' utility to turn on or off
41 logging of different aspects of the kernel RPC activity.
42
43 Disabling this option will make your kernel slightly smaller,
44 but makes troubleshooting NFS issues significantly harder.
45
46 If unsure, say Y.
Jeff Layton2e8c12e2014-03-18 19:45:47 -040047
48config SUNRPC_XPRT_RDMA_CLIENT
49 tristate "RPC over RDMA Client Support"
50 depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS
51 default SUNRPC && INFINIBAND
52 help
53 This option allows the NFS client to support an RDMA-enabled
54 transport.
55
56 To compile RPC client RDMA transport support as a module,
57 choose M here: the module will be called xprtrdma.
58
59 If unsure, say N.
60
61config SUNRPC_XPRT_RDMA_SERVER
62 tristate "RPC over RDMA Server Support"
63 depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS
64 default SUNRPC && INFINIBAND
65 help
66 This option allows the NFS server to support an RDMA-enabled
67 transport.
68
69 To compile RPC server RDMA transport support as a module,
70 choose M here: the module will be called svcrdma.
71
72 If unsure, say N.