mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-22 20:45:21 +00:00
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
@ -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…
x
Reference in New Issue
Block a user