This commit is contained in:
jin.hao1 2019-03-15 18:07:15 +08:00 committed by GitHub
parent 0a4dae10f2
commit 31b46e5735
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 7 deletions

View File

@ -1279,18 +1279,16 @@ send_burst(struct lcore_conf *qconf, uint16_t n, uint8_t port)
}
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);
}
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;
}