Skip to content

Commit caaef1b

Browse files
author
Miklos Szeredi
committed
vfs: don't parse "posixacl" option
Unlike the others, this is _not_ a standard option accepted by mount(8). In fact SB_POSIXACL is an internal flag, and accepting MS_POSIXACL on the mount(2) interface is possibly a bug. The only filesystem that apparently wants to handle the "posixacl" option is 9p, but it has special handling of that option besides setting SB_POSIXACL. Signed-off-by: Miklos Szeredi <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]>
1 parent 9193ae8 commit caaef1b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

fs/fs_context.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ static const struct constant_table common_set_sb_flag[] = {
4242
{ "dirsync", SB_DIRSYNC },
4343
{ "lazytime", SB_LAZYTIME },
4444
{ "mand", SB_MANDLOCK },
45-
{ "posixacl", SB_POSIXACL },
4645
{ "ro", SB_RDONLY },
4746
{ "sync", SB_SYNCHRONOUS },
4847
{ },

0 commit comments

Comments
 (0)