diff options
author | Eric Dumazet <edumazet@google.com> | 2017-10-27 07:47:24 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-28 19:24:38 +0900 |
commit | ceef9ab6be7234f9e49f79769e0da88d1dccfcc7 (patch) | |
tree | f512f5ebf5cc730c61fe70b37d812fd88b16b331 /net/ipv4/sysctl_net_ipv4.c | |
parent | d06a99045837d3f4d5431793c4c390b0daf2a08d (diff) | |
download | linux-ceef9ab6be7234f9e49f79769e0da88d1dccfcc7.tar.gz linux-ceef9ab6be7234f9e49f79769e0da88d1dccfcc7.tar.bz2 linux-ceef9ab6be7234f9e49f79769e0da88d1dccfcc7.zip |
tcp: Namespace-ify sysctl_tcp_workaround_signed_windows
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 a053cacb8290..3ae9012a4979 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c @@ -458,13 +458,6 @@ static struct ctl_table ipv4_table[] = { .proc_handler = proc_tcp_congestion_control, }, { - .procname = "tcp_workaround_signed_windows", - .data = &sysctl_tcp_workaround_signed_windows, - .maxlen = sizeof(int), - .mode = 0644, - .proc_handler = proc_dointvec - }, - { .procname = "tcp_limit_output_bytes", .data = &sysctl_tcp_limit_output_bytes, .maxlen = sizeof(int), @@ -1145,6 +1138,13 @@ static struct ctl_table ipv4_net_table[] = { .mode = 0644, .proc_handler = proc_dointvec, }, + { + .procname = "tcp_workaround_signed_windows", + .data = &init_net.ipv4.sysctl_tcp_workaround_signed_windows, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = proc_dointvec + }, { } }; |