]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: Don't return acl info when mounting with noacl option
authorMiao Xie <miaox@cn.fujitsu.com>
Tue, 25 Jan 2011 07:46:17 +0000 (15:46 +0800)
committerLi Zefan <lizf@cn.fujitsu.com>
Wed, 26 Jan 2011 17:05:16 +0000 (01:05 +0800)
commit0ddfc0745fbe51108d8423b0d8cfb43f8ebe89d8
treea7db405db82bd5acc3f51cb010dc306f402931ac
parent0e5d0dac52f09dd4bbca8d2f6c17c4f6a96ad9c1
Btrfs: Don't return acl info when mounting with noacl option

Steps to reproduce:

  # mkfs.btrfs /dev/sda2
  # mount /dev/sda2 /mnt
  # touch /mnt/file0
  # setfacl -m 'u:root:x,g::x,o::x' /mnt/file0
  # umount /mnt
  # mount /dev/sda2 -o noacl /mnt
  # getfacl /mnt/file0
  ...
  user::rw-
  user:root:--x
  group::--x
  mask::--x
  other::--x

The output should be:

  user::rw-
  group::--x
  other::--x

Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
fs/btrfs/acl.c