r8169: call netif_napi_del at errpaths and at driver unload

commit ad1be8d345 upstream.

When register_netdev fails, the init'ed NAPIs by netif_napi_add must be
deleted with netif_napi_del, and also when driver unloads, it should
delete the NAPI before unregistering netdevice using unregister_netdev.

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Devendra Naga
2012-10-05 23:29:21 +02:00
committed by Greg Kroah-Hartman
parent c90334077f
commit f074e600bf

View File

@@ -3706,6 +3706,7 @@ out:
return rc;
err_out_msi_4:
netif_napi_del(&tp->napi);
rtl_disable_msi(pdev, tp);
iounmap(ioaddr);
err_out_free_res_3:
@@ -3731,6 +3732,8 @@ static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
cancel_delayed_work_sync(&tp->task);
netif_napi_del(&tp->napi);
unregister_netdev(dev);
rtl_release_firmware(tp);