diff options
author | Eric Dumazet <edumazet@google.com> | 2024-03-07 12:34:46 +0000 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-03-08 11:38:45 -0800 |
commit | 1cface552a5b5f6e53a855de1a503ff958e2e253 (patch) | |
tree | b645765112af7b170abdac469f17ca0cf2955135 /net/core/skbuff.c | |
parent | 75c2946db360e625f1447a37f47dbbb38b1dd478 (diff) | |
download | linux-stable-1cface552a5b5f6e53a855de1a503ff958e2e253.tar.gz linux-stable-1cface552a5b5f6e53a855de1a503ff958e2e253.tar.bz2 linux-stable-1cface552a5b5f6e53a855de1a503ff958e2e253.zip |
net: add skb_data_unref() helper
Similar to skb_unref(), add skb_data_unref() to save an expensive
atomic operation (and cache line dirtying) when last reference
on shinfo->dataref is released.
I saw this opportunity on hosts with RAW sockets accidentally
bound to UDP protocol, forcing an skb_clone() on all received packets.
These RAW sockets had their receive queue full, so all clone
packets were immediately dropped.
When UDP recvmsg() consumes later the original skb, skb_release_data()
is hitting atomic_sub_return() quite badly, because skb->clone
has been set permanently.
Note that this patch helps TCP TX performance, because
TCP stack also use (fast) clones.
This means that at least one of the two packets (the main skb or
its clone) will no longer have to perform this atomic operation
in skb_release_data().
Signed-off-by: Eric Dumazet <edumazet@google.com>
Link: https://lore.kernel.org/r/20240307123446.2302230-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/core/skbuff.c')
-rw-r--r-- | net/core/skbuff.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 766219011aea..b99127712e67 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -1115,9 +1115,7 @@ static void skb_release_data(struct sk_buff *skb, enum skb_drop_reason reason, struct skb_shared_info *shinfo = skb_shinfo(skb); int i; - if (skb->cloned && - atomic_sub_return(skb->nohdr ? (1 << SKB_DATAREF_SHIFT) + 1 : 1, - &shinfo->dataref)) + if (!skb_data_unref(skb, shinfo)) goto exit; if (skb_zcopy(skb)) { |