diff options
-rw-r--r-- | runsc/boot/filter/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runsc/boot/filter/config.go b/runsc/boot/filter/config.go index 352c64253..06c04e3bb 100644 --- a/runsc/boot/filter/config.go +++ b/runsc/boot/filter/config.go @@ -335,6 +335,10 @@ func hostInetFilters() seccomp.SyscallRules { seccomp.AllowAny{}, seccomp.AllowValue(syscall.TIOCOUTQ), }, + { + seccomp.AllowAny{}, + seccomp.AllowValue(syscall.TIOCINQ), + }, }, syscall.SYS_LISTEN: {}, syscall.SYS_READV: {}, |