Kconfig 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. config SUNRPC
  2. tristate
  3. config SUNRPC_GSS
  4. tristate
  5. select OID_REGISTRY
  6. config SUNRPC_BACKCHANNEL
  7. bool
  8. depends on SUNRPC
  9. config SUNRPC_XPRT_RDMA
  10. tristate
  11. depends on SUNRPC && INFINIBAND && INFINIBAND_ADDR_TRANS
  12. default SUNRPC && INFINIBAND
  13. help
  14. This option allows the NFS client and server to support
  15. an RDMA-enabled transport.
  16. To compile RPC client RDMA transport support as a module,
  17. choose M here: the module will be called xprtrdma.
  18. If unsure, say N.
  19. config SUNRPC_SWAP
  20. bool
  21. depends on SUNRPC
  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.