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.
dev
jin.hao1 2019-03-15 16:18:17 +08:00 committed by GitHub
parent 0cf7df3b34
commit 0a4dae10f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}