Merge pull request #355 from jinhao2/master

ff_traffic.tx info should save the sent packets
dev
johnjiang 2019-03-18 11:07:06 +08:00 committed by GitHub
commit fba559f45b
1 changed files with 6 additions and 8 deletions

View File

@ -1285,20 +1285,18 @@ 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);
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]);
}
if (unlikely(ret < n)) {
do {
rte_pktmbuf_free(m_table[ret]);
} while (++ret < n);
}
return 0;
}