diff --git a/vmm/src/seccomp_filters.rs b/vmm/src/seccomp_filters.rs index 3a6c75a98..32bce4cc0 100644 --- a/vmm/src/seccomp_filters.rs +++ b/vmm/src/seccomp_filters.rs @@ -226,6 +226,7 @@ fn create_vmm_ioctl_seccomp_rule_common_mshv() -> Result, Backe MSHV_ISSUE_PSP_GUEST_REQUEST() )?], and![Cond::new(1, ArgLen::Dword, Eq, MSHV_ROOT_HVCALL())?], + and![Cond::new(1, ArgLen::Dword, Eq, MSHV_ASSERT_INTERRUPT())?], ]) } @@ -719,6 +720,7 @@ fn create_vcpu_ioctl_seccomp_rule_mshv() -> Result, BackendErro MSHV_ISSUE_PSP_GUEST_REQUEST() )?], and![Cond::new(1, ArgLen::Dword, Eq, MSHV_ROOT_HVCALL())?], + and![Cond::new(1, ArgLen::Dword, Eq, MSHV_ASSERT_INTERRUPT())?], ]) }