Skip to content

Commit

Permalink
Merge pull request #3739 from AkihiroSuda/fix-acl
Browse files Browse the repository at this point in the history
specconv: avoid mapping "acl" to MS_POSIXACL
  • Loading branch information
kolyshkin authored Mar 20, 2023
2 parents f08b4a9 + 92a4ccb commit e67dc39
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libcontainer/specconv/spec_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func initMaps() {
clear bool
flag int
}{
"acl": {false, unix.MS_POSIXACL},
// "acl" cannot be mapped to MS_POSIXACL: https://github.com/opencontainers/runc/issues/3738
"async": {true, unix.MS_SYNCHRONOUS},
"atime": {true, unix.MS_NOATIME},
"bind": {false, unix.MS_BIND},
Expand All @@ -79,7 +79,6 @@ func initMaps() {
"lazytime": {false, unix.MS_LAZYTIME},
"loud": {true, unix.MS_SILENT},
"mand": {false, unix.MS_MANDLOCK},
"noacl": {true, unix.MS_POSIXACL},
"noatime": {false, unix.MS_NOATIME},
"nodev": {false, unix.MS_NODEV},
"nodiratime": {false, unix.MS_NODIRATIME},
Expand Down

0 comments on commit e67dc39

Please sign in to comment.