diff options
author | Michael Pratt <mpratt@google.com> | 2018-09-04 13:08:59 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-09-04 13:10:09 -0700 |
commit | ab7174611c948c44ce509292063b95813183828d (patch) | |
tree | df421c69e5455be0eeeef5695b17354e2316c592 | |
parent | 3794cb6bff094820d78bc3199dc6910af3d194c0 (diff) |
Remove epoll_wait from filters
Go 1.11 replaced it with epoll_pwait.
PiperOrigin-RevId: 211510006
Change-Id: I48a6cae95ed3d57a4633895358ad05ad8bf2f633
-rw-r--r-- | runsc/boot/filter/config.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runsc/boot/filter/config.go b/runsc/boot/filter/config.go index 7227ea2b7..113023bdd 100644 --- a/runsc/boot/filter/config.go +++ b/runsc/boot/filter/config.go @@ -55,7 +55,6 @@ var allowedSyscalls = seccomp.SyscallRules{ seccomp.AllowValue(0), }, }, - syscall.SYS_EPOLL_WAIT: {}, syscall.SYS_EVENTFD2: []seccomp.Rule{ { seccomp.AllowValue(0), |