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
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config AFS_FS
|
|
tristate "Andrew File System support (AFS)"
|
|
depends on INET
|
|
select AF_RXRPC
|
|
select DNS_RESOLVER
|
|
select NETFS_SUPPORT
|
|
help
|
|
If you say Y here, you will get an experimental Andrew File System
|
|
driver. It currently only supports unsecured read-only AFS access.
|
|
|
|
See <file:Documentation/filesystems/afs.rst> for more information.
|
|
|
|
If unsure, say N.
|
|
|
|
config AFS_DEBUG
|
|
bool "AFS dynamic debugging"
|
|
depends on AFS_FS
|
|
help
|
|
Say Y here to make runtime controllable debugging messages appear.
|
|
|
|
See <file:Documentation/filesystems/afs.rst> for more information.
|
|
|
|
If unsure, say N.
|
|
|
|
config AFS_FSCACHE
|
|
bool "Provide AFS client caching support"
|
|
depends on AFS_FS=m && FSCACHE_OLD_API || AFS_FS=y && FSCACHE_OLD_API=y
|
|
help
|
|
Say Y here if you want AFS data to be cached locally on disk through
|
|
the generic filesystem cache manager
|
|
|
|
config AFS_DEBUG_CURSOR
|
|
bool "AFS server cursor debugging"
|
|
depends on AFS_FS
|
|
help
|
|
Say Y here to cause the contents of a server cursor to be dumped to
|
|
the dmesg log if the server rotation algorithm fails to successfully
|
|
contact a server.
|
|
|
|
See <file:Documentation/filesystems/afs.rst> for more information.
|
|
|
|
If unsure, say N.
|