Lines Matching defs:next_core
45 unsigned int next_core;
59 next_core = rte_get_next_lcore(prev_core, 0, 1);
62 if (next_core == RTE_MAX_LCORE)
63 return next_core;
66 prev_core = next_core;
67 } while (!(rte_bitmap_get(em_conf->eth_core_mask, next_core)));
69 return next_core;
75 unsigned int next_core;
80 next_core = rte_get_next_lcore(prev_core, 0, 0);
83 if (next_core == RTE_MAX_LCORE)
84 return next_core;
86 prev_core = next_core;
87 } while (rte_bitmap_get(em_conf->eth_core_mask, next_core));
89 return next_core;