]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
tcp: gro: inline tcp_gro_pull_header()
authorEric Dumazet <edumazet@google.com>
Thu, 13 Nov 2025 14:03:57 +0000 (14:03 +0000)
committerJakub Kicinski <kuba@kernel.org>
Sat, 15 Nov 2025 02:00:08 +0000 (18:00 -0800)
tcp_gro_pull_header() is used in GRO fast path, inline it.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Link: https://patch.msgid.link/20251113140358.58242-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
include/net/gro.h
include/net/tcp.h
net/ipv4/tcp_offload.c

index e3affb2e2ca8b2c89a9ffd6f7fb1219a42200ac3..b65f631c521d7d9741ef86781add0038c9ce4055 100644 (file)
@@ -593,4 +593,31 @@ static inline void inet6_get_iif_sdif(const struct sk_buff *skb, int *iif, int *
 struct packet_offload *gro_find_receive_by_type(__be16 type);
 struct packet_offload *gro_find_complete_by_type(__be16 type);
 
+static inline struct tcphdr *tcp_gro_pull_header(struct sk_buff *skb)
+{
+       unsigned int thlen, hlen, off;
+       struct tcphdr *th;
+
+       off = skb_gro_offset(skb);
+       hlen = off + sizeof(*th);
+       th = skb_gro_header(skb, hlen, off);
+       if (unlikely(!th))
+               return NULL;
+
+       thlen = th->doff * 4;
+       if (unlikely(thlen < sizeof(*th)))
+               return NULL;
+
+       hlen = off + thlen;
+       if (!skb_gro_may_pull(skb, hlen)) {
+               th = skb_gro_header_slow(skb, hlen, off);
+               if (unlikely(!th))
+                       return NULL;
+       }
+
+       skb_gro_pull(skb, thlen);
+
+       return th;
+}
+
 #endif /* _NET_GRO_H */
index 4833ec7903eca45cd31bb4ab023a8d326ed8b436..0deb5e9dd9114641468f26696b086b8261a67f60 100644 (file)
@@ -2313,7 +2313,6 @@ void tcp_v4_destroy_sock(struct sock *sk);
 
 struct sk_buff *tcp_gso_segment(struct sk_buff *skb,
                                netdev_features_t features);
-struct tcphdr *tcp_gro_pull_header(struct sk_buff *skb);
 struct sk_buff *tcp_gro_lookup(struct list_head *head, struct tcphdr *th);
 struct sk_buff *tcp_gro_receive(struct list_head *head, struct sk_buff *skb,
                                struct tcphdr *th);
index 2cb93da93abc2922fc347f4d62093741eb17c9d8..fdda18b1abda0f69226f6b59cec6d7d51b53555b 100644 (file)
@@ -282,33 +282,6 @@ struct sk_buff *tcp_gro_lookup(struct list_head *head, struct tcphdr *th)
        return NULL;
 }
 
-struct tcphdr *tcp_gro_pull_header(struct sk_buff *skb)
-{
-       unsigned int thlen, hlen, off;
-       struct tcphdr *th;
-
-       off = skb_gro_offset(skb);
-       hlen = off + sizeof(*th);
-       th = skb_gro_header(skb, hlen, off);
-       if (unlikely(!th))
-               return NULL;
-
-       thlen = th->doff * 4;
-       if (thlen < sizeof(*th))
-               return NULL;
-
-       hlen = off + thlen;
-       if (!skb_gro_may_pull(skb, hlen)) {
-               th = skb_gro_header_slow(skb, hlen, off);
-               if (unlikely(!th))
-                       return NULL;
-       }
-
-       skb_gro_pull(skb, thlen);
-
-       return th;
-}
-
 struct sk_buff *tcp_gro_receive(struct list_head *head, struct sk_buff *skb,
                                struct tcphdr *th)
 {