NETFRONT: Use __skb_queue_purge()

Use standard routine for queue purging.

Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
Wang Chen 2008-05-22 18:09:06 +08:00 committed by Jeff Garzik
parent 288369cc25
commit 56cfe5d028
1 changed files with 2 additions and 4 deletions

View File

@ -946,8 +946,7 @@ err:
work_done++; work_done++;
} }
while ((skb = __skb_dequeue(&errq))) __skb_queue_purge(&errq);
kfree_skb(skb);
work_done -= handle_incoming_queue(dev, &rxq); work_done -= handle_incoming_queue(dev, &rxq);
@ -1079,8 +1078,7 @@ static void xennet_release_rx_bufs(struct netfront_info *np)
} }
} }
while ((skb = __skb_dequeue(&free_list)) != NULL) __skb_queue_purge(&free_list);
dev_kfree_skb(skb);
spin_unlock_bh(&np->rx_lock); spin_unlock_bh(&np->rx_lock);
} }