Searched refs:port_statistics (Results 1 – 6 of 6) sorted by relevance
| /dpdk/examples/link_status_interrupt/ |
| H A D | main.c | 151 port_statistics[portid].tx, in print_stats() 152 port_statistics[portid].rx, in print_stats() 153 port_statistics[portid].dropped); in print_stats() 155 total_packets_dropped += port_statistics[portid].dropped; in print_stats() 156 total_packets_tx += port_statistics[portid].tx; in print_stats() 157 total_packets_rx += port_statistics[portid].rx; in print_stats() 193 port_statistics[dst_port].tx += sent; in lsi_simple_forward() 250 port_statistics[portid].tx += sent; in lsi_main_loop() 283 port_statistics[portid].rx += nb_rx; in lsi_main_loop() 709 &port_statistics[portid].dropped); in main() [all …]
|
| /dpdk/examples/l2fwd-keepalive/ |
| H A D | main.c | 146 port_statistics[portid].tx, in print_stats() 147 port_statistics[portid].rx, in print_stats() 148 port_statistics[portid].dropped); in print_stats() 150 total_packets_dropped += port_statistics[portid].dropped; in print_stats() 151 total_packets_tx += port_statistics[portid].tx; in print_stats() 152 total_packets_rx += port_statistics[portid].rx; in print_stats() 188 port_statistics[dst_port].tx += sent; in l2fwd_simple_forward() 255 port_statistics[portid].tx += sent; in l2fwd_main_loop() 271 port_statistics[portid].rx += nb_rx; in l2fwd_main_loop() 711 &port_statistics[portid].dropped); in main() [all …]
|
| /dpdk/examples/l2fwd/ |
| H A D | main.c | 146 port_statistics[portid].tx, in print_stats() 147 port_statistics[portid].rx, in print_stats() 148 port_statistics[portid].dropped); in print_stats() 150 total_packets_dropped += port_statistics[portid].dropped; in print_stats() 151 total_packets_tx += port_statistics[portid].tx; in print_stats() 152 total_packets_rx += port_statistics[portid].rx; in print_stats() 198 port_statistics[dst_port].tx += sent; in l2fwd_simple_forward() 256 port_statistics[portid].tx += sent; in l2fwd_main_loop() 289 port_statistics[portid].rx += nb_rx; in l2fwd_main_loop() 864 &port_statistics[portid].dropped); in main() [all …]
|
| /dpdk/examples/dma/ |
| H A D | dmafwd.c | 62 struct dma_port_statistics port_statistics; variable 138 port_statistics.tx[port_id], in print_port_stats() 139 port_statistics.rx[port_id], in print_port_stats() 140 port_statistics.tx_dropped[port_id], in print_port_stats() 141 port_statistics.copy_dropped[port_id]); in print_port_stats() 231 port_statistics.tx_dropped[port_id] in print_stats() 232 + port_statistics.copy_dropped[port_id]; in print_stats() 234 port_statistics.tx[port_id]; in print_stats() 236 port_statistics.rx[port_id]; in print_stats() 951 &port_statistics.tx_dropped[portid]); in port_init() [all …]
|
| /dpdk/examples/l2fwd-jobstats/ |
| H A D | main.c | 309 port_statistics[portid].tx, in show_stats_cb() 310 port_statistics[portid].rx, in show_stats_cb() 311 port_statistics[portid].dropped); in show_stats_cb() 313 total_packets_dropped += port_statistics[portid].dropped; in show_stats_cb() 314 total_packets_tx += port_statistics[portid].tx; in show_stats_cb() 315 total_packets_rx += port_statistics[portid].rx; in show_stats_cb() 362 port_statistics[dst_port].tx += sent; in l2fwd_simple_forward() 426 port_statistics[portid].rx += total_nb_rx; in l2fwd_fwd_job() 466 port_statistics[portid].tx += sent; in l2fwd_flush_job() 934 &port_statistics[portid].dropped); in main() [all …]
|
| /dpdk/examples/l2fwd-crypto/ |
| H A D | main.c | 251 struct l2fwd_port_statistics port_statistics[RTE_MAX_ETHPORTS]; variable 293 port_statistics[portid].tx, in print_stats() 294 port_statistics[portid].rx, in print_stats() 295 port_statistics[portid].dropped); in print_stats() 297 total_packets_dropped += port_statistics[portid].dropped; in print_stats() 298 total_packets_tx += port_statistics[portid].tx; in print_stats() 299 total_packets_rx += port_statistics[portid].rx; in print_stats() 571 port_statistics[port].tx += ret; in l2fwd_send_burst() 573 port_statistics[port].dropped += (n - ret); in l2fwd_send_burst() 926 port_statistics[portid].rx += nb_rx; in l2fwd_main_loop() [all …]
|