> -----Original Message-----
> From: Thierry Herbelot <[email protected]>
> Sent: Monday, May 24, 2021 3:08 PM
> To: [email protected]
> Cc: Thierry Herbelot <[email protected]>; Thomas Monjalon
> <[email protected]>; [email protected]; Gagandeep Singh
> <[email protected]>
> Subject: [PATCH v2] net/pfe: no need to check dev to be NULL Pointer
> 
> librte_ethdev library is already doing some checks on dev before calling
> the link update.
> 
> Fixes: acd4818ea2a45 ("net/pfe: add link status update")
> Cc: [email protected]
> Cc: Gagandeep Singh <[email protected]>
> 
> Signed-off-by: Thierry Herbelot <[email protected]>
> --
> V2: rework after noting dev cannot be NULL
> ---

Acked-by: Gagandeep Singh <[email protected]>

>  drivers/net/pfe/pfe_ethdev.c | 5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/drivers/net/pfe/pfe_ethdev.c b/drivers/net/pfe/pfe_ethdev.c
> index 3135466713fb..feec4d10a26e 100644
> --- a/drivers/net/pfe/pfe_ethdev.c
> +++ b/drivers/net/pfe/pfe_ethdev.c
> @@ -582,11 +582,6 @@ pfe_eth_link_update(struct rte_eth_dev *dev, int
> wait_to_complete __rte_unused)
>       struct rte_eth_link link, old;
>       unsigned int lstatus = 1;
> 
> -     if (dev == NULL) {
> -             PFE_PMD_ERR("Invalid device in link_update.\n");
> -             return 0;
> -     }
> -
>       memset(&old, 0, sizeof(old));
>       memset(&link, 0, sizeof(struct rte_eth_link));
> 
> --
> 2.29.2

Reply via email to