Fix btrfs when ACLs are configured out
authorAl Viro <viro@ZenIV.linux.org.uk>
Wed, 10 Jun 2009 15:36:43 +0000 (11:36 -0400)
committerChris Mason <chris.mason@oracle.com>
Wed, 10 Jun 2009 15:36:43 +0000 (11:36 -0400)
... otherwise generic_permission() will allow *anything* for all
files you don't own and that have some group permissions.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/acl.c
fs/btrfs/ctree.h

index cbba000..6039725 100644 (file)
@@ -351,9 +351,4 @@ int btrfs_init_acl(struct inode *inode, struct inode *dir)
        return 0;
 }
 
-int btrfs_check_acl(struct inode *inode, int mask)
-{
-       return 0;
-}
-
 #endif /* CONFIG_FS_POSIX_ACL */
index 4d6e0b6..03441a9 100644 (file)
@@ -2301,7 +2301,11 @@ int btrfs_parse_options(struct btrfs_root *root, char *options);
 int btrfs_sync_fs(struct super_block *sb, int wait);
 
 /* acl.c */
+#ifdef CONFIG_FS_POSIX_ACL
 int btrfs_check_acl(struct inode *inode, int mask);
+#else
+#define btrfs_check_acl NULL
+#endif
 int btrfs_init_acl(struct inode *inode, struct inode *dir);
 int btrfs_acl_chmod(struct inode *inode);