Re: [dpdk-dev] [PATCH v5] build: optional NUMA and cpu counts detection
From: Juraj Linkeš <hidden>
Date: 2021-08-02 12:44:04
From: Juraj Linkeš <hidden>
Date: 2021-08-02 12:44:04
+if os.name == 'posix':
+ if os.path.isdir('/sys/devices/system/node'):
+ numa_nodes = glob.glob('/sys/devices/system/node/node*')
+ numa_nodes.sort()
+ print(int(os.path.basename(numa_nodes[-1])[4:]) + 1)
+ else:
+ subprocess.run(['sysctl', '-n', 'vm.ndomains'], check=False)
+Bruce, David, Thomas, Is DPDK actually supported on Power9 FreeBSD? Is anyone using this combination? How can we address the open question of what exactly does sysctl -n vm.ndomains return on a Power9 FreeBSD system? Or should we just leave it as is? Or maybe add 1 to the output (as we do in other cases)?