Kconfig (27eb2c4b3d3e13f376a359e293c212a2e9407af5) | Kconfig (2e8c12e1b76536d723ae0501de0729ddf6a9142c) |
---|---|
1config SUNRPC 2 tristate 3 4config SUNRPC_GSS 5 tristate 6 select OID_REGISTRY 7 8config SUNRPC_BACKCHANNEL 9 bool 10 depends on SUNRPC 11 | 1config SUNRPC 2 tristate 3 4config SUNRPC_GSS 5 tristate 6 select OID_REGISTRY 7 8config SUNRPC_BACKCHANNEL 9 bool 10 depends on SUNRPC 11 |
12config SUNRPC_XPRT_RDMA 13 tristate 14 depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS 15 default SUNRPC && INFINIBAND 16 help 17 This option allows the NFS client and server to support 18 an RDMA-enabled transport. 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 | |
25config SUNRPC_SWAP 26 bool 27 depends on SUNRPC 28 29config RPCSEC_GSS_KRB5 30 tristate "Secure RPC: Kerberos V mechanism" 31 depends on SUNRPC && CRYPTO 32 depends on CRYPTO_MD5 && CRYPTO_DES && CRYPTO_CBC && CRYPTO_CTS --- 19 unchanged lines hidden (view full) --- 52 This option enables a sysctl-based debugging interface 53 that is be used by the 'rpcdebug' utility to turn on or off 54 logging of different aspects of the kernel RPC activity. 55 56 Disabling this option will make your kernel slightly smaller, 57 but makes troubleshooting NFS issues significantly harder. 58 59 If unsure, say Y. | 12config SUNRPC_SWAP 13 bool 14 depends on SUNRPC 15 16config 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 --- 19 unchanged lines hidden (view full) --- 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. |
47 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. |
|