diff options
| author | Eric Dumazet <edumazet@google.com> | 2023-02-23 08:38:45 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-03-11 16:26:52 +0100 |
| commit | 30b26278b4b51a231ccf6cee6d4388b7bab3f617 (patch) | |
| tree | 46dc144cd720e2e8facd0c2ec9a9628d512fb1f8 | |
| parent | 8df5f3b50d9ce523251edf9cd0470963be20004b (diff) | |
| download | linux-30b26278b4b51a231ccf6cee6d4388b7bab3f617.tar.gz linux-30b26278b4b51a231ccf6cee6d4388b7bab3f617.tar.bz2 linux-30b26278b4b51a231ccf6cee6d4388b7bab3f617.zip | |
net: fix __dev_kfree_skb_any() vs drop monitor
[ Upstream commit ac3ad19584b26fae9ac86e4faebe790becc74491 ]
dev_kfree_skb() is aliased to consume_skb().
When a driver is dropping a packet by calling dev_kfree_skb_any()
we should propagate the drop reason instead of pretending
the packet was consumed.
Note: Now we have enum skb_drop_reason we could remove
enum skb_free_reason (for linux-6.4)
v2: added an unlikely(), suggested by Yunsheng Lin.
Fixes: e6247027e517 ("net: introduce dev_consume_skb_any()")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Yunsheng Lin <linyunsheng@huawei.com>
Reviewed-by: Yunsheng Lin <linyunsheng@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
| -rw-r--r-- | net/core/dev.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index 4741c239af17..86f762a1cf7a 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2525,8 +2525,10 @@ void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason) { if (in_irq() || irqs_disabled()) __dev_kfree_skb_irq(skb, reason); + else if (unlikely(reason == SKB_REASON_DROPPED)) + kfree_skb(skb); else - dev_kfree_skb(skb); + consume_skb(skb); } EXPORT_SYMBOL(__dev_kfree_skb_any); |
