r8169: remove netif_napi_del in probe error path
authorHeiner Kallweit <hkallweit1@gmail.com>
Tue, 12 Dec 2017 06:41:06 +0000 (07:41 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 13 Dec 2017 19:51:50 +0000 (14:51 -0500)
netif_napi_del is called implicitely by free_netdev, therefore we
don't have to do it explicitely.

When the probe error path is reached, the net_device isn't
registered yet. Therefore reordering the call to netif_napi_del
shouldn't cause any issues.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/realtek/r8169.c

index 3c7d90d..857f67b 100644 (file)
@@ -8672,14 +8672,12 @@ static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
        tp->counters = dmam_alloc_coherent (&pdev->dev, sizeof(*tp->counters),
                                            &tp->counters_phys_addr,
                                            GFP_KERNEL);
-       if (!tp->counters) {
-               rc = -ENOMEM;
-               goto err_out_msi_5;
-       }
+       if (!tp->counters)
+               return -ENOMEM;
 
        rc = register_netdev(dev);
        if (rc < 0)
-               goto err_out_msi_5;
+               return rc;
 
        pci_set_drvdata(pdev, dev);
 
@@ -8709,11 +8707,6 @@ static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
        netif_carrier_off(dev);
 
        return 0;
-
-err_out_msi_5:
-       netif_napi_del(&tp->napi);
-
-       return rc;
 }
 
 static struct pci_driver rtl8169_pci_driver = {