[NET]: dev_put/dev_hold cleanup
Get rid of the old __dev_put macro that is just a hold over from pre 2.6 kernel. And turn dev_hold into an inline instead of a macro. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2d0817d11e
commit
1533306186
5 changed files with 9 additions and 7 deletions
|
@ -920,7 +920,7 @@ e1000_remove(struct pci_dev *pdev)
|
|||
unregister_netdev(netdev);
|
||||
#ifdef CONFIG_E1000_NAPI
|
||||
for (i = 0; i < adapter->num_rx_queues; i++)
|
||||
__dev_put(&adapter->polling_netdev[i]);
|
||||
dev_put(&adapter->polling_netdev[i]);
|
||||
#endif
|
||||
|
||||
if (!e1000_check_phy_reset_block(&adapter->hw))
|
||||
|
|
|
@ -712,8 +712,10 @@ static inline void dev_put(struct net_device *dev)
|
|||
atomic_dec(&dev->refcnt);
|
||||
}
|
||||
|
||||
#define __dev_put(dev) atomic_dec(&(dev)->refcnt)
|
||||
#define dev_hold(dev) atomic_inc(&(dev)->refcnt)
|
||||
static inline void dev_hold(struct net_device *dev)
|
||||
{
|
||||
atomic_inc(&dev->refcnt);
|
||||
}
|
||||
|
||||
/* Carrier loss detection, dial on demand. The functions netif_carrier_on
|
||||
* and _off may be called from IRQ context, but it is caller
|
||||
|
|
|
@ -1382,7 +1382,7 @@ static struct in_device * ip_mc_find_dev(struct ip_mreqn *imr)
|
|||
dev = ip_dev_find(imr->imr_address.s_addr);
|
||||
if (!dev)
|
||||
return NULL;
|
||||
__dev_put(dev);
|
||||
dev_put(dev);
|
||||
}
|
||||
|
||||
if (!dev && !ip_route_output_key(&rt, &fl)) {
|
||||
|
|
|
@ -418,7 +418,7 @@ static int vif_add(struct vifctl *vifc, int mrtsock)
|
|||
dev = ip_dev_find(vifc->vifc_lcl_addr.s_addr);
|
||||
if (!dev)
|
||||
return -EADDRNOTAVAIL;
|
||||
__dev_put(dev);
|
||||
dev_put(dev);
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
|
|
|
@ -234,7 +234,7 @@ static void dev_watchdog_down(struct net_device *dev)
|
|||
{
|
||||
spin_lock_bh(&dev->xmit_lock);
|
||||
if (del_timer(&dev->watchdog_timer))
|
||||
__dev_put(dev);
|
||||
dev_put(dev);
|
||||
spin_unlock_bh(&dev->xmit_lock);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue