net/mlx5: fix potential memory leak in mlx5e_init_rep_rx
authorZhengchao Shao <shaozhengchao@huawei.com>
Sat, 8 Jul 2023 07:13:07 +0000 (15:13 +0800)
committerSaeed Mahameed <saeedm@nvidia.com>
Wed, 26 Jul 2023 21:31:02 +0000 (14:31 -0700)
commitc6cf0b6097bf1bf1b2a89b521e9ecd26b581a93a
treed222c261dc7668a2ec9aef084efc3bb955b093bf
parent5dd77585dd9d0e03dd1bceb95f0269a7eaf6b936
net/mlx5: fix potential memory leak in mlx5e_init_rep_rx

The memory pointed to by the priv->rx_res pointer is not freed in the error
path of mlx5e_init_rep_rx, which can lead to a memory leak. Fix by freeing
the memory in the error path, thereby making the error path identical to
mlx5e_cleanup_rep_rx().

Fixes: af8bbf730068 ("net/mlx5e: Convert mlx5e_flow_steering member of mlx5e_priv to pointer")
Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c