Skip to content

Commit aa5c56a

Browse files
committed
specconv: avoid mapping "acl" to MS_POSIXACL
From torvalds/linux@caaef1b : > In fact SB_POSIXACL is an internal flag, and accepting MS_POSIXACL on > the mount(2) interface is possibly a bug. Fix issue 3738 Signed-off-by: Akihiro Suda <[email protected]>
1 parent 5c2a1a0 commit aa5c56a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libcontainer/specconv/spec_linux.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ func initMaps() {
6666
clear bool
6767
flag int
6868
}{
69-
"acl": {false, unix.MS_POSIXACL},
7069
"async": {true, unix.MS_SYNCHRONOUS},
7170
"atime": {true, unix.MS_NOATIME},
7271
"bind": {false, unix.MS_BIND},
@@ -79,7 +78,6 @@ func initMaps() {
7978
"lazytime": {false, unix.MS_LAZYTIME},
8079
"loud": {true, unix.MS_SILENT},
8180
"mand": {false, unix.MS_MANDLOCK},
82-
"noacl": {true, unix.MS_POSIXACL},
8381
"noatime": {false, unix.MS_NOATIME},
8482
"nodev": {false, unix.MS_NODEV},
8583
"nodiratime": {false, unix.MS_NODIRATIME},

0 commit comments

Comments
 (0)