mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
01491a7565
Disable fscache and cachefiles in Kconfig whilst it is rewritten. Signed-off-by: David Howells <dhowells@redhat.com> Reviewed-by: Jeff Layton <jlayton@kernel.org> cc: linux-cachefs@redhat.com Link: https://lore.kernel.org/r/163819576672.215744.12444272479560406780.stgit@warthog.procyon.org.uk/ # v1 Link: https://lore.kernel.org/r/163906882835.143852.11073015983885872901.stgit@warthog.procyon.org.uk/ # v2 Link: https://lore.kernel.org/r/163967075113.1823006.277316290062782998.stgit@warthog.procyon.org.uk/ # v3 Link: https://lore.kernel.org/r/164021481179.640689.2004199594774033658.stgit@warthog.procyon.org.uk/ # v4
52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config CEPH_FS
|
|
tristate "Ceph distributed file system"
|
|
depends on INET
|
|
select CEPH_LIB
|
|
select LIBCRC32C
|
|
select CRYPTO_AES
|
|
select CRYPTO
|
|
select NETFS_SUPPORT
|
|
default n
|
|
help
|
|
Choose Y or M here to include support for mounting the
|
|
experimental Ceph distributed file system. Ceph is an extremely
|
|
scalable file system designed to provide high performance,
|
|
reliable access to petabytes of storage.
|
|
|
|
More information at https://ceph.io/.
|
|
|
|
If unsure, say N.
|
|
|
|
if CEPH_FS
|
|
config CEPH_FSCACHE
|
|
bool "Enable Ceph client caching support"
|
|
depends on CEPH_FS=m && FSCACHE_OLD_API || CEPH_FS=y && FSCACHE_OLD_API=y
|
|
help
|
|
Choose Y here to enable persistent, read-only local
|
|
caching support for Ceph clients using FS-Cache
|
|
|
|
endif
|
|
|
|
config CEPH_FS_POSIX_ACL
|
|
bool "Ceph POSIX Access Control Lists"
|
|
depends on CEPH_FS
|
|
select FS_POSIX_ACL
|
|
help
|
|
POSIX Access Control Lists (ACLs) support permissions for users and
|
|
groups beyond the owner/group/world scheme.
|
|
|
|
If you don't know what Access Control Lists are, say N
|
|
|
|
config CEPH_FS_SECURITY_LABEL
|
|
bool "CephFS Security Labels"
|
|
depends on CEPH_FS && SECURITY
|
|
help
|
|
Security labels support alternative access control models
|
|
implemented by security modules like SELinux. This option
|
|
enables an extended attribute handler for file security
|
|
labels in the Ceph filesystem.
|
|
|
|
If you are not using a security module that requires using
|
|
extended attributes for file security labels, say N.
|