Replace old lcore role enum names with new RTE_LCORE_ prefixed names in test applications.
Signed-off-by: Huisong Li <[email protected]> --- app/test/test_lcores.c | 2 +- app/test/test_mempool.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test/test_lcores.c b/app/test/test_lcores.c index 13842615d5..60354b3f7f 100644 --- a/app/test/test_lcores.c +++ b/app/test/test_lcores.c @@ -396,7 +396,7 @@ test_lcores(void) unsigned int i; for (i = 0; i < RTE_MAX_LCORE; i++) { - if (!rte_lcore_has_role(i, ROLE_OFF)) + if (!rte_lcore_has_role(i, RTE_LCORE_ROLE_OFF)) eal_threads_count++; } if (eal_threads_count == 0) { diff --git a/app/test/test_mempool.c b/app/test/test_mempool.c index e54249ce61..38f0b6e712 100644 --- a/app/test/test_mempool.c +++ b/app/test/test_mempool.c @@ -353,7 +353,7 @@ test_mempool_sp_sc(void) ret = -1; goto err; } - if (rte_eal_lcore_role(lcore_next) != ROLE_RTE) { + if (rte_eal_lcore_role(lcore_next) != RTE_LCORE_ROLE_RTE) { ret = -1; goto err; } -- 2.33.0

