diff options
author | Eric Dumazet <edumazet@google.com> | 2017-10-27 07:55:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-27 10:35:43 +0300 |
commit | af9b69a7a6ca6b817e8d6f416e7aa5b2a5bf1d91 (patch) | |
tree | e7f0fa12f6cbaaa16014e0fa462128ab76877626 /net/ipv4/sysctl_net_ipv4.c | |
parent | 94f0893e0c27219f4a726932618505aab6795973 (diff) | |
download | linux-af9b69a7a6ca6b817e8d6f416e7aa5b2a5bf1d91.tar.xz |
tcp: Namespace-ify sysctl_tcp_frto
Signed-off-by: Eric Dumazet <edumazet@google.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.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c index a95123e1e7da..f1bcb9b7e082 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c @@ -438,13 +438,6 @@ static struct ctl_table ipv4_table[] = { .extra1 = &one, }, { - .procname = "tcp_frto", - .data = &sysctl_tcp_frto, - .maxlen = sizeof(int), - .mode = 0644, - .proc_handler = proc_dointvec - }, - { .procname = "tcp_min_rtt_wlen", .data = &sysctl_tcp_min_rtt_wlen, .maxlen = sizeof(int), @@ -1145,6 +1138,13 @@ static struct ctl_table ipv4_net_table[] = { .extra1 = &tcp_adv_win_scale_min, .extra2 = &tcp_adv_win_scale_max, }, + { + .procname = "tcp_frto", + .data = &init_net.ipv4.sysctl_tcp_frto, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = proc_dointvec + }, { } }; |