Kconfig 717 B

123456789101112131415161718192021222324252627
  1. config CEPH_FS
  2. tristate "Ceph distributed file system"
  3. depends on INET
  4. select CEPH_LIB
  5. select LIBCRC32C
  6. select CRYPTO_AES
  7. select CRYPTO
  8. default n
  9. help
  10. Choose Y or M here to include support for mounting the
  11. experimental Ceph distributed file system. Ceph is an extremely
  12. scalable file system designed to provide high performance,
  13. reliable access to petabytes of storage.
  14. More information at http://ceph.newdream.net/.
  15. If unsure, say N.
  16. if CEPH_FS
  17. config CEPH_FSCACHE
  18. bool "Enable Ceph client caching support"
  19. depends on CEPH_FS=m && FSCACHE || CEPH_FS=y && FSCACHE=y
  20. help
  21. Choose Y here to enable persistent, read-only local
  22. caching support for Ceph clients using FS-Cache
  23. endif