diff options
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/netpoll.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/net/core/netpoll.c b/net/core/netpoll.c index c499b5c69bed..f63a70be3cd0 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c | |||
@@ -816,11 +816,7 @@ void netpoll_cleanup(struct netpoll *np) | |||
816 | cancel_rearming_delayed_work(&npinfo->tx_work); | 816 | cancel_rearming_delayed_work(&npinfo->tx_work); |
817 | 817 | ||
818 | /* clean after last, unfinished work */ | 818 | /* clean after last, unfinished work */ |
819 | if (!skb_queue_empty(&npinfo->txq)) { | 819 | __skb_queue_purge(&npinfo->txq); |
820 | struct sk_buff *skb; | ||
821 | skb = __skb_dequeue(&npinfo->txq); | ||
822 | kfree_skb(skb); | ||
823 | } | ||
824 | kfree(npinfo); | 820 | kfree(npinfo); |
825 | np->dev->npinfo = NULL; | 821 | np->dev->npinfo = NULL; |
826 | } | 822 | } |