All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] net/i40e: fix VF Tx bytes
@ 2017-07-09 19:54 Qi Zhang
  2017-07-18  9:16 ` [dpdk-stable] " Ferruh Yigit
  0 siblings, 1 reply; 2+ messages in thread
From: Qi Zhang @ 2017-07-09 19:54 UTC (permalink / raw)
  To: beilei.xing; +Cc: dev, Qi Zhang, stable

Tx CRC size is not counted by vsi's stats register, so it is not necessary
excluded by driver.

Fixes: 98abce237ba7 ("net/i40e: fix VF statistics")
Cc: stable@dpdk.org

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
---
v2:
- improve commit log

 drivers/net/i40e/i40e_ethdev.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index 71cb7d3..0585869 100644
--- a/drivers/net/i40e/i40e_ethdev.c
+++ b/drivers/net/i40e/i40e_ethdev.c
@@ -2353,9 +2353,6 @@ i40e_update_vsi_stats(struct i40e_vsi *vsi)
 	i40e_stat_update_48(hw, I40E_GLV_BPTCH(idx), I40E_GLV_BPTCL(idx),
 			    vsi->offset_loaded,  &oes->tx_broadcast,
 			    &nes->tx_broadcast);
-	/* exclude CRC bytes */
-	nes->tx_bytes -= (nes->tx_unicast + nes->tx_multicast +
-		nes->tx_broadcast) * ETHER_CRC_LEN;
 	/* GLV_TDPC not supported */
 	i40e_stat_update_32(hw, I40E_GLV_TEPC(idx), vsi->offset_loaded,
 			    &oes->tx_errors, &nes->tx_errors);
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [dpdk-stable] [PATCH v2] net/i40e: fix VF Tx bytes
  2017-07-09 19:54 [PATCH v2] net/i40e: fix VF Tx bytes Qi Zhang
@ 2017-07-18  9:16 ` Ferruh Yigit
  0 siblings, 0 replies; 2+ messages in thread
From: Ferruh Yigit @ 2017-07-18  9:16 UTC (permalink / raw)
  To: Qi Zhang, beilei.xing; +Cc: dev, stable

On 7/9/2017 8:54 PM, Qi Zhang wrote:
> Tx CRC size is not counted by vsi's stats register, so it is not necessary
> excluded by driver.
> 
> Fixes: 98abce237ba7 ("net/i40e: fix VF statistics")

> 
> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>

Acked-by: Beilei Xing <beilei.xing@intel.com>

Applied to dpdk-next-net/master, thanks.

(Kept ack from Beilei to first version)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-07-18  9:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-09 19:54 [PATCH v2] net/i40e: fix VF Tx bytes Qi Zhang
2017-07-18  9:16 ` [dpdk-stable] " Ferruh Yigit

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.