From c7d8a8c07b624482e46806317c2e73494242e6f0 Mon Sep 17 00:00:00 2001 From: Andrew Donnellan Date: Fri, 11 Jan 2019 17:02:31 +1100 Subject: vm/qemu: Enable KVM on ppc64le ppc64le supports KVM, let's use it. This obviously won't work on an x86 host, but at present there are issues using syzkaller on ppc64le with qemu in TCG mode anyway. Signed-off-by: Andrew Donnellan --- vm/qemu/qemu.go | 1 + 1 file changed, 1 insertion(+) diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index 3c569f2f1..41f2de2ca 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -119,6 +119,7 @@ var archConfigs = map[string]*archConfig{ "linux/ppc64le": { Qemu: "qemu-system-ppc64", TargetDir: "/", + QemuArgs: "-enable-kvm", CmdLine: linuxCmdline, }, "freebsd/amd64": { -- cgit mrf-deployment