]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
tcp: Remove hashinfo test for inet6?_lookup_run_sk_lookup().
authorKuniyuki Iwashima <kuniyu@google.com>
Fri, 22 Aug 2025 19:06:58 +0000 (19:06 +0000)
committerJakub Kicinski <kuba@kernel.org>
Tue, 26 Aug 2025 00:53:35 +0000 (17:53 -0700)
Commit 6c886db2e78c ("net: remove duplicate sk_lookup helpers")
started to check if hashinfo == net->ipv4.tcp_death_row.hashinfo
in __inet_lookup_listener() and inet6_lookup_listener() and
stopped invoking BPF sk_lookup prog for DCCP.

DCCP has gone and the condition is always true.

Let's remove the hashinfo test.

Signed-off-by: Kuniyuki Iwashima <kuniyu@google.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Link: https://patch.msgid.link/20250822190803.540788-4-kuniyu@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/ipv4/inet_hashtables.c
net/ipv6/inet6_hashtables.c

index fef71dd725217a4c936950dcb69c3100cc6ef4f0..374adb8a2640d78514df831f83806a312750c3c2 100644 (file)
@@ -436,8 +436,7 @@ struct sock *__inet_lookup_listener(const struct net *net,
        unsigned int hash2;
 
        /* Lookup redirect from BPF */
-       if (static_branch_unlikely(&bpf_sk_lookup_enabled) &&
-           hashinfo == net->ipv4.tcp_death_row.hashinfo) {
+       if (static_branch_unlikely(&bpf_sk_lookup_enabled)) {
                result = inet_lookup_run_sk_lookup(net, IPPROTO_TCP, skb, doff,
                                                   saddr, sport, daddr, hnum, dif,
                                                   inet_ehashfn);
index dbb10774764ac8187727c41fb3e92420ff544833..d6c3db31dcab2f08e494f47179b4103527b0b267 100644 (file)
@@ -211,8 +211,7 @@ struct sock *inet6_lookup_listener(const struct net *net,
        unsigned int hash2;
 
        /* Lookup redirect from BPF */
-       if (static_branch_unlikely(&bpf_sk_lookup_enabled) &&
-           hashinfo == net->ipv4.tcp_death_row.hashinfo) {
+       if (static_branch_unlikely(&bpf_sk_lookup_enabled)) {
                result = inet6_lookup_run_sk_lookup(net, IPPROTO_TCP, skb, doff,
                                                    saddr, sport, daddr, hnum, dif,
                                                    inet6_ehashfn);