]> git.ipfire.org Git - people/arne_f/kernel.git/commitdiff
net/mlx5e: Fix memleak in mlx5e_create_l2_table_groups
authorDinghao Liu <dinghao.liu@zju.edu.cn>
Mon, 21 Dec 2020 11:27:31 +0000 (19:27 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 17 Jan 2021 13:05:37 +0000 (14:05 +0100)
commit 5b0bb12c58ac7d22e05b5bfdaa30a116c8c32e32 upstream.

When mlx5_create_flow_group() fails, ft->g should be
freed just like when kvzalloc() fails. The caller of
mlx5e_create_l2_table_groups() does not catch this
issue on failure, which leads to memleak.

Fixes: 33cfaaa8f36f ("net/mlx5e: Split the main flow steering table")
Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/mellanox/mlx5/core/en_fs.c

index 713dc210f710cdd1a5e8c4de8cc7c8cb60b6111d..dc4aa0dc5230586976fe5a7bc1e0c9b44c550c76 100644 (file)
@@ -1346,6 +1346,7 @@ err_destroy_groups:
        ft->g[ft->num_groups] = NULL;
        mlx5e_destroy_groups(ft);
        kvfree(in);
+       kfree(ft->g);
 
        return err;
 }