diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2011-01-02 17:44:00 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-17 03:30:37 -0500 |
commit | 16ebe911eba8afa88879213dc4388f2dd701561e (patch) | |
tree | e33f5ac63c4e3f87647f06760c1fca66db64413d /fs/Kconfig | |
parent | 3bc0ba4305fa99b32caac8c60df84a2f14fce228 (diff) |
fs: FS_POSIX_ACL does not depend on BLOCK
- Fix a kconfig unmet dependency warning.
- Remove the comment that identifies which filesystems use POSIX ACL
utility routines.
- Move the FS_POSIX_ACL symbol outside of the BLOCK symbol if/endif block
because its functions do not depend on BLOCK and some of the filesystems
that use it do not depend on BLOCK.
warning: (GENERIC_ACL && JFFS2_FS_POSIX_ACL && NFSD_V4 && NFS_ACL_SUPPORT && 9P_FS_POSIX_ACL) selects FS_POSIX_ACL which has unmet direct dependencies (BLOCK)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/Kconfig')
-rw-r--r-- | fs/Kconfig | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index 771f457402d4..9a7921ae4763 100644 --- a/fs/Kconfig +++ b/fs/Kconfig | |||
@@ -30,15 +30,6 @@ config FS_MBCACHE | |||
30 | source "fs/reiserfs/Kconfig" | 30 | source "fs/reiserfs/Kconfig" |
31 | source "fs/jfs/Kconfig" | 31 | source "fs/jfs/Kconfig" |
32 | 32 | ||
33 | config FS_POSIX_ACL | ||
34 | # Posix ACL utility routines (for now, only ext2/ext3/jfs/reiserfs/nfs4) | ||
35 | # | ||
36 | # NOTE: you can implement Posix ACLs without these helpers (XFS does). | ||
37 | # Never use this symbol for ifdefs. | ||
38 | # | ||
39 | bool | ||
40 | default n | ||
41 | |||
42 | source "fs/xfs/Kconfig" | 33 | source "fs/xfs/Kconfig" |
43 | source "fs/gfs2/Kconfig" | 34 | source "fs/gfs2/Kconfig" |
44 | source "fs/ocfs2/Kconfig" | 35 | source "fs/ocfs2/Kconfig" |
@@ -47,6 +38,14 @@ source "fs/nilfs2/Kconfig" | |||
47 | 38 | ||
48 | endif # BLOCK | 39 | endif # BLOCK |
49 | 40 | ||
41 | # Posix ACL utility routines | ||
42 | # | ||
43 | # Note: Posix ACLs can be implemented without these helpers. Never use | ||
44 | # this symbol for ifdefs in core code. | ||
45 | # | ||
46 | config FS_POSIX_ACL | ||
47 | def_bool n | ||
48 | |||
50 | config EXPORTFS | 49 | config EXPORTFS |
51 | tristate | 50 | tristate |
52 | 51 | ||