diff options
| author | Nikolay Borisov <[email protected]> | 2016-02-03 07:46:54 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2016-02-07 19:35:11 +0000 |
| commit | c6214a97c86c660de4f7ddb8eed925192e646161 (patch) | |
| tree | 56f1a922184a1f687ec7736ab0adf2e4f2caade6 /net/ipv4/tcp_output.c | |
| parent | ipv4: Namespaceify tcp_retries1 sysctl knob (diff) | |
| download | kernel-c6214a97c86c660de4f7ddb8eed925192e646161.tar.gz kernel-c6214a97c86c660de4f7ddb8eed925192e646161.zip | |
ipv4: Namespaceify tcp_retries2 sysctl knob
Signed-off-by: Nikolay Borisov <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_output.c')
| -rw-r--r-- | net/ipv4/tcp_output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index fda379cd600d..7beb3f688b7a 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -3476,6 +3476,7 @@ void tcp_send_probe0(struct sock *sk) { struct inet_connection_sock *icsk = inet_csk(sk); struct tcp_sock *tp = tcp_sk(sk); + struct net *net = sock_net(sk); unsigned long probe_max; int err; @@ -3489,7 +3490,7 @@ void tcp_send_probe0(struct sock *sk) } if (err <= 0) { - if (icsk->icsk_backoff < sysctl_tcp_retries2) + if (icsk->icsk_backoff < net->ipv4.sysctl_tcp_retries2) icsk->icsk_backoff++; icsk->icsk_probes_out++; probe_max = TCP_RTO_MAX; |
