diff options
-rw-r--r-- | sandbox-seccomp-filter.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index b5cda70bb..2f6b0d55b 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c | |||
@@ -194,6 +194,9 @@ static const struct sock_filter preauth_insns[] = { | |||
194 | #ifdef __NR_exit_group | 194 | #ifdef __NR_exit_group |
195 | SC_ALLOW(__NR_exit_group), | 195 | SC_ALLOW(__NR_exit_group), |
196 | #endif | 196 | #endif |
197 | #if defined(__NR_flock) && defined(__s390__) | ||
198 | SC_ALLOW(__NR_flock), | ||
199 | #endif | ||
197 | #ifdef __NR_futex | 200 | #ifdef __NR_futex |
198 | SC_ALLOW(__NR_futex), | 201 | SC_ALLOW(__NR_futex), |
199 | #endif | 202 | #endif |
@@ -221,6 +224,9 @@ static const struct sock_filter preauth_insns[] = { | |||
221 | #ifdef __NR_getuid32 | 224 | #ifdef __NR_getuid32 |
222 | SC_ALLOW(__NR_getuid32), | 225 | SC_ALLOW(__NR_getuid32), |
223 | #endif | 226 | #endif |
227 | #if defined(__NR_ipc) && defined(__s390__) | ||
228 | SC_ALLOW(__NR_ipc), | ||
229 | #endif | ||
224 | #ifdef __NR_madvise | 230 | #ifdef __NR_madvise |
225 | SC_ALLOW(__NR_madvise), | 231 | SC_ALLOW(__NR_madvise), |
226 | #endif | 232 | #endif |