Re: [dpdk-dev] [PATCH v3] net/pcap: improve rx statistics

2021-09-09 Thread Ferruh Yigit
On 9/9/2021 4:29 AM, Stephen Hemminger wrote: > On Thu, 9 Sep 2021 10:45:31 +0800 > Qiming Chen wrote: > >> In the receiving direction, if alloc mbuf or jumbo process failed, there >> is no err_pkts count, which makes it difficult to locate the problem. >> Because alloc mbuf failed, the rx_nombu

Re: [dpdk-dev] [PATCH v3] net/pcap: improve rx statistics

2021-09-08 Thread Stephen Hemminger
On Thu, 9 Sep 2021 10:45:31 +0800 Qiming Chen wrote: > In the receiving direction, if alloc mbuf or jumbo process failed, there > is no err_pkts count, which makes it difficult to locate the problem. > Because alloc mbuf failed, the rx_nombuf field is counted. > > Signed-off-by: Qiming Chen >

[dpdk-dev] [PATCH v3] net/pcap: improve rx statistics

2021-09-08 Thread Qiming Chen
In the receiving direction, if alloc mbuf or jumbo process failed, there is no err_pkts count, which makes it difficult to locate the problem. Because alloc mbuf failed, the rx_nombuf field is counted. Signed-off-by: Qiming Chen --- v2: Clear coding style issues. v3: 1) Send direction does no