Add the RTE_LCORE_ prefix to the lcore role enum values in rte_lcore_role_t to follow DPDK naming conventions.
- ROLE_RTE -> RTE_LCORE_ROLE_RTE - ROLE_OFF -> RTE_LCORE_ROLE_OFF - ROLE_SERVICE -> RTE_LCORE_ROLE_SERVICE - ROLE_NON_EAL -> RTE_LCORE_ROLE_NON_EAL Old names are kept as macros aliasing to the new names to preserve backward compatibility. Huisong Li (5): eal: prefix lcore role enum values eal: use new lcore role enum names graph: use new lcore role enum names net/softnic: use new lcore role enum names test: use new lcore role enum names app/test/test_lcores.c | 2 +- app/test/test_mempool.c | 2 +- drivers/net/softnic/rte_eth_softnic_thread.c | 4 +-- lib/eal/common/eal_common_lcore.c | 34 ++++++++++---------- lib/eal/common/eal_common_options.c | 28 ++++++++-------- lib/eal/common/eal_private.h | 4 +-- lib/eal/common/rte_service.c | 12 +++---- lib/eal/include/rte_lcore.h | 17 +++++++--- lib/graph/graph.c | 2 +- 9 files changed, 56 insertions(+), 49 deletions(-) -- 2.33.0

