mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-03 11:25:20 +00:00
virtio-devices: seccomp_filters: Add fsync to block io_uring filter
This is required when booting with hypervisor-fw. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
338521c700
commit
6d4656c68f
@ -127,6 +127,7 @@ fn virtio_blk_io_uring_thread_rules() -> Result<Vec<SyscallRuleSet>, Error> {
|
||||
#[cfg(target_arch = "x86_64")]
|
||||
allow_syscall(libc::SYS_epoll_wait),
|
||||
allow_syscall(libc::SYS_exit),
|
||||
allow_syscall(libc::SYS_fsync),
|
||||
allow_syscall(libc::SYS_futex),
|
||||
allow_syscall(SYS_IO_URING_ENTER),
|
||||
allow_syscall(libc::SYS_madvise),
|
||||
|
Loading…
Reference in New Issue
Block a user