From 89418520e59f2957dbb192c9db4eb45f108459a4 Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Thu, 8 Aug 2024 17:12:18 +0200 Subject: executor: pkg/vminfo: sys/linux: define syz_kvm_vgic_v3_setup The new pseudo-syscall sets up VGICv3 IRQ controller on the host. That still requires guest setup code, which will be submitted separately. --- pkg/vminfo/linux_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/vminfo/linux_test.go') diff --git a/pkg/vminfo/linux_test.go b/pkg/vminfo/linux_test.go index c026eb478..5295f4e94 100644 --- a/pkg/vminfo/linux_test.go +++ b/pkg/vminfo/linux_test.go @@ -48,6 +48,7 @@ func TestLinuxSyscalls(t *testing.T) { expectDisabled := map[string]bool{ "syz_kvm_setup_cpu$arm64": true, "syz_kvm_setup_cpu$ppc64": true, + "syz_kvm_vgic_v3_setup": true, } // All mount and syz_mount_image calls except for ext4 and binder will be disabled. for call := range disabled { -- cgit mrf-deployment