Lines Matching refs:lc
98 lcore_stat_dump(FILE *f, uint32_t lc, const struct lcore_stat *ls) in lcore_stat_dump() argument
104 if (lc == UINT32_MAX) in lcore_stat_dump()
107 fprintf(f, "%s(lcore=%u)={\n", __func__, lc); in lcore_stat_dump()
173 check_ring_op(uint32_t exp, uint32_t res, uint32_t lc, in check_ring_op() argument
178 fname, lc, opname, exp, res); in check_ring_op()
188 uint32_t lc, n, num; in test_worker() local
195 lc = rte_lcore_id(); in test_worker()
198 fill_ring_elm(&loc_elm, lc); in test_worker()
220 rc = check_ring_op(num, n, lc, fname, in test_worker()
238 rc = check_ring_op(num, n, lc, fname, in test_worker()
334 uint32_t lc, mc; in test_mt1() local
352 RTE_LCORE_FOREACH_WORKER(lc) { in test_mt1()
353 arg[lc].rng = r; in test_mt1()
354 arg[lc].stats = init_stat; in test_mt1()
355 rte_eal_remote_launch(test, &arg[lc], lc); in test_mt1()
373 RTE_LCORE_FOREACH_WORKER(lc) { in test_mt1()
374 rc |= rte_eal_wait_lcore(lc); in test_mt1()
375 lcore_stat_aggr(&arg[mc].stats, &arg[lc].stats); in test_mt1()
377 lcore_stat_dump(stdout, lc, &arg[lc].stats); in test_mt1()