> -----Original Message-----
> From: Xing, Beilei <[email protected]>
> Sent: Monday, October 23, 2023 5:01 PM
> To: Zhang, Yuying <[email protected]>; [email protected]; Zhang, Qi Z
> <[email protected]>; Wu, Jingjing <[email protected]>
> Cc: [email protected]
> Subject: RE: [PATCH v1] net/idpf: fix incorrect status calculation
> 
> 
> 
> > -----Original Message-----
> > From: Zhang, Yuying <[email protected]>
> > Sent: Thursday, September 28, 2023 1:05 PM
> > To: Zhang, Yuying <[email protected]>; [email protected]; Zhang, Qi Z
> > <[email protected]>; Wu, Jingjing <[email protected]>; Xing,
> > Beilei <[email protected]>
> > Cc: [email protected]
> > Subject: [PATCH v1] net/idpf: fix incorrect status calculation
> >
> > From: Yuying Zhang <[email protected]>
> >
> > Fix the incorrect ingress packet number calculation.
> >
> > Fixes: 7514d76d407b ("net/idpf: add basic statistics")
> > Cc: [email protected]
> >
> > Signed-off-by: Yuying Zhang <[email protected]>
> > ---
> >  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 <[email protected]>

Applied to dpdk-next-net-intel.

Thanks
Qi

Reply via email to