diff options
author | Stanislav Fomichev <stfomichev@yandex-team.ru> | 2014-02-12 08:35:21 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-13 18:22:34 -0500 |
commit | 45f7435968363816f8fc4c6abef692808534140d (patch) | |
tree | a4fa1938204a2967ceb54141927da8f8c57ff214 /Documentation/networking | |
parent | f93f160b5a3546b6d3143894f63a326442071e48 (diff) |
tcp: remove unused min_cwnd member of tcp_congestion_ops
Commit 684bad110757 "tcp: use PRR to reduce cwin in CWR state" removed all
calls to min_cwnd, so we can safely remove it.
Also, remove tcp_reno_min_cwnd because it was only used for min_cwnd.
Signed-off-by: Stanislav Fomichev <stfomichev@yandex-team.ru>
Acked-by: Yuchung Cheng <ycheng@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation/networking')
-rw-r--r-- | Documentation/networking/tcp.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/networking/tcp.txt b/Documentation/networking/tcp.txt index 7d11bb5dc30a..bdc4c0db51e1 100644 --- a/Documentation/networking/tcp.txt +++ b/Documentation/networking/tcp.txt | |||
@@ -30,7 +30,7 @@ A congestion control mechanism can be registered through functions in | |||
30 | tcp_cong.c. The functions used by the congestion control mechanism are | 30 | tcp_cong.c. The functions used by the congestion control mechanism are |
31 | registered via passing a tcp_congestion_ops struct to | 31 | registered via passing a tcp_congestion_ops struct to |
32 | tcp_register_congestion_control. As a minimum name, ssthresh, | 32 | tcp_register_congestion_control. As a minimum name, ssthresh, |
33 | cong_avoid, min_cwnd must be valid. | 33 | cong_avoid must be valid. |
34 | 34 | ||
35 | Private data for a congestion control mechanism is stored in tp->ca_priv. | 35 | Private data for a congestion control mechanism is stored in tp->ca_priv. |
36 | tcp_ca(tp) returns a pointer to this space. This is preallocated space - it | 36 | tcp_ca(tp) returns a pointer to this space. This is preallocated space - it |