Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 && EXPERIMENTAL
  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 RPCSEC_GSS_KRB5
  19. tristate "Secure RPC: Kerberos V mechanism"
  20. depends on SUNRPC && CRYPTO
  21. depends on CRYPTO_MD5 && CRYPTO_DES && CRYPTO_CBC && CRYPTO_CTS
  22. depends on CRYPTO_ECB && CRYPTO_HMAC && CRYPTO_SHA1 && CRYPTO_AES
  23. depends on CRYPTO_ARC4
  24. default y
  25. select SUNRPC_GSS
  26. help
  27. Choose Y here to enable Secure RPC using the Kerberos version 5
  28. GSS-API mechanism (RFC 1964).
  29. Secure RPC calls with Kerberos require an auxiliary user-space
  30. daemon which may be found in the Linux nfs-utils package
  31. available from http://linux-nfs.org/. In addition, user-space
  32. Kerberos support should be installed.
  33. If unsure, say Y.
  34. config SUNRPC_DEBUG
  35. bool "RPC: Enable dprintk debugging"
  36. depends on SUNRPC && SYSCTL
  37. help
  38. This option enables a sysctl-based debugging interface
  39. that is be used by the 'rpcdebug' utility to turn on or off
  40. logging of different aspects of the kernel RPC activity.
  41. Disabling this option will make your kernel slightly smaller,
  42. but makes troubleshooting NFS issues significantly harder.
  43. If unsure, say Y.