forked from Minki/linux
07567a5509
Add DNS query support for AFS so that it can get the IP addresses of Volume Location servers from the DNS using an AFSDB record. This requires userspace support. /etc/request-key.conf must be configured to invoke a helper for dns_resolver type keys with a subtype of "afsdb:" in the description. Signed-off-by: Wang Lei <wang840925@gmail.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
31 lines
898 B
Plaintext
31 lines
898 B
Plaintext
config AFS_FS
|
|
tristate "Andrew File System support (AFS) (EXPERIMENTAL)"
|
|
depends on INET && EXPERIMENTAL
|
|
select AF_RXRPC
|
|
select DNS_RESOLVER
|
|
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.txt> 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.txt> for more information.
|
|
|
|
If unsure, say N.
|
|
|
|
config AFS_FSCACHE
|
|
bool "Provide AFS client caching support (EXPERIMENTAL)"
|
|
depends on EXPERIMENTAL
|
|
depends on AFS_FS=m && FSCACHE || AFS_FS=y && FSCACHE=y
|
|
help
|
|
Say Y here if you want AFS data to be cached locally on disk through
|
|
the generic filesystem cache manager
|