From 0592c825362780372ffa472a22054f6f0188da77 Mon Sep 17 00:00:00 2001 From: Jianyong Wu Date: Wed, 18 Nov 2020 17:17:35 +0800 Subject: [PATCH] qemu: add arm64 to support list of dimm dimm is supported on arm64, so add is to check list. Signed-off-by: Jianyong Wu Fixes: #155 --- qemu/qemu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/qemu.go b/qemu/qemu.go index 567a316f40..9cfe39cbd1 100644 --- a/qemu/qemu.go +++ b/qemu/qemu.go @@ -135,7 +135,7 @@ const ( func isDimmSupported(config *Config) bool { switch runtime.GOARCH { - case "amd64", "386", "ppc64le": + case "amd64", "386", "ppc64le", "arm64": if config != nil && config.Machine.Type == MachineTypeMicrovm { // microvm does not support NUMA return false