Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config CEPH_FS
  3. tristate "Ceph distributed file system"
  4. depends on INET
  5. select CEPH_LIB
  6. select NETFS_SUPPORT
  7. select FS_ENCRYPTION_ALGS if FS_ENCRYPTION
  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 https://ceph.io/.
  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
  24. config CEPH_FS_POSIX_ACL
  25. bool "Ceph POSIX Access Control Lists"
  26. depends on CEPH_FS
  27. select FS_POSIX_ACL
  28. help
  29. POSIX Access Control Lists (ACLs) support permissions for users and
  30. groups beyond the owner/group/world scheme.
  31. If you don't know what Access Control Lists are, say N
  32. config CEPH_FS_SECURITY_LABEL
  33. bool "CephFS Security Labels"
  34. depends on CEPH_FS && SECURITY
  35. help
  36. Security labels support alternative access control models
  37. implemented by security modules like SELinux. This option
  38. enables an extended attribute handler for file security
  39. labels in the Ceph filesystem.
  40. If you are not using a security module that requires using
  41. extended attributes for file security labels, say N.