ff_traffic.tx info should save the sent packets

send_burst()  send several pkts which maybe composed by several mbufs, use rte_pktmbuf_pkt_len() to get actual length.
This commit is contained in:
jin.hao1 2019-03-15 16:18:17 +08:00 committed by GitHub
parent e10c878da7
commit 268488030d
1 changed files with 7 additions and 7 deletions

View File

@ -1277,19 +1277,19 @@ send_burst(struct lcore_conf *qconf, uint16_t n, uint8_t port)
ff_dump_packets(qconf->pcap[port], m_table[i]);
}
}
ff_traffic.tx_packets += n;
uint16_t i;
for (i = 0; i < n; i++) {
ff_traffic.tx_bytes += rte_pktmbuf_data_len(m_table[i]);
}
ret = rte_eth_tx_burst(port, queueid, m_table, n);
if (unlikely(ret < n)) {
do {
rte_pktmbuf_free(m_table[ret]);
} while (++ret < n);
}
ff_traffic.tx_packets += ret;
uint16_t i;
for (i = 0; i < ret; i++) {
ff_traffic.tx_bytes += rte_pktmbuf_pkt_len(m_table[i]);
}
return 0;
}