Re: [dpdk-dev] [PATCH v4] net/i40e: fix incorrect byte counters

2020-09-22 Thread Ferruh Yigit
On 9/22/2020 8:37 AM, Junyu Jiang wrote: This patch fixed the issue that rx/tx bytes statistics counters overflowed on 48 bit limitation by enlarging the limitation. Fixes: 4861cde46116 ("i40e: new poll mode driver") Cc: sta...@dpdk.org Signed-off-by: Junyu Jiang --- v4: put reading stats and

[dpdk-dev] [PATCH v4] net/i40e: fix incorrect byte counters

2020-09-22 Thread Junyu Jiang
This patch fixed the issue that rx/tx bytes statistics counters overflowed on 48 bit limitation by enlarging the limitation. Fixes: 4861cde46116 ("i40e: new poll mode driver") Cc: sta...@dpdk.org Signed-off-by: Junyu Jiang --- v4: put reading stats and extending in same function. v3: create a fu