diff options
| author | Peter Maydell | 2014-08-21 13:48:44 +0200 |
|---|---|---|
| committer | Peter Maydell | 2014-08-21 13:48:44 +0200 |
| commit | fd3cced366958cc90f0a8caa8213471afde9bf3c (patch) | |
| tree | f43f6cb8cb337ca75a56bafd6bb76186a4414c27 | |
| parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140819'... (diff) | |
| parent | seccomp: add semctl() to the syscall whitelist (diff) | |
| download | qemu-fd3cced366958cc90f0a8caa8213471afde9bf3c.tar.gz qemu-fd3cced366958cc90f0a8caa8213471afde9bf3c.tar.xz qemu-fd3cced366958cc90f0a8caa8213471afde9bf3c.zip | |
Merge remote-tracking branch 'remotes/otubo/seccomp' into staging
* remotes/otubo/seccomp:
seccomp: add semctl() to the syscall whitelist
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
| -rw-r--r-- | qemu-seccomp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu-seccomp.c b/qemu-seccomp.c index ea8094d043..0503764047 100644 --- a/qemu-seccomp.c +++ b/qemu-seccomp.c @@ -230,7 +230,8 @@ static const struct QemuSeccompSyscall seccomp_whitelist[] = { { SCMP_SYS(timerfd_create), 240 }, { SCMP_SYS(shmctl), 240 }, { SCMP_SYS(mlock), 240 }, - { SCMP_SYS(munlock), 240 } + { SCMP_SYS(munlock), 240 }, + { SCMP_SYS(semctl), 240 } }; int seccomp_start(void) |
