From b2aa0225ac2468809e818dcc5f1bad5c95fa4507 Mon Sep 17 00:00:00 2001 From: "Pradipta Kr. Banerjee" Date: Wed, 13 May 2020 01:21:00 +0530 Subject: [PATCH] Enable Numa support for Power (ppc64le) architecture Fixes #124 Signed-off-by: bpradipt@in.ibm.com --- qemu/qemu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/qemu.go b/qemu/qemu.go index 878456af75..6ba204874f 100644 --- a/qemu/qemu.go +++ b/qemu/qemu.go @@ -132,7 +132,7 @@ const ( func isDimmSupported(config *Config) bool { switch runtime.GOARCH { - case "amd64", "386": + case "amd64", "386", "ppc64le": if config != nil && config.Machine.Type == MachineTypeMicrovm { // microvm does not support NUMA return false