Home
last modified time | relevance | path

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

/dpdk/examples/ntb/
H A Dntb_fwd.c889 static uint64_t prev_pkts_rx[2]; in ntb_calculate_throughput() local
897 diff_pkts_rx = (ntb_port_stats[port].rx > prev_pkts_rx[port]) ? in ntb_calculate_throughput()
898 (ntb_port_stats[port].rx - prev_pkts_rx[port]) : 0; in ntb_calculate_throughput()
901 prev_pkts_rx[port] = ntb_port_stats[port].rx; in ntb_calculate_throughput()
/dpdk/app/test-pmd/
H A Dconfig.c242 static uint64_t prev_pkts_rx[RTE_MAX_ETHPORTS]; in nic_stats_display() local
288 diff_pkts_rx = (stats.ipackets > prev_pkts_rx[port_id]) ? in nic_stats_display()
289 (stats.ipackets - prev_pkts_rx[port_id]) : 0; in nic_stats_display()
292 prev_pkts_rx[port_id] = stats.ipackets; in nic_stats_display()