You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
packet: Fix leak in pre-defrag support.
When we clone the SKB, we forget about the original one. Avoid this problem by using skb_share_check(). Reported-by: Penttilä Mika <mika.penttila@ixonos.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -476,7 +476,7 @@ static struct sk_buff *fanout_check_defrag(struct sk_buff *skb)
|
||||
return skb;
|
||||
|
||||
if (ip_is_fragment(ip_hdr(skb))) {
|
||||
skb = skb_clone(skb, GFP_ATOMIC);
|
||||
skb = skb_share_check(skb, GFP_ATOMIC);
|
||||
if (skb) {
|
||||
if (pskb_trim_rcsum(skb, len))
|
||||
return skb;
|
||||
|
||||
Reference in New Issue
Block a user