Kconfig 2.0 KB

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