Skip to content

Commit

Permalink
vm/qemu: do not pass -accel tcg,thread=multi on arm64
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ramosian-glider committed Oct 22, 2024
1 parent 87e5eeb commit 9b8ea62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/qemu/qemu.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit 9b8ea62

Please sign in to comment.