]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net/mlx4_core: fix memory leaks on error exit path
authorColin Ian King <colin.king@canonical.com>
Thu, 31 Aug 2017 16:30:53 +0000 (17:30 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sun, 3 Sep 2017 17:57:10 +0000 (10:57 -0700)
The structures hca_param and func_cap are not being kfree'd on an error
exit path causing two memory leaks. Fix this by jumping to the existing
free memory error exit path.

Detected by CoverityScan, CID#1455219, CID#1455224 ("Resource Leak")

Fixes: c73c8b1e47ca ("net/mlx4_core: Dynamically allocate structs at mlx4_slave_cap")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx4/main.c

index c631d157b97dcde72e555c939d10aaa55d1238b4..b3e50f4892c574ae43be82f8779a8201e34b3d61 100644 (file)
@@ -977,7 +977,8 @@ static int mlx4_slave_cap(struct mlx4_dev *dev)
        if (dev->caps.num_ports > MLX4_MAX_PORTS) {
                mlx4_err(dev, "HCA has %d ports, but we only support %d, aborting\n",
                         dev->caps.num_ports, MLX4_MAX_PORTS);
-               return -ENODEV;
+               err = -ENODEV;
+               goto free_mem;
        }
 
        mlx4_replace_zero_macs(dev);