eal/windows: fix CPU cores counting
authorNarcisa Vasile <navasile@microsoft.com>
Wed, 18 Aug 2021 13:46:00 +0000 (06:46 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 11 Oct 2021 16:52:56 +0000 (18:52 +0200)
On Windows, -l/--lcores EAL option was unable to process CPU sets
containing CPUs other than 0 and 1, because CPU_COUNT() macro
only checked these CPUs in the set. Fix CPU_COUNT() by enumerating
all possible CPU indices.

Fixes: e8428a9d89f1 ("eal/windows: add some basic functions and macros")
Cc: stable@dpdk.org
Signed-off-by: Narcisa Vasile <navasile@microsoft.com>
Acked-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Acked-by: Pallavi Kadam <pallavi.kadam@intel.com>
lib/eal/windows/include/sched.h

index ff572b5..bc31cc8 100644 (file)
@@ -49,7 +49,7 @@ count_cpu(rte_cpuset_t *s)
        unsigned int _i;
        int count = 0;
 
-       for (_i = 0; _i < _NUM_SETS(CPU_SETSIZE); _i++)
+       for (_i = 0; _i < CPU_SETSIZE; _i++)
                if (CPU_ISSET(_i, s) != 0LL)
                        count++;
        return count;