Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79433
b: refs/heads/master
c: ae3e0fc
h: refs/heads/master
i:
  79431: 02e7dff
v: v3
  • Loading branch information
Holger Schurig authored and David S. Miller committed Jan 28, 2008
1 parent 6182fb7 commit 597b64a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8ac919be0520b22d106b1d5f3e8f9b5c142089eb
refs/heads/master: ae3e0fcf901e4b7df87aef7ab39093e142a8de8b
5 changes: 4 additions & 1 deletion trunk/drivers/net/wireless/libertas/rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,10 @@ int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb)
priv->stats.rx_packets++;

skb->protocol = eth_type_trans(skb, dev);
netif_rx(skb);
if (in_interrupt())
netif_rx(skb);
else
netif_rx_ni(skb);

ret = 0;
done:
Expand Down

0 comments on commit 597b64a

Please sign in to comment.