> -----Original Message-----
> From: Xu, Rosen <[email protected]>
> Sent: Wednesday, January 26, 2022 3:08 PM
> To: Huang, Wei <[email protected]>; [email protected]; Zhang, Qi Z
> <[email protected]>
> Cc: [email protected]; Zhang, Tianfei <[email protected]>; Yigit, Ferruh
> <[email protected]>
> Subject: RE: [PATCH v1] raw/ifpga: fix ifpga devices cleanup function
> 
> Hi,
> 
> > -----Original Message-----
> > From: Huang, Wei <[email protected]>
> > Sent: Wednesday, January 26, 2022 11:30
> > To: [email protected]; Xu, Rosen <[email protected]>; Zhang, Qi Z
> > <[email protected]>
> > Cc: [email protected]; Zhang, Tianfei <[email protected]>; Yigit,
> > Ferruh <[email protected]>; Huang, Wei <[email protected]>
> > Subject: [PATCH v1] raw/ifpga: fix ifpga devices cleanup function
> >
> > Use rte_dev_remove() to replace rte_rawdev_pmd_release() in
> > ifpga_rawdev_cleanup(), resources occupied by ifpga raw devices such
> > as threads can be released correctly.
> >
> > Fixes: f724a802 ("raw/ifpga: add miscellaneous APIs")
> >
> > Signed-off-by: Wei Huang <[email protected]>
> > ---
> >  drivers/raw/ifpga/ifpga_rawdev.c | 4 +++-
> >  1 file changed, 3 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/raw/ifpga/ifpga_rawdev.c
> > b/drivers/raw/ifpga/ifpga_rawdev.c
> > index fdf3c23..88c38aa 100644
> > --- a/drivers/raw/ifpga/ifpga_rawdev.c
> > +++ b/drivers/raw/ifpga/ifpga_rawdev.c
> > @@ -1787,12 +1787,14 @@ int ifpga_rawdev_partial_reconfigure(struct
> > rte_rawdev *dev, int port,  void ifpga_rawdev_cleanup(void)  {
> >     struct ifpga_rawdev *dev;
> > +   struct rte_rawdev *rdev;
> >     unsigned int i;
> >
> >     for (i = 0; i < IFPGA_RAWDEV_NUM; i++) {
> >             dev = &ifpga_rawdevices[i];
> >             if (dev->rawdev) {
> > -                   rte_rawdev_pmd_release(dev->rawdev);
> > +                   rdev = dev->rawdev;
> > +                   rte_dev_remove(rdev->device);
> >                     dev->rawdev = NULL;
> >             }
> >     }
> > --
> > 1.8.3.1
> 
> Acked-by: Rosen Xu <[email protected]>

Applied to dpdk-next-net-intel.

Thanks
Qi

Reply via email to