mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 17:30:53 +07:00
[LLC]: Fix double receive of SKB.
Oops fix from Stephen: remove duplicate rcv() calls. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c45fb1089e
commit
2f45c340e0
@ -176,7 +176,6 @@ int llc_rcv(struct sk_buff *skb, struct net_device *dev,
|
||||
struct sk_buff *cskb = skb_clone(skb, GFP_ATOMIC);
|
||||
if (cskb)
|
||||
rcv(cskb, dev, pt, orig_dev);
|
||||
rcv(skb, dev, pt, orig_dev);
|
||||
}
|
||||
dest = llc_pdu_type(skb);
|
||||
if (unlikely(!dest || !llc_type_handlers[dest - 1]))
|
||||
|
Loading…
Reference in New Issue
Block a user