Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. config CEPH_LIB
  2. tristate "Ceph core library"
  3. depends on INET
  4. select LIBCRC32C
  5. select CRYPTO_AES
  6. select CRYPTO_CBC
  7. select CRYPTO
  8. select KEYS
  9. default n
  10. help
  11. Choose Y or M here to include cephlib, which provides the
  12. common functionality to both the Ceph filesystem and
  13. to the rados block device (rbd).
  14. More information at http://ceph.newdream.net/.
  15. If unsure, say N.
  16. config CEPH_LIB_PRETTYDEBUG
  17. bool "Include file:line in ceph debug output"
  18. depends on CEPH_LIB
  19. default n
  20. help
  21. If you say Y here, debug output will include a filename and
  22. line to aid debugging. This increases kernel size and slows
  23. execution slightly when debug call sites are enabled (e.g.,
  24. via CONFIG_DYNAMIC_DEBUG).
  25. If unsure, say N.
  26. config CEPH_LIB_USE_DNS_RESOLVER
  27. bool "Use in-kernel support for DNS lookup"
  28. depends on CEPH_LIB
  29. select DNS_RESOLVER
  30. default n
  31. help
  32. If you say Y here, hostnames (e.g. monitor addresses) will
  33. be resolved using the CONFIG_DNS_RESOLVER facility.
  34. For information on how to use CONFIG_DNS_RESOLVER consult
  35. Documentation/networking/dns_resolver.txt
  36. If unsure, say N.