aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/sysctl_net_ipv4.c
diff options
context:
space:
mode:
authorNikolay Borisov <kernel@kyup.com>2016-02-03 02:46:55 -0500
committerDavid S. Miller <davem@davemloft.net>2016-02-07 14:35:11 -0500
commitc402d9beffb6141ab2e4d2ad8be71128803a28ca (patch)
treeb0ce35c5aed6135bc4d3f07643a8148715b5e679 /net/ipv4/sysctl_net_ipv4.c
parentc6214a97c86c660de4f7ddb8eed925192e646161 (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/ipv4/sysctl_net_ipv4.c')
-rw-r--r--net/ipv4/sysctl_net_ipv4.c14
1 files changed, 7 insertions, 7 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