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 /net/ipv4/tcp_scalable.c | |
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 'net/ipv4/tcp_scalable.c')
-rw-r--r-- | net/ipv4/tcp_scalable.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/tcp_scalable.c b/net/ipv4/tcp_scalable.c index 19ea6c2951f3..0ac50836da4d 100644 --- a/net/ipv4/tcp_scalable.c +++ b/net/ipv4/tcp_scalable.c | |||
@@ -39,7 +39,6 @@ static u32 tcp_scalable_ssthresh(struct sock *sk) | |||
39 | static struct tcp_congestion_ops tcp_scalable __read_mostly = { | 39 | static struct tcp_congestion_ops tcp_scalable __read_mostly = { |
40 | .ssthresh = tcp_scalable_ssthresh, | 40 | .ssthresh = tcp_scalable_ssthresh, |
41 | .cong_avoid = tcp_scalable_cong_avoid, | 41 | .cong_avoid = tcp_scalable_cong_avoid, |
42 | .min_cwnd = tcp_reno_min_cwnd, | ||
43 | 42 | ||
44 | .owner = THIS_MODULE, | 43 | .owner = THIS_MODULE, |
45 | .name = "scalable", | 44 | .name = "scalable", |