Re: [dpdk-dev] [PATCH] net/i40e: fix statistics

2019-01-24 Thread Zhang, Qi Z
> -Original Message- > From: Sun, Chenmin > Sent: Wednesday, January 23, 2019 9:30 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Sun, Chenmin ; Zhang, Qi Z > > Subject: [PATCH] net/i40e: fix statistics > > From: Chenmin Sun > > 1. Fix the lldp stop condition check - for firmware versi

[dpdk-dev] [PATCH] net/i40e: fix statistics

2019-01-23 Thread chenmin . sun
From: Chenmin Sun 1. Fix the lldp stop condition check - for firmware versions 6.01(for X710)/3.33(for X722) or later we need stop the lldp 2. Doucment known issue for tx bytes decreasing due to link status chage Fixes: 044846f071cc ("net/i40e: stop LLDP before setting local LLDP MIB") Cc: sta..

Re: [dpdk-dev] [PATCH] net/i40e: fix statistics inconsistent issue

2018-12-15 Thread Zhang, Qi Z
> -Original Message- > From: Li, Xiaoyun > Sent: Thursday, December 6, 2018 2:04 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Li, Xiaoyun ; sta...@dpdk.org > Subject: [PATCH] net/i40e: fix statistics inconsistent issue > > Port packets excluding pf VSI discards were used for packet count.

[dpdk-dev] [PATCH] net/i40e: fix statistics inconsistent issue

2018-12-05 Thread Xiaoyun Li
Port packets excluding pf VSI discards were used for packet count. And port bytes were used for byte count. This will cause inconsistent count in some cases. This patch would take all VSI stats as packet and byte count to address the issue. Fixes: 763de290cbd1 ("net/i40e: fix packet count for PF")