Skip to content

Commit

Permalink
IB/ipoib: Delete napi in device uninit default
Browse files Browse the repository at this point in the history
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: 515ed4f ('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>
  • Loading branch information
Alex Vesker authored and Doug Ledford committed Jun 14, 2017
1 parent 022d038 commit b53d456
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/infiniband/ulp/ipoib/ipoib_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -1649,6 +1651,7 @@ static int ipoib_dev_init_default(struct net_device *dev)
kfree(priv->rx_ring);

out:
netif_napi_del(&priv->napi);
return -ENOMEM;
}

Expand Down

0 comments on commit b53d456

Please sign in to comment.