Use RTE_MAX_NUMA_NODES instead of hardcoded 2 to extend NUMA nodes limit for pmd_perf_autotest.
Cc: [email protected] Signed-off-by: Liangxing Wang <[email protected]> --- app/test/test_pmd_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_pmd_perf.c b/app/test/test_pmd_perf.c index 995b0a6f20..a547a33a1c 100644 --- a/app/test/test_pmd_perf.c +++ b/app/test/test_pmd_perf.c @@ -15,7 +15,7 @@ #include "test.h" #define NB_ETHPORTS_USED (1) -#define NB_SOCKETS (2) +#define NB_SOCKETS RTE_MAX_NUMA_NODES #define MEMPOOL_CACHE_SIZE 250 #define MAX_PKT_BURST (32) #define RX_DESC_DEFAULT (1024) -- 2.43.0

