Commit 93ec2c72 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller

netpoll info leak

After looking harder, Steve noticed that the netpoll
beast leaked a little every time it shutdown for a nap.
Not a big leak, but a nuisance kind of thing.

He took out his refcount duct tape and patched the
leak. It was overkill since there was already other
locking in that area, but it looked clean and wouldn't
attract fleas.
Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
parent a1bcfacd
...@@ -25,6 +25,7 @@ struct netpoll { ...@@ -25,6 +25,7 @@ struct netpoll {
}; };
struct netpoll_info { struct netpoll_info {
atomic_t refcnt;
spinlock_t poll_lock; spinlock_t poll_lock;
int poll_owner; int poll_owner;
int tries; int tries;
......
...@@ -658,8 +658,11 @@ int netpoll_setup(struct netpoll *np) ...@@ -658,8 +658,11 @@ int netpoll_setup(struct netpoll *np)
npinfo->tries = MAX_RETRIES; npinfo->tries = MAX_RETRIES;
spin_lock_init(&npinfo->rx_lock); spin_lock_init(&npinfo->rx_lock);
skb_queue_head_init(&npinfo->arp_tx); skb_queue_head_init(&npinfo->arp_tx);
} else atomic_set(&npinfo->refcnt, 1);
} else {
npinfo = ndev->npinfo; npinfo = ndev->npinfo;
atomic_inc(&npinfo->refcnt);
}
if (!ndev->poll_controller) { if (!ndev->poll_controller) {
printk(KERN_ERR "%s: %s doesn't support polling, aborting.\n", printk(KERN_ERR "%s: %s doesn't support polling, aborting.\n",
...@@ -766,12 +769,22 @@ void netpoll_cleanup(struct netpoll *np) ...@@ -766,12 +769,22 @@ void netpoll_cleanup(struct netpoll *np)
if (np->dev) { if (np->dev) {
npinfo = np->dev->npinfo; npinfo = np->dev->npinfo;
if (npinfo && npinfo->rx_np == np) { if (npinfo) {
spin_lock_irqsave(&npinfo->rx_lock, flags); if (npinfo->rx_np == np) {
npinfo->rx_np = NULL; spin_lock_irqsave(&npinfo->rx_lock, flags);
npinfo->rx_flags &= ~NETPOLL_RX_ENABLED; npinfo->rx_np = NULL;
spin_unlock_irqrestore(&npinfo->rx_lock, flags); npinfo->rx_flags &= ~NETPOLL_RX_ENABLED;
spin_unlock_irqrestore(&npinfo->rx_lock, flags);
}
np->dev->npinfo = NULL;
if (atomic_dec_and_test(&npinfo->refcnt)) {
skb_queue_purge(&npinfo->arp_tx);
kfree(npinfo);
}
} }
dev_put(np->dev); dev_put(np->dev);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment