mirror of
https://github.com/torvalds/linux.git
synced 2024-12-12 14:12:51 +00:00
usbnet: Use skb_queue_walk_safe() instead of by-hand implementation.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
953f551756
commit
83bfba5fca
@ -512,14 +512,13 @@ static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q)
|
||||
int count = 0;
|
||||
|
||||
spin_lock_irqsave (&q->lock, flags);
|
||||
for (skb = q->next; skb != (struct sk_buff *) q; skb = skbnext) {
|
||||
skb_queue_walk_safe(q, skb, skbnext) {
|
||||
struct skb_data *entry;
|
||||
struct urb *urb;
|
||||
int retval;
|
||||
|
||||
entry = (struct skb_data *) skb->cb;
|
||||
urb = entry->urb;
|
||||
skbnext = skb->next;
|
||||
|
||||
// during some PM-driven resume scenarios,
|
||||
// these (async) unlinks complete immediately
|
||||
|
Loading…
Reference in New Issue
Block a user