diff options
author | Christoph Hellwig <hch@infradead.org> | 2013-12-20 05:16:54 -0800 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-01-26 08:26:40 -0500 |
commit | feda821e76f3bbbba4bd54d30b4d4005a7848aa5 (patch) | |
tree | ebd9b6935393c4764dd8ac2f55251380ee9c9319 /fs/Kconfig | |
parent | 013cdf1088d7235da9477a2375654921d9b9ba9f (diff) | |
download | linux-feda821e76f3bbbba4bd54d30b4d4005a7848aa5.tar.gz linux-feda821e76f3bbbba4bd54d30b4d4005a7848aa5.tar.bz2 linux-feda821e76f3bbbba4bd54d30b4d4005a7848aa5.zip |
fs: remove generic_acl
And instead convert tmpfs to use the new generic ACL code, with two stub
methods provided for in-memory filesystems.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/Kconfig')
-rw-r--r-- | fs/Kconfig | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index c229f828eb01..7385e54be4b9 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -68,10 +68,6 @@ source "fs/quota/Kconfig" source "fs/autofs4/Kconfig" source "fs/fuse/Kconfig" -config GENERIC_ACL - bool - select FS_POSIX_ACL - menu "Caches" source "fs/fscache/Kconfig" @@ -119,7 +115,7 @@ config TMPFS_POSIX_ACL bool "Tmpfs POSIX Access Control Lists" depends on TMPFS select TMPFS_XATTR - select GENERIC_ACL + select FS_POSIX_ACL help POSIX Access Control Lists (ACLs) support additional access rights for users and groups beyond the standard owner/group/world scheme, |