[PATCH v1] net/idpf: fix incorrect status calculation

Zhang, Qi Z qi.z.zhang at intel.com
Tue Oct 24 07:26:36 CEST 2023



> -----Original Message-----
> From: Xing, Beilei <beilei.xing at intel.com>
> Sent: Monday, October 23, 2023 5:01 PM
> To: Zhang, Yuying <yuying.zhang at intel.com>; dev at dpdk.org; Zhang, Qi Z
> <qi.z.zhang at intel.com>; Wu, Jingjing <jingjing.wu at intel.com>
> Cc: stable at dpdk.org
> Subject: RE: [PATCH v1] net/idpf: fix incorrect status calculation
> 
> 
> 
> > -----Original Message-----
> > From: Zhang, Yuying <yuying.zhang at intel.com>
> > Sent: Thursday, September 28, 2023 1:05 PM
> > To: Zhang, Yuying <yuying.zhang at intel.com>; dev at dpdk.org; Zhang, Qi Z
> > <qi.z.zhang at intel.com>; Wu, Jingjing <jingjing.wu at intel.com>; Xing,
> > Beilei <beilei.xing at intel.com>
> > Cc: stable at dpdk.org
> > Subject: [PATCH v1] net/idpf: fix incorrect status calculation
> >
> > From: Yuying Zhang <yuying.zhang at intel.com>
> >
> > Fix the incorrect ingress packet number calculation.
> >
> > Fixes: 7514d76d407b ("net/idpf: add basic statistics")
> > Cc: stable at dpdk.org
> >
> > Signed-off-by: Yuying Zhang <yuying.zhang at intel.com>
> > ---
> >  drivers/net/idpf/idpf_ethdev.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/net/idpf/idpf_ethdev.c
> > b/drivers/net/idpf/idpf_ethdev.c index 3af7cf0bb7..6ae2ac2681 100644
> > --- a/drivers/net/idpf/idpf_ethdev.c
> > +++ b/drivers/net/idpf/idpf_ethdev.c
> > @@ -281,7 +281,7 @@ idpf_dev_stats_get(struct rte_eth_dev *dev, struct
> > rte_eth_stats *stats)
> >
> >  		idpf_vport_stats_update(&vport->eth_stats_offset, pstats);
> >  		stats->ipackets = pstats->rx_unicast + pstats->rx_multicast +
> > -				pstats->rx_broadcast - pstats->rx_discards;
> > +				pstats->rx_broadcast;
> >  		stats->opackets = pstats->tx_broadcast + pstats->tx_multicast
> > +
> >  						pstats->tx_unicast;
> >  		stats->ierrors = pstats->rx_errors;
> > --
> > 2.34.1
> 
> Acked-by: Beilei Xing <beilei.xing at intel.com>

Applied to dpdk-next-net-intel.

Thanks
Qi



More information about the stable mailing list