mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 07:59:42 -04:00
net/mlx5: HWS, Fix memory leak in hws_action_get_shared_stc_nic error flow
When an invalid stc_type is provided, the function allocates memory for
shared_stc but jumps to unlock_and_out without freeing it, causing a
memory leak.
Fix by jumping to free_shared_stc label instead to ensure proper cleanup.
Fixes: 504e536d90 ("net/mlx5: HWS, added actions handling")
Signed-off-by: Lama Kayal <lkayal@nvidia.com>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: Mark Bloch <mbloch@nvidia.com>
Link: https://patch.msgid.link/20250825143435.598584-3-mbloch@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
2c0a959beb
commit
a630f83592
@@ -117,7 +117,7 @@ static int hws_action_get_shared_stc_nic(struct mlx5hws_context *ctx,
|
||||
mlx5hws_err(ctx, "No such stc_type: %d\n", stc_type);
|
||||
pr_warn("HWS: Invalid stc_type: %d\n", stc_type);
|
||||
ret = -EINVAL;
|
||||
goto unlock_and_out;
|
||||
goto free_shared_stc;
|
||||
}
|
||||
|
||||
ret = mlx5hws_action_alloc_single_stc(ctx, &stc_attr, tbl_type,
|
||||
|
||||
Reference in New Issue
Block a user