IB/ipoib: Delete napi in device uninit default
This patch mekas init_default and uninit_default symmetric
with a call to delete napi. Additionally, the uninit_default
gained delete napi call in case of init_default fails.
Fixes: 515ed4f3aa
('IB/IPoIB: Separate control and data related initializations')
Signed-off-by: Alex Vesker <valex@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
022d038a16
commit
b53d4566cc
|
@ -1596,6 +1596,8 @@ static void ipoib_dev_uninit_default(struct net_device *dev)
|
|||
|
||||
ipoib_transport_dev_cleanup(dev);
|
||||
|
||||
netif_napi_del(&priv->napi);
|
||||
|
||||
ipoib_cm_dev_cleanup(dev);
|
||||
|
||||
kfree(priv->rx_ring);
|
||||
|
@ -1649,6 +1651,7 @@ out_rx_ring_cleanup:
|
|||
kfree(priv->rx_ring);
|
||||
|
||||
out:
|
||||
netif_napi_del(&priv->napi);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue