Lines Matching refs:sent
280 uint16_t sent = rte_ring_enqueue_burst(tx_ring, in lcore_rx()
291 uint16_t sent = rte_ring_enqueue_burst(out_ring, in lcore_rx() local
295 app_stats.rx.enqueued_pkts += sent; in lcore_rx()
296 if (unlikely(sent < nb_ret)) { in lcore_rx()
297 app_stats.rx.enqdrop_pkts += nb_ret - sent; in lcore_rx()
300 while (sent < nb_ret) in lcore_rx()
301 rte_pktmbuf_free(bufs[sent++]); in lcore_rx()
375 uint16_t sent = rte_ring_enqueue_burst(out_r, in lcore_distributor() local
377 app_stats.dist.sent_pkts += sent; in lcore_distributor()
378 if (unlikely(sent < nb_ret)) { in lcore_distributor()
379 app_stats.dist.enqdrop_pkts += nb_ret - sent; in lcore_distributor()
383 while (sent < nb_ret) in lcore_distributor()
384 rte_pktmbuf_free(bufs[sent++]); in lcore_distributor()