ifb: fix a lockdep splat

After recent ifb changes, we must use lockless __skb_dequeue() since
lock is not anymore initialized.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Jamal Hadi Salim <hadi@cyberus.ca>
Cc: Changli Gao <xiaosuo@gmail.com>
Acked-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Eric Dumazet 2010-12-15 23:52:55 +00:00 committed by David S. Miller
parent 0d0b16727f
commit 7edc3453e5
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ static void ri_tasklet(unsigned long dev)
}
}
while ((skb = skb_dequeue(&dp->tq)) != NULL) {
while ((skb = __skb_dequeue(&dp->tq)) != NULL) {
u32 from = G_TC_FROM(skb->tc_verd);
skb->tc_verd = 0;