diff options
author | Yuchung Cheng <ycheng@google.com> | 2015-07-09 22:16:29 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-09 23:22:52 +0200 |
commit | 071d5080e33d6f24139e4213c2d9f97a2c21b602 (patch) | |
tree | 2dad35b407a5aef707769358a0cc61c43abf33fa /net/ipv4/tcp_illinois.c | |
parent | net: skb_defer_rx_timestamp should check for phydev before setting up classify (diff) | |
download | linux-071d5080e33d6f24139e4213c2d9f97a2c21b602.tar.xz linux-071d5080e33d6f24139e4213c2d9f97a2c21b602.zip |
tcp: add tcp_in_slow_start helper
Add a helper to test the slow start condition in various congestion
control modules and other places. This is to prepare a slight improvement
in policy as to exactly when to slow start.
Signed-off-by: Yuchung Cheng <ycheng@google.com>
Signed-off-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Nandita Dukkipati <nanditad@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_illinois.c')
-rw-r--r-- | net/ipv4/tcp_illinois.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_illinois.c b/net/ipv4/tcp_illinois.c index f71002e4db0b..2ab9bbb6faff 100644 --- a/net/ipv4/tcp_illinois.c +++ b/net/ipv4/tcp_illinois.c @@ -268,7 +268,7 @@ static void tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 acked) return; /* In slow start */ - if (tp->snd_cwnd <= tp->snd_ssthresh) + if (tcp_in_slow_start(tp)) tcp_slow_start(tp, acked); else { |