Home
last modified time | relevance | path

Searched refs:lcore_stats (Results 1 – 3 of 3) sorted by relevance

/dpdk/examples/bbdev_app/
H A Dmain.c150 struct lcore_statistics *lcore_stats; member
516 struct lcore_statistics *lcore_stats) in lcore_conf_init() argument
552 lconf->lcore_stats = &lcore_stats[lcore_id]; in lcore_conf_init()
696 struct lcore_statistics *lcore_stats; in run_encoding() local
701 lcore_stats = lcore_conf->lcore_stats; in run_encoding()
791 lcore_stats->enqueued += nb_enq; in run_encoding()
800 lcore_stats->dequeued += nb_deq; in run_encoding()
827 struct lcore_statistics *lcore_stats; in run_decoding() local
831 lcore_stats = lcore_conf->lcore_stats; in run_decoding()
887 lcore_stats->enqueued += nb_enq; in run_decoding()
[all …]
/dpdk/examples/ipsec-secgw/
H A Dipsec-secgw.c2997 struct ipsec_core_statistics *lcore_stats; in update_lcore_statistics() local
3003 lcore_stats = &core_statistics[coreid]; in update_lcore_statistics()
3005 total->rx = lcore_stats->rx; in update_lcore_statistics()
3006 total->dropped = lcore_stats->dropped; in update_lcore_statistics()
3007 total->tx = lcore_stats->tx; in update_lcore_statistics()
3018 total->outbound.sad.miss += lcore_stats->outbound.sad.miss; in update_lcore_statistics()
3022 total->inbound.spd6.bypass += lcore_stats->inbound.spd6.bypass; in update_lcore_statistics()
3026 total->inbound.spd4.bypass += lcore_stats->inbound.spd4.bypass; in update_lcore_statistics()
3029 total->inbound.sad.miss += lcore_stats->inbound.sad.miss; in update_lcore_statistics()
3033 total->lpm4.miss += lcore_stats->lpm4.miss; in update_lcore_statistics()
[all …]
/dpdk/examples/l3fwd-power/
H A Dmain.c372 struct lcore_stats { struct
406 static struct lcore_stats stats[RTE_MAX_LCORE] __rte_cache_aligned; argument