netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] net/tcp_fastopen: remove obsolete extern
@ 2021-07-19  9:20 Eric Dumazet
  2021-07-19 15:43 ` Wei Wang
  2021-07-20 10:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Eric Dumazet @ 2021-07-19  9:20 UTC (permalink / raw)
  To: David S . Miller, Jakub Kicinski
  Cc: netdev, Eric Dumazet, Eric Dumazet, Haishuang Yan, Wei Wang,
	Yuchung Cheng, Neal Cardwell

From: Eric Dumazet <edumazet@google.com>

After cited commit, sysctl_tcp_fastopen_blackhole_timeout is no longer
a global variable.

Fixes: 3733be14a32b ("ipv4: Namespaceify tcp_fastopen_blackhole_timeout knob")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
Cc: Wei Wang <weiwan@google.com>
Cc: Yuchung Cheng <ycheng@google.com>
Cc: Neal Cardwell <ncardwell@google.com>
---
 include/net/tcp.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/net/tcp.h b/include/net/tcp.h
index 17df9b047ee46dabed8797246f99e1a2fd39c243..784d5c3ef1c5be0b54194711ff7f306d271d95c3 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -1709,7 +1709,6 @@ struct tcp_fastopen_context {
 	struct rcu_head	rcu;
 };
 
-extern unsigned int sysctl_tcp_fastopen_blackhole_timeout;
 void tcp_fastopen_active_disable(struct sock *sk);
 bool tcp_fastopen_active_should_disable(struct sock *sk);
 void tcp_fastopen_active_disable_ofo_check(struct sock *sk);
-- 
2.32.0.402.g57bb445576-goog


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net] net/tcp_fastopen: remove obsolete extern
  2021-07-19  9:20 [PATCH net] net/tcp_fastopen: remove obsolete extern Eric Dumazet
@ 2021-07-19 15:43 ` Wei Wang
  2021-07-20 10:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Wei Wang @ 2021-07-19 15:43 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: David S . Miller, Jakub Kicinski, netdev, Eric Dumazet,
	Haishuang Yan, Yuchung Cheng, Neal Cardwell

On Mon, Jul 19, 2021 at 2:20 AM Eric Dumazet <eric.dumazet@gmail.com> wrote:
>
> From: Eric Dumazet <edumazet@google.com>
>
> After cited commit, sysctl_tcp_fastopen_blackhole_timeout is no longer
> a global variable.
>
> Fixes: 3733be14a32b ("ipv4: Namespaceify tcp_fastopen_blackhole_timeout knob")
> Signed-off-by: Eric Dumazet <edumazet@google.com>
> Cc: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
> Cc: Wei Wang <weiwan@google.com>
> Cc: Yuchung Cheng <ycheng@google.com>
> Cc: Neal Cardwell <ncardwell@google.com>
> ---

Acked-by: Wei Wang <weiwan@google.com>

>  include/net/tcp.h | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/include/net/tcp.h b/include/net/tcp.h
> index 17df9b047ee46dabed8797246f99e1a2fd39c243..784d5c3ef1c5be0b54194711ff7f306d271d95c3 100644
> --- a/include/net/tcp.h
> +++ b/include/net/tcp.h
> @@ -1709,7 +1709,6 @@ struct tcp_fastopen_context {
>         struct rcu_head rcu;
>  };
>
> -extern unsigned int sysctl_tcp_fastopen_blackhole_timeout;
>  void tcp_fastopen_active_disable(struct sock *sk);
>  bool tcp_fastopen_active_should_disable(struct sock *sk);
>  void tcp_fastopen_active_disable_ofo_check(struct sock *sk);
> --
> 2.32.0.402.g57bb445576-goog
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net] net/tcp_fastopen: remove obsolete extern
  2021-07-19  9:20 [PATCH net] net/tcp_fastopen: remove obsolete extern Eric Dumazet
  2021-07-19 15:43 ` Wei Wang
@ 2021-07-20 10:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-07-20 10:30 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: davem, kuba, netdev, edumazet, yanhaishuang, weiwan, ycheng, ncardwell

Hello:

This patch was applied to netdev/net.git (refs/heads/master):

On Mon, 19 Jul 2021 02:20:28 -0700 you wrote:
> From: Eric Dumazet <edumazet@google.com>
> 
> After cited commit, sysctl_tcp_fastopen_blackhole_timeout is no longer
> a global variable.
> 
> Fixes: 3733be14a32b ("ipv4: Namespaceify tcp_fastopen_blackhole_timeout knob")
> Signed-off-by: Eric Dumazet <edumazet@google.com>
> Cc: Haishuang Yan <yanhaishuang@cmss.chinamobile.com>
> Cc: Wei Wang <weiwan@google.com>
> Cc: Yuchung Cheng <ycheng@google.com>
> Cc: Neal Cardwell <ncardwell@google.com>
> 
> [...]

Here is the summary with links:
  - [net] net/tcp_fastopen: remove obsolete extern
    https://git.kernel.org/netdev/net/c/749468760b95

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-07-20 10:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-19  9:20 [PATCH net] net/tcp_fastopen: remove obsolete extern Eric Dumazet
2021-07-19 15:43 ` Wei Wang
2021-07-20 10:30 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).