mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
seccomp: whitelist io_pgetevents()
io_pgetevents() is a new Linux system call. It is similar to io_getevents() that is already whitelisted, and adds no special abilities over that system call. Allow that system call to enable applications that use it. Fixes #38894. Signed-off-by: Avi Kivity <avi@scylladb.com>
This commit is contained in:
parent
36d2c8b48e
commit
665741510a
2 changed files with 2 additions and 0 deletions
|
@ -162,6 +162,7 @@
|
|||
"ioctl",
|
||||
"io_destroy",
|
||||
"io_getevents",
|
||||
"io_pgetevents",
|
||||
"ioprio_get",
|
||||
"ioprio_set",
|
||||
"io_setup",
|
||||
|
|
|
@ -155,6 +155,7 @@ func DefaultProfile() *types.Seccomp {
|
|||
"ioctl",
|
||||
"io_destroy",
|
||||
"io_getevents",
|
||||
"io_pgetevents",
|
||||
"ioprio_get",
|
||||
"ioprio_set",
|
||||
"io_setup",
|
||||
|
|
Loading…
Add table
Reference in a new issue