Re: [PATCH v2] buildtools: ensure the NUMA nodes are counted correct

2022-10-10 Thread Thomas Monjalon
22/09/2022 10:06, Niklas Söderlund: > From: Peng Zhang > > The method to fetch, sort and read the last entry of a list to figure > out the total number of NUMA nodes in the system fails with 10 or more > nodes. The reason being the usage of string compare while sorting, hence > node 'node10' will

Re: [PATCH v2] buildtools: ensure the NUMA nodes are counted correct

2022-10-10 Thread Niklas Söderlund
Hi, Genteel ping on this. On 2022-09-22 10:06:42 +0200, Niklas Söderlund wrote: > From: Peng Zhang > > The method to fetch, sort and read the last entry of a list to figure > out the total number of NUMA nodes in the system fails with 10 or more > nodes. The reason being the usage of string com

[PATCH v2] buildtools: ensure the NUMA nodes are counted correct

2022-09-22 Thread Niklas Söderlund
From: Peng Zhang The method to fetch, sort and read the last entry of a list to figure out the total number of NUMA nodes in the system fails with 10 or more nodes. The reason being the usage of string compare while sorting, hence node 'node10' will be sorted before 'node2'. Solve this by sortin