Use initial lcore instead.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
examples/ipsec-secgw/event_helper.c | 6 +++---
examples/ipsec-secgw/ipsec-secgw.c | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
@@ -1461,16 +1461,16 @@ eh_conf_init(void)
/* Set two cores as eth cores for Rx & Tx */
- /* Use first core other than master core as Rx core */
+ /* Use first core other than initial core as Rx core */
eth_core_id = rte_get_next_lcore(0, /* curr core */
- 1, /* skip master core */
+ 1, /* skip initial core */
0 /* wrap */);
rte_bitmap_set(em_conf->eth_core_mask, eth_core_id);
/* Use next core as Tx core */
eth_core_id = rte_get_next_lcore(eth_core_id, /* curr core */
- 1, /* skip master core */
+ 1, /* skip initial core */
0 /* wrap */);
rte_bitmap_set(em_conf->eth_core_mask, eth_core_id);
@@ -2917,8 +2917,8 @@ main(int32_t argc, char **argv)
check_all_ports_link_status(enabled_port_mask);
/* launch per-lcore init on every lcore */
- rte_eal_mp_remote_launch(ipsec_launch_one_lcore, eh_conf, CALL_MASTER);
- RTE_LCORE_FOREACH_SLAVE(lcore_id) {
+ rte_eal_mp_remote_launch(ipsec_launch_one_lcore, eh_conf, CALL_INITIAL);
+ RTE_LCORE_FOREACH_WORKER(lcore_id) {
if (rte_eal_wait_lcore(lcore_id) < 0)
return -1;
}