Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. config SUNRPC
  2. tristate
  3. config SUNRPC_GSS
  4. tristate
  5. config SUNRPC_BACKCHANNEL
  6. bool
  7. depends on SUNRPC
  8. config SUNRPC_XPRT_RDMA
  9. tristate
  10. depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS
  11. default SUNRPC && INFINIBAND
  12. help
  13. This option allows the NFS client and server to support
  14. an RDMA-enabled transport.
  15. To compile RPC client RDMA transport support as a module,
  16. choose M here: the module will be called xprtrdma.
  17. If unsure, say N.
  18. config SUNRPC_SWAP
  19. bool
  20. depends on SUNRPC
  21. select NETVM
  22. config RPCSEC_GSS_KRB5
  23. tristate "Secure RPC: Kerberos V mechanism"
  24. depends on SUNRPC && CRYPTO
  25. depends on CRYPTO_MD5 && CRYPTO_DES && CRYPTO_CBC && CRYPTO_CTS
  26. depends on CRYPTO_ECB && CRYPTO_HMAC && CRYPTO_SHA1 && CRYPTO_AES
  27. depends on CRYPTO_ARC4
  28. default y
  29. select SUNRPC_GSS
  30. help
  31. Choose Y here to enable Secure RPC using the Kerberos version 5
  32. GSS-API mechanism (RFC 1964).
  33. Secure RPC calls with Kerberos require an auxiliary user-space
  34. daemon which may be found in the Linux nfs-utils package
  35. available from http://linux-nfs.org/. In addition, user-space
  36. Kerberos support should be installed.
  37. If unsure, say Y.
  38. config SUNRPC_DEBUG
  39. bool "RPC: Enable dprintk debugging"
  40. depends on SUNRPC && SYSCTL
  41. help
  42. This option enables a sysctl-based debugging interface
  43. that is be used by the 'rpcdebug' utility to turn on or off
  44. logging of different aspects of the kernel RPC activity.
  45. Disabling this option will make your kernel slightly smaller,
  46. but makes troubleshooting NFS issues significantly harder.
  47. If unsure, say Y.