Kconfig 1.7 KB

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