qemu: add arm64 to support list of dimm

dimm is supported on arm64, so add is to check list.

Signed-off-by: Jianyong Wu <jianyong.wu@arm.com>
Fixes: #155
This commit is contained in:
Jianyong Wu 2020-11-18 17:17:35 +08:00
parent 5e9aa08c4f
commit 0592c82536

View File

@ -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