Home
last modified time | relevance | path

Searched refs:outp (Results 1 – 2 of 2) sorted by relevance

/dpdk/examples/distributor/
H A Dmain.c313 unsigned int nb_tx = rte_eth_tx_burst(outp, 0, in flush_one_port()
329 uint16_t outp; in flush_all_ports() local
331 RTE_ETH_FOREACH_DEV(outp) { in flush_all_ports()
333 if ((enabled_port_mask & (1 << outp)) == 0) in flush_all_ports()
336 if (tx_buffers[outp].count == 0) in flush_all_ports()
339 flush_one_port(&tx_buffers[outp], outp); in flush_all_ports()
441 uint8_t outp; in lcore_tx() local
447 outp = bufs[i]->port; in lcore_tx()
449 if ((enabled_port_mask & (1 << outp)) == 0) in lcore_tx()
452 outbuf = &tx_buffers[outp]; in lcore_tx()
[all …]
/dpdk/examples/packet_ordering/
H A Dmain.c536 uint8_t outp; in send_thread() local
566 outp = mbufs[i]->port; in send_thread()
567 if ((portmask & (1 << outp)) == 0) { in send_thread()
571 if (rte_eth_tx_burst(outp, 0, (void *)mbufs[i], 1) != 1) { in send_thread()
620 uint8_t outp; in tx_thread() local
643 outp = mbufs[i]->port; in tx_thread()
645 if ((portmask & (1 << outp)) == 0) { in tx_thread()
650 outbuf = tx_buffer[outp]; in tx_thread()
651 sent = rte_eth_tx_buffer(outp, 0, outbuf, mbufs[i]); in tx_thread()