Kconfig 814 B

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