mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-22 03:12:27 +00:00
vhost_user_fs: Fix seccomp filter for musl
Add missing syscall used by the musl build. TEST=scripts/dev_cli.sh tests --libc musl --integration -- vhost_user_fs_daemon Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
391508f054
commit
5a55fc0737
@ -42,6 +42,7 @@ fn vuf_filter(action: SeccompAction) -> Result<SeccompFilter, Error> {
|
||||
allow_syscall(libc::SYS_epoll_create),
|
||||
allow_syscall(libc::SYS_epoll_create1),
|
||||
allow_syscall(libc::SYS_epoll_ctl),
|
||||
allow_syscall(libc::SYS_epoll_pwait),
|
||||
allow_syscall(libc::SYS_epoll_wait),
|
||||
allow_syscall(libc::SYS_eventfd2),
|
||||
allow_syscall(libc::SYS_exit),
|
||||
|
Loading…
x
Reference in New Issue
Block a user