Re: [dpdk-dev] [PATCH] eal/windows: ensure all the CPUs in the set are checked

2021-06-29 Thread Narcisa Ana Maria Vasile
On Fri, Jun 25, 2021 at 11:36:21AM +0300, Dmitry Kozlyuk wrote: > 2021-06-24 17:27 (UTC-0700), Narcisa Ana Maria Vasile: > > From: Narcisa Vasile > > > > Fix count_cpu() to ensure it iterates through all the CPUs in a set. > > count_cpu() iterates through the CPUs in the set 's' and counts the >

Re: [dpdk-dev] [PATCH] eal/windows: ensure all the CPUs in the set are checked

2021-06-25 Thread Dmitry Kozlyuk
2021-06-24 17:27 (UTC-0700), Narcisa Ana Maria Vasile: > From: Narcisa Vasile > > Fix count_cpu() to ensure it iterates through all the CPUs in a set. > count_cpu() iterates through the CPUs in the set 's' and counts the > selected ones. > > Previously, it was incorrectly using the number of CPU

[dpdk-dev] [PATCH] eal/windows: ensure all the CPUs in the set are checked

2021-06-24 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Fix count_cpu() to ensure it iterates through all the CPUs in a set. count_cpu() iterates through the CPUs in the set 's' and counts the selected ones. Previously, it was incorrectly using the number of CPUSETS to iterate through the CPUs. Signed-off-by: Narcisa Vasile ---