Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 1 | config SUNRPC |
| 2 | tristate |
| 3 | |
| 4 | config SUNRPC_GSS |
| 5 | tristate |
Chuck Lever | f783288 | 2013-03-16 15:54:52 -0400 | [diff] [blame^] | 6 | select OID_REGISTRY |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 7 | |
Trond Myklebust | 9e00abc | 2011-07-13 19:20:49 -0400 | [diff] [blame] | 8 | config SUNRPC_BACKCHANNEL |
| 9 | bool |
| 10 | depends on SUNRPC |
| 11 | |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 12 | config SUNRPC_XPRT_RDMA |
| 13 | tristate |
Kees Cook | 3fb790e | 2012-10-02 11:20:01 -0700 | [diff] [blame] | 14 | depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 15 | default SUNRPC && INFINIBAND |
| 16 | help |
J. Bruce Fields | ce0cf66 | 2008-11-02 16:18:08 -0500 | [diff] [blame] | 17 | This option allows the NFS client and server to support |
| 18 | an RDMA-enabled transport. |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 19 | |
| 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 Gorman | a564b8f | 2012-07-31 16:45:12 -0700 | [diff] [blame] | 25 | config SUNRPC_SWAP |
| 26 | bool |
| 27 | depends on SUNRPC |
| 28 | select NETVM |
| 29 | |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 30 | config RPCSEC_GSS_KRB5 |
Trond Myklebust | e3b2854 | 2011-04-15 12:58:56 -0400 | [diff] [blame] | 31 | tristate "Secure RPC: Kerberos V mechanism" |
Trond Myklebust | df486a2 | 2010-08-17 17:42:45 -0400 | [diff] [blame] | 32 | depends on SUNRPC && CRYPTO |
Trond Myklebust | e3b2854 | 2011-04-15 12:58:56 -0400 | [diff] [blame] | 33 | 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 Myklebust | df486a2 | 2010-08-17 17:42:45 -0400 | [diff] [blame] | 36 | default y |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 37 | select SUNRPC_GSS |
Alexey Dobriyan | 9098c24 | 2009-01-22 11:11:56 +0300 | [diff] [blame] | 38 | 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 Myklebust | df486a2 | 2010-08-17 17:42:45 -0400 | [diff] [blame] | 47 | If unsure, say Y. |
Trond Myklebust | e27d359 | 2012-03-18 14:07:42 -0400 | [diff] [blame] | 48 | |
| 49 | config 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. |