Add madvise to keymgr seccomp rules.

This commit is contained in:
Joris Vink 2021-05-10 14:51:30 +02:00
parent 12909b98bb
commit d4a78de5fc
1 changed files with 3 additions and 0 deletions

View File

@ -137,6 +137,9 @@ static struct sock_filter filter_keymgr[] = {
#endif
#if defined(SYS_mmap2)
KORE_SYSCALL_ALLOW(mmap2),
#endif
#if defined(SYS_madvise)
KORE_SYSCALL_ALLOW(madvise),
#endif
KORE_SYSCALL_ALLOW(munmap),
KORE_SYSCALL_ALLOW(clock_gettime),