OSDN Git Service

net: nixge: fix potential memory leak in nixge_probe()
authorLu Wei <luwei32@huawei.com>
Wed, 29 Jul 2020 03:50:05 +0000 (11:50 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Jul 2020 23:55:39 +0000 (16:55 -0700)
If some processes in nixge_probe() fail, free_netdev(dev)
needs to be called to aviod a memory leak.

Fixes: 87ab207981ec ("net: nixge: Separate ctrl and dma resources")
Fixes: abcd3d6fc640 ("net: nixge: Fix error path for obtaining mac address")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Lu Wei <luwei32@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ni/nixge.c

index d2708a5..4075f5e 100644 (file)
@@ -1299,19 +1299,21 @@ static int nixge_probe(struct platform_device *pdev)
        netif_napi_add(ndev, &priv->napi, nixge_poll, NAPI_POLL_WEIGHT);
        err = nixge_of_get_resources(pdev);
        if (err)
-               return err;
+               goto free_netdev;
        __nixge_hw_set_mac_address(ndev);
 
        priv->tx_irq = platform_get_irq_byname(pdev, "tx");
        if (priv->tx_irq < 0) {
                netdev_err(ndev, "could not find 'tx' irq");
-               return priv->tx_irq;
+               err = priv->tx_irq;
+               goto free_netdev;
        }
 
        priv->rx_irq = platform_get_irq_byname(pdev, "rx");
        if (priv->rx_irq < 0) {
                netdev_err(ndev, "could not find 'rx' irq");
-               return priv->rx_irq;
+               err = priv->rx_irq;
+               goto free_netdev;
        }
 
        priv->coalesce_count_rx = XAXIDMA_DFT_RX_THRESHOLD;