Hi,

> -----Original Message-----
> From: Huang, Wei <[email protected]>
> Sent: Friday, March 17, 2023 4:45 AM
> To: [email protected]; [email protected]; [email protected]
> Cc: [email protected]; Xu, Rosen <[email protected]>; Zhang, Tianfei
> <[email protected]>; Zhang, Qi Z <[email protected]>; Huang, Wei
> <[email protected]>
> Subject: [PATCH v1] net/ipn3ke: fix representor name
> 
> The device name used in rte_eth_dev_allocated() function is afu device
> name instead of representor name, this patch correct it.
> 
> Fixes: c01c748e4ae6 ("net/ipn3ke: add new driver")
> Cc: [email protected]
> 
> Signed-off-by: Wei Huang <[email protected]>
> ---
>  drivers/net/ipn3ke/ipn3ke_ethdev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ipn3ke/ipn3ke_ethdev.c
> b/drivers/net/ipn3ke/ipn3ke_ethdev.c
> index 70a06a3..2c15611 100644
> --- a/drivers/net/ipn3ke/ipn3ke_ethdev.c
> +++ b/drivers/net/ipn3ke/ipn3ke_ethdev.c
> @@ -558,7 +558,7 @@ static int ipn3ke_vswitch_remove(struct
> rte_afu_device *afu_dev)
>               snprintf(name, sizeof(name), "net_%s_representor_%d",
>                       afu_dev->device.name, i);
> 
> -             ethdev = rte_eth_dev_allocated(afu_dev->device.name);
> +             ethdev = rte_eth_dev_allocated(name);
>               if (ethdev != NULL)
>                       rte_eth_dev_destroy(ethdev, ipn3ke_rpst_uninit);
>       }
> --
> 1.8.3.1

Acked-by: Rosen Xu <[email protected]>

Reply via email to