mirror of https://github.com/F-Stack/f-stack.git
fix a plurality of packets may not statistics in ff_traffic.rx_packets and ff_traffic.rx_bytes.
This commit is contained in:
parent
95ce61a67a
commit
8beba0628d
|
@ -1281,8 +1281,8 @@ process_packets(uint16_t port_id, uint16_t queue_id, struct rte_mbuf **bufs,
|
||||||
uint16_t len = rte_pktmbuf_data_len(rtem);
|
uint16_t len = rte_pktmbuf_data_len(rtem);
|
||||||
|
|
||||||
if (!pkts_from_ring) {
|
if (!pkts_from_ring) {
|
||||||
ff_traffic.rx_packets++;
|
ff_traffic.rx_packets += rtem->nb_segs;
|
||||||
ff_traffic.rx_bytes += len;
|
ff_traffic.rx_bytes += rte_pktmbuf_pkt_len(rtem);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!pkts_from_ring && packet_dispatcher) {
|
if (!pkts_from_ring && packet_dispatcher) {
|
||||||
|
|
Loading…
Reference in New Issue