vmm: seccomp: Add tkill syscall to permitted list
This is needed for rebooting on the musl target. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
12758d7fad
commit
ce7678f29f
1 changed files with 1 additions and 0 deletions
|
|
@ -259,6 +259,7 @@ pub fn vmm_thread_filter() -> Result<SeccompFilter, Error> {
|
|||
allow_syscall(libc::SYS_stat),
|
||||
allow_syscall(libc::SYS_statx),
|
||||
allow_syscall(libc::SYS_tgkill),
|
||||
allow_syscall(libc::SYS_tkill),
|
||||
allow_syscall(libc::SYS_unlink),
|
||||
allow_syscall(libc::SYS_wait4),
|
||||
allow_syscall(libc::SYS_write),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue