Kconfig 795 B

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