Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 27502
b: refs/heads/master
c: 8f182b4
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed Jun 18, 2006
1 parent c1d5bad commit 9a47b54
Show file tree
Hide file tree
Showing 2 changed files with 4 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: 23dbe7912dad6be71bb9e69cb819d05e2442d362
refs/heads/master: 8f182b494f87799d6ae20a1401825c516da46081
4 changes: 3 additions & 1 deletion trunk/net/llc/llc_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,10 @@ int llc_rcv(struct sk_buff *skb, struct net_device *dev,
*/
rcv = rcu_dereference(sap->rcv_func);
if (rcv) {
struct sk_buff *cskb = skb_clone(skb, GFP_ATOMIC);
if (cskb)
rcv(cskb, dev, pt, orig_dev);
rcv(skb, dev, pt, orig_dev);
goto out_put;
}
dest = llc_pdu_type(skb);
if (unlikely(!dest || !llc_type_handlers[dest - 1]))
Expand Down

0 comments on commit 9a47b54

Please sign in to comment.