summaryrefslogtreecommitdiffstats
path: root/fs/Kconfig
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2011-05-25 19:49:18 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2011-05-25 19:53:02 -0700
commit4db70f73e56961b9bcdfd0c36c62847a18b7dbb5 (patch)
tree5310e7f8e250dc34a60a1e447a24656e83a1ab7c /fs/Kconfig
parent520fd8457ea8a1bcd6fe3e133b3e0eb6e6fe22ce (diff)
downloadlinux-4db70f73e56961b9bcdfd0c36c62847a18b7dbb5.tar.gz
linux-4db70f73e56961b9bcdfd0c36c62847a18b7dbb5.tar.xz
tmpfs: fix XATTR N overriding POSIX_ACL Y
Choosing TMPFS_XATTR default N was switching off TMPFS_POSIX_ACL, even if it had been Y in oldconfig; and Linus reports that PulseAudio goes subtly wrong unless it can use ACLs on /dev/shm. Make TMPFS_POSIX_ACL select TMPFS_XATTR (and depend upon TMPFS), and move the TMPFS_POSIX_ACL entry before the TMPFS_XATTR entry, to avoid asking unnecessary questions then ignoring their answers. Signed-off-by: Hugh Dickins <hughd@google.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/Kconfig')
-rw-r--r--fs/Kconfig29
1 files changed, 15 insertions, 14 deletions
diff --git a/fs/Kconfig b/fs/Kconfig
index 979992dcb386..f6edba2e069f 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -121,6 +121,20 @@ config TMPFS
See <file:Documentation/filesystems/tmpfs.txt> for details.
+config TMPFS_POSIX_ACL
+ bool "Tmpfs POSIX Access Control Lists"
+ depends on TMPFS
+ select TMPFS_XATTR
+ select GENERIC_ACL
+ help
+ POSIX Access Control Lists (ACLs) support permissions for users and
+ groups beyond the owner/group/world scheme.
+
+ To learn more about Access Control Lists, visit the POSIX ACLs for
+ Linux website <http://acl.bestbits.at/>.
+
+ If you don't know what Access Control Lists are, say N.
+
config TMPFS_XATTR
bool "Tmpfs extended attributes"
depends on TMPFS
@@ -133,22 +147,9 @@ config TMPFS_XATTR
Currently this enables support for the trusted.* and
security.* namespaces.
- If unsure, say N.
-
You need this for POSIX ACL support on tmpfs.
-config TMPFS_POSIX_ACL
- bool "Tmpfs POSIX Access Control Lists"
- depends on TMPFS_XATTR
- select GENERIC_ACL
- help
- POSIX Access Control Lists (ACLs) support permissions for users and
- groups beyond the owner/group/world scheme.
-
- To learn more about Access Control Lists, visit the POSIX ACLs for
- Linux website <http://acl.bestbits.at/>.
-
- If you don't know what Access Control Lists are, say N.
+ If unsure, say N.
config HUGETLBFS
bool "HugeTLB file system support"