Merge pull request #125 from bpradipt/master

Enable Numa support for Power (ppc64le) architecture
This commit is contained in:
Julio Montes
2020-05-14 10:25:37 -05:00
committed by GitHub

View File

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