diff options
author | Eric Dumazet <edumazet@google.com> | 2024-05-07 19:41:40 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-05-10 06:25:55 +0300 |
commit | 383eed2de529287337d9153a5084d4291a7c69f2 (patch) | |
tree | c9777ab7de71b12a64be8e9c4ec188314b4b0d65 /net/ipv6/tcp_ipv6.c | |
parent | 33fb988b67050d9bb512f77f08453fa00088943c (diff) | |
download | linux-383eed2de529287337d9153a5084d4291a7c69f2.tar.xz |
tcp: get rid of twsk_unique()
DCCP is going away soon, and had no twsk_unique() method.
We can directly call tcp_twsk_unique() for TCP sockets.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Link: https://lore.kernel.org/r/20240507164140.940547-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 37201c4fb393..7f6693e794bd 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c @@ -2049,7 +2049,6 @@ void tcp_v6_early_demux(struct sk_buff *skb) static struct timewait_sock_ops tcp6_timewait_sock_ops = { .twsk_obj_size = sizeof(struct tcp6_timewait_sock), - .twsk_unique = tcp_twsk_unique, .twsk_destructor = tcp_twsk_destructor, }; |