From 15fa29791c1707abd7faed4110e284d0ccb72fae Mon Sep 17 00:00:00 2001 From: Alexander Potapenko Date: Tue, 22 Oct 2024 16:26:40 +0200 Subject: vm/qemu: do not pass `-accel tcg,thread=multi` on arm64 Even though we are yet to see arm64 hosts on which `-accel kvm` works properly, require the users to explicitly set request TCG in their manager configs. --- vm/qemu/qemu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm') diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index 225c3ad59..7096d7af3 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -153,7 +153,7 @@ var archConfigs = map[string]*archConfig{ // Disable SVE and pointer authentication for now, they significantly slow down // the emulation and are unlikely to bring a lot of new coverage. QemuArgs: strings.Join([]string{"-machine virt,virtualization=on,gic-version=max ", - "-cpu max,sve128=on,pauth=off -accel tcg,thread=multi"}, ""), + "-cpu max,sve128=on,pauth=off"}, ""), NetDev: "virtio-net-pci", RngDev: "virtio-rng-pci", CmdLine: []string{ -- cgit mrf-deployment