[dpdk-dev] [PATCH] net/igc: fix Rx error counter for badlen packets

Wang, Haiyue haiyue.wang at intel.com
Thu Apr 1 03:57:50 CEST 2021


> -----Original Message-----
> From: Zhang, AlvinX <alvinx.zhang at intel.com>
> Sent: Thursday, April 1, 2021 09:17
> To: Wang, Haiyue <haiyue.wang at intel.com>; Guo, Jia <jia.guo at intel.com>
> Cc: dev at dpdk.org; Zhang, AlvinX <alvinx.zhang at intel.com>; stable at dpdk.org
> Subject: [PATCH] net/igc: fix Rx error counter for badlen packets
> 
> When the size of the packet is less than the minimum or greater
> than the maximum, the packet will be counted twice in the error
> packet counter.

This message is not clear, the packet should be minimum or greater,
but not at the same time, why twice ? Please describe the new stats
you use more clear.

> 
> Fixes: e6defdfddc3b ("net/igc: enable statistics")
> Cc: stable at dpdk.org
> 
> Signed-off-by: Alvin Zhang <alvinx.zhang at intel.com>
> ---
>  drivers/net/igc/igc_ethdev.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/net/igc/igc_ethdev.c b/drivers/net/igc/igc_ethdev.c
> index 0ea6e2a..c398701 100644
> --- a/drivers/net/igc/igc_ethdev.c
> +++ b/drivers/net/igc/igc_ethdev.c
> @@ -1901,8 +1901,7 @@ static int eth_igc_vlan_tpid_set(struct rte_eth_dev *dev,
> 
>  	/* Rx Errors */
>  	rte_stats->imissed = stats->mpc;
> -	rte_stats->ierrors = stats->crcerrs +
> -			stats->rlec + stats->ruc + stats->roc +
> +	rte_stats->ierrors = stats->crcerrs + stats->rlec +
>  			stats->rxerrc + stats->algnerrc;
> 
>  	/* Tx Errors */
> --
> 1.8.3.1



More information about the dev mailing list