]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
btrfs: Add acl mount option.
authorQu Wenruo <quwenruo@cn.fujitsu.com>
Mon, 6 Jan 2014 01:58:30 +0000 (09:58 +0800)
committerChris Mason <clm@fb.com>
Tue, 28 Jan 2014 21:20:19 +0000 (13:20 -0800)
Add acl mount option to enable acl with remount option.

Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Reviewed-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Chris Mason <clm@fb.com>
Documentation/filesystems/btrfs.txt
fs/btrfs/super.c

index 303b49c6c29610e76b08f8e0c60b8785ce235409..79c08f368ace8d4f2545f0ad515913ab7dc2a007 100644 (file)
@@ -141,8 +141,9 @@ Options with (*) are default options and will not show in the mount options.
        Specify that 1 metadata chunk should be allocated after every <value>
        data chunks.  Off by default.
 
+  acl(*)
   noacl
-       Disable support for Posix Access Control Lists (ACLs).  See the
+       Enable/disable support for Posix Access Control Lists (ACLs).  See the
        acl(5) manual page for more information about ACLs.
 
   barrier(*)
index 98a682340935d447b6b5fa925c7b878482922240..76eecd13db1939d03f13106e33e66a27549e25fa 100644 (file)
@@ -324,7 +324,7 @@ enum {
        Opt_check_integrity, Opt_check_integrity_including_extent_data,
        Opt_check_integrity_print_mask, Opt_fatal_errors, Opt_rescan_uuid_tree,
        Opt_commit_interval, Opt_barrier, Opt_nodefrag, Opt_nodiscard,
-       Opt_noenospc_debug, Opt_noflushoncommit,
+       Opt_noenospc_debug, Opt_noflushoncommit, Opt_acl,
        Opt_err,
 };
 
@@ -347,6 +347,7 @@ static match_table_t tokens = {
        {Opt_ssd, "ssd"},
        {Opt_ssd_spread, "ssd_spread"},
        {Opt_nossd, "nossd"},
+       {Opt_acl, "acl"},
        {Opt_noacl, "noacl"},
        {Opt_notreelog, "notreelog"},
        {Opt_flushoncommit, "flushoncommit"},
@@ -552,6 +553,9 @@ int btrfs_parse_options(struct btrfs_root *root, char *options)
                                goto out;
                        }
                        break;
+               case Opt_acl:
+                       root->fs_info->sb->s_flags |= MS_POSIXACL;
+                       break;
                case Opt_noacl:
                        root->fs_info->sb->s_flags &= ~MS_POSIXACL;
                        break;