diff options
author | Nikolay Borisov <kernel@kyup.com> | 2016-02-03 02:46:55 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-07 14:35:11 -0500 |
commit | c402d9beffb6141ab2e4d2ad8be71128803a28ca (patch) | |
tree | b0ce35c5aed6135bc4d3f07643a8148715b5e679 /net | |
parent | c6214a97c86c660de4f7ddb8eed925192e646161 (diff) |
ipv4: Namespaceify tcp_orphan_retries sysctl knob
Signed-off-by: Nikolay Borisov <kernel@kyup.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/sysctl_net_ipv4.c | 14 | ||||
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 1 | ||||
-rw-r--r-- | net/ipv4/tcp_timer.c | 3 |
3 files changed, 9 insertions, 9 deletions
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c index 8e339d43619c..b7af6336985f 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c | |||
@@ -420,13 +420,6 @@ static struct ctl_table ipv4_table[] = { | |||
420 | .proc_handler = proc_dointvec_jiffies, | 420 | .proc_handler = proc_dointvec_jiffies, |
421 | }, | 421 | }, |
422 | { | 422 | { |
423 | .procname = "tcp_orphan_retries", | ||
424 | .data = &sysctl_tcp_orphan_retries, | ||
425 | .maxlen = sizeof(int), | ||
426 | .mode = 0644, | ||
427 | .proc_handler = proc_dointvec | ||
428 | }, | ||
429 | { | ||
430 | .procname = "tcp_fack", | 423 | .procname = "tcp_fack", |
431 | .data = &sysctl_tcp_fack, | 424 | .data = &sysctl_tcp_fack, |
432 | .maxlen = sizeof(int), | 425 | .maxlen = sizeof(int), |
@@ -960,6 +953,13 @@ static struct ctl_table ipv4_net_table[] = { | |||
960 | .mode = 0644, | 953 | .mode = 0644, |
961 | .proc_handler = proc_dointvec | 954 | .proc_handler = proc_dointvec |
962 | }, | 955 | }, |
956 | { | ||
957 | .procname = "tcp_orphan_retries", | ||
958 | .data = &init_net.ipv4.sysctl_tcp_orphan_retries, | ||
959 | .maxlen = sizeof(int), | ||
960 | .mode = 0644, | ||
961 | .proc_handler = proc_dointvec | ||
962 | }, | ||
963 | { } | 963 | { } |
964 | }; | 964 | }; |
965 | 965 | ||
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 0710e6108a5e..1240dd62eee1 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -2393,6 +2393,7 @@ static int __net_init tcp_sk_init(struct net *net) | |||
2393 | net->ipv4.sysctl_tcp_reordering = TCP_FASTRETRANS_THRESH; | 2393 | net->ipv4.sysctl_tcp_reordering = TCP_FASTRETRANS_THRESH; |
2394 | net->ipv4.sysctl_tcp_retries1 = TCP_RETR1; | 2394 | net->ipv4.sysctl_tcp_retries1 = TCP_RETR1; |
2395 | net->ipv4.sysctl_tcp_retries2 = TCP_RETR2; | 2395 | net->ipv4.sysctl_tcp_retries2 = TCP_RETR2; |
2396 | net->ipv4.sysctl_tcp_orphan_retries = 0; | ||
2396 | 2397 | ||
2397 | return 0; | 2398 | return 0; |
2398 | fail: | 2399 | fail: |
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index 09f4e0297e56..49bc474f8e35 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <linux/gfp.h> | 22 | #include <linux/gfp.h> |
23 | #include <net/tcp.h> | 23 | #include <net/tcp.h> |
24 | 24 | ||
25 | int sysctl_tcp_orphan_retries __read_mostly; | ||
26 | int sysctl_tcp_thin_linear_timeouts __read_mostly; | 25 | int sysctl_tcp_thin_linear_timeouts __read_mostly; |
27 | 26 | ||
28 | static void tcp_write_err(struct sock *sk) | 27 | static void tcp_write_err(struct sock *sk) |
@@ -78,7 +77,7 @@ static int tcp_out_of_resources(struct sock *sk, bool do_reset) | |||
78 | /* Calculate maximal number or retries on an orphaned socket. */ | 77 | /* Calculate maximal number or retries on an orphaned socket. */ |
79 | static int tcp_orphan_retries(struct sock *sk, bool alive) | 78 | static int tcp_orphan_retries(struct sock *sk, bool alive) |
80 | { | 79 | { |
81 | int retries = sysctl_tcp_orphan_retries; /* May be zero. */ | 80 | int retries = sock_net(sk)->ipv4.sysctl_tcp_orphan_retries; /* May be zero. */ |
82 | 81 | ||
83 | /* We know from an ICMP that something is wrong. */ | 82 | /* We know from an ICMP that something is wrong. */ |
84 | if (sk->sk_err_soft && !alive) | 83 | if (sk->sk_err_soft && !alive) |