Kconfig 829 B

12345678910111213141516171819202122232425262728
  1. config CEPH_FS
  2. tristate "Ceph distributed file system (EXPERIMENTAL)"
  3. depends on INET && EXPERIMENTAL
  4. select LIBCRC32C
  5. select CRYPTO_AES
  6. select CRYPTO
  7. help
  8. Choose Y or M here to include support for mounting the
  9. experimental Ceph distributed file system. Ceph is an extremely
  10. scalable file system designed to provide high performance,
  11. reliable access to petabytes of storage.
  12. More information at http://ceph.newdream.net/.
  13. If unsure, say N.
  14. config CEPH_FS_PRETTYDEBUG
  15. bool "Include file:line in ceph debug output"
  16. depends on CEPH_FS
  17. default n
  18. help
  19. If you say Y here, debug output will include a filename and
  20. line to aid debugging. This icnreases kernel size and slows
  21. execution slightly when debug call sites are enabled (e.g.,
  22. via CONFIG_DYNAMIC_DEBUG).
  23. If unsure, say N.