diff options
Diffstat (limited to 'pkg/host/syscalls_linux.go')
| -rw-r--r-- | pkg/host/syscalls_linux.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/host/syscalls_linux.go b/pkg/host/syscalls_linux.go index 16cfbfa46..cb7950440 100644 --- a/pkg/host/syscalls_linux.go +++ b/pkg/host/syscalls_linux.go @@ -199,6 +199,10 @@ func isSyzKvmSetupCPUSupported(c *prog.Syscall, target *prog.Target, sandbox str if runtime.GOARCH == targets.ARM64 { return true, "" } + case "syz_kvm_setup_cpu$ppc64": + if runtime.GOARCH == "ppc64le" || runtime.GOARCH == "ppc64" { + return true, "" + } } return false, "unsupported arch" } |
