diff options
| author | Alexander Potapenko <glider@google.com> | 2024-08-08 17:12:18 +0200 |
|---|---|---|
| committer | Alexander Potapenko <glider@google.com> | 2024-09-03 12:16:36 +0000 |
| commit | 89418520e59f2957dbb192c9db4eb45f108459a4 (patch) | |
| tree | 1704e0524bcf12e712d793d6624a497864eaecdc /pkg/vminfo/linux_test.go | |
| parent | be562dffcc62a7644ab55833c9650774fb462ebe (diff) | |
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.
Diffstat (limited to 'pkg/vminfo/linux_test.go')
| -rw-r--r-- | pkg/vminfo/linux_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
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 { |
