diff options
author | Eric Dumazet <edumazet@google.com> | 2024-03-29 15:32:03 +0000 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-04-01 21:27:58 -0700 |
commit | 1eeb5043573981f3a1278876515851b7f6b1df1b (patch) | |
tree | c4b91076956f365b6f145207d01020fda36f09c1 /net/dccp/ipv6.c | |
parent | 58169ec9c40309541509181e068177eab72e6caa (diff) | |
download | linux-stable-1eeb5043573981f3a1278876515851b7f6b1df1b.tar.gz linux-stable-1eeb5043573981f3a1278876515851b7f6b1df1b.tar.bz2 linux-stable-1eeb5043573981f3a1278876515851b7f6b1df1b.zip |
tcp/dccp: do not care about families in inet_twsk_purge()
We lost ability to unload ipv6 module a long time ago.
Instead of calling expensive inet_twsk_purge() twice,
we can handle all families in one round.
Also remove an extra line added in my prior patch,
per Kuniyuki Iwashima feedback.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Link: https://lore.kernel.org/netdev/20240327192934.6843-1-kuniyu@amazon.com/
Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Link: https://lore.kernel.org/r/20240329153203.345203-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/dccp/ipv6.c')
-rw-r--r-- | net/dccp/ipv6.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index ded07e09f813..c8ca703dc331 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c @@ -1119,15 +1119,9 @@ static void __net_exit dccp_v6_exit_net(struct net *net) inet_ctl_sock_destroy(pn->v6_ctl_sk); } -static void __net_exit dccp_v6_exit_batch(struct list_head *net_exit_list) -{ - inet_twsk_purge(&dccp_hashinfo, AF_INET6); -} - static struct pernet_operations dccp_v6_ops = { .init = dccp_v6_init_net, .exit = dccp_v6_exit_net, - .exit_batch = dccp_v6_exit_batch, .id = &dccp_v6_pernet_id, .size = sizeof(struct dccp_v6_pernet), }; |