2023-05-29 08:41:39

by Christophe JAILLET

[permalink] [raw]
Subject: [PATCH net-next] net/mlx5e: Remove a useless function call

'handle' is known to be NULL here. There is no need to kfree() it.

Signed-off-by: Christophe JAILLET <[email protected]>
---
drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c
index 0290e0dea539..4e923a2874ae 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c
@@ -112,10 +112,8 @@ mlx5e_tc_post_act_add(struct mlx5e_post_act *post_act, struct mlx5_flow_attr *po
int err;

handle = kzalloc(sizeof(*handle), GFP_KERNEL);
- if (!handle) {
- kfree(handle);
+ if (!handle)
return ERR_PTR(-ENOMEM);
- }

post_attr->chain = 0;
post_attr->prio = 0;
--
2.34.1



2023-05-30 07:54:56

by Simon Horman

[permalink] [raw]
Subject: Re: [PATCH net-next] net/mlx5e: Remove a useless function call

On Mon, May 29, 2023 at 10:34:59AM +0200, Christophe JAILLET wrote:
> 'handle' is known to be NULL here. There is no need to kfree() it.
>
> Signed-off-by: Christophe JAILLET <[email protected]>

Reviewed-by: Simon Horman <[email protected]>


2023-05-30 08:16:37

by Tariq Toukan

[permalink] [raw]
Subject: Re: [PATCH net-next] net/mlx5e: Remove a useless function call



On 29/05/2023 11:34, Christophe JAILLET wrote:
> 'handle' is known to be NULL here. There is no need to kfree() it.
>
> Signed-off-by: Christophe JAILLET <[email protected]>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c
> index 0290e0dea539..4e923a2874ae 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/post_act.c
> @@ -112,10 +112,8 @@ mlx5e_tc_post_act_add(struct mlx5e_post_act *post_act, struct mlx5_flow_attr *po
> int err;
>
> handle = kzalloc(sizeof(*handle), GFP_KERNEL);
> - if (!handle) {
> - kfree(handle);
> + if (!handle)
> return ERR_PTR(-ENOMEM);
> - }
>
> post_attr->chain = 0;
> post_attr->prio = 0;

Reviewed-by: Tariq Toukan <[email protected]>

Thanks for your patch.

2023-05-31 22:36:07

by Saeed Mahameed

[permalink] [raw]
Subject: Re: [PATCH net-next] net/mlx5e: Remove a useless function call

On 29 May 10:34, Christophe JAILLET wrote:
>'handle' is known to be NULL here. There is no need to kfree() it.
>
>Signed-off-by: Christophe JAILLET <[email protected]>


Applied to net-next-mlx5.

Thanks