Re: [dpdk-dev] [PATCH v7 03/20] eal: rename lcore word choices

2020-10-20 Thread Thomas Monjalon
16/10/2020 00:57, Stephen Hemminger: > --- a/lib/librte_eal/rte_eal_version.map > +++ b/lib/librte_eal/rte_eal_version.map > - rte_get_master_lcore; > + rte_get_main_lcore; The .def must be updated as well. I will fix while merging.

[dpdk-dev] [PATCH v7 03/20] eal: rename lcore word choices

2020-10-15 Thread Stephen Hemminger
Replace master lcore with main lcore and replace slave lcore with worker lcore. Keep the old functions and macros but mark them as deprecated for this release. The "--master-lcore" command line option is also deprecated and any usage will print a warning and use "--main-lcore" as replacement. Ac