netlink: dont drop packet but consume it
When we need to clone skb, we dont drop a packet. Call consume_skb() to not confuse dropwatch. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
9ff264492f
commit
8460c00f6e
@@ -866,7 +866,7 @@ static struct sk_buff *netlink_trim(struct sk_buff *skb, gfp_t allocation)
|
|||||||
struct sk_buff *nskb = skb_clone(skb, allocation);
|
struct sk_buff *nskb = skb_clone(skb, allocation);
|
||||||
if (!nskb)
|
if (!nskb)
|
||||||
return skb;
|
return skb;
|
||||||
kfree_skb(skb);
|
consume_skb(skb);
|
||||||
skb = nskb;
|
skb = nskb;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user