summaryrefslogtreecommitdiff
path: root/net/core
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2024-04-10 04:28:10 +0300
committerJakub Kicinski <kuba@kernel.org>2024-04-11 05:27:32 +0300
commitd8415a165c43905ccf9ad7a4c7eaf6006b91a00b (patch)
treefe871fcfee202bd00a80a9ea6bd85f010f2592f8 /net/core
parent7cb31c46b9cc37a5e564667fe46daf9a35dbafdd (diff)
downloadlinux-d8415a165c43905ccf9ad7a4c7eaf6006b91a00b.tar.xz
net: use SKB_CONSUMED in skb_attempt_defer_free()
skb_attempt_defer_free() is used to free already processed skbs, so pass SKB_CONSUMED as the reason in kfree_skb_napi_cache(). Suggested-by: Jason Xing <kerneljasonxing@gmail.com> Suggested-by: Eric Dumazet <edumazet@google.com> Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Reviewed-by: Eric Dumazet <edumazet@google.com> Link: https://lore.kernel.org/r/bcf5dbdda79688b074ab7ae2238535840a6d3fc2.1712711977.git.asml.silence@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/skbuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 18612f255ef5..ab970ded8a7b 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -6983,7 +6983,7 @@ static void kfree_skb_napi_cache(struct sk_buff *skb)
}
local_bh_disable();
- __napi_kfree_skb(skb, SKB_DROP_REASON_NOT_SPECIFIED);
+ __napi_kfree_skb(skb, SKB_CONSUMED);
local_bh_enable();
}