diff options
author | John Heffner <jheffner@psc.edu> | 2007-03-25 22:21:45 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:23:19 -0400 |
commit | 886236c1247ab5e2ad9c73f6e9a652e3ae3c8b07 (patch) | |
tree | f0ab2d6f6b6c98c6042be100db752c2d492669ae /net/ipv4/sysctl_net_ipv4.c | |
parent | 5ef814753eb810d900fbd77af7c87f6d04f0e551 (diff) |
[TCP]: Add RFC3742 Limited Slow-Start, controlled by variable sysctl_tcp_max_ssthresh.
Signed-off-by: John Heffner <jheffner@psc.edu>
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 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c index 0aa304711a96..d68effe98e8d 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c | |||
@@ -803,6 +803,14 @@ ctl_table ipv4_table[] = { | |||
803 | .proc_handler = &proc_allowed_congestion_control, | 803 | .proc_handler = &proc_allowed_congestion_control, |
804 | .strategy = &strategy_allowed_congestion_control, | 804 | .strategy = &strategy_allowed_congestion_control, |
805 | }, | 805 | }, |
806 | { | ||
807 | .ctl_name = NET_TCP_MAX_SSTHRESH, | ||
808 | .procname = "tcp_max_ssthresh", | ||
809 | .data = &sysctl_tcp_max_ssthresh, | ||
810 | .maxlen = sizeof(int), | ||
811 | .mode = 0644, | ||
812 | .proc_handler = &proc_dointvec, | ||
813 | }, | ||
806 | { .ctl_name = 0 } | 814 | { .ctl_name = 0 } |
807 | }; | 815 | }; |
808 | 816 | ||