Skip to content

Commit

Permalink
ifb: use netif_receive_skb() instead of netif_rx()
Browse files Browse the repository at this point in the history
In ri_tasklet(), we run from softirq, so can directly handle packet
through netif_receive_skb() instead of netif_rx().
There is no risk of recursion.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Acked-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Dec 20, 2010
1 parent d1ed113 commit 1a75972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/ifb.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static void ri_tasklet(unsigned long dev)
dev_queue_xmit(skb);
} else if (from & AT_INGRESS) {
skb_pull(skb, skb->dev->hard_header_len);
netif_rx(skb);
netif_receive_skb(skb);
} else
BUG();
}
Expand Down

0 comments on commit 1a75972

Please sign in to comment.