diff options
Diffstat (limited to 'net/ipv4/tcp_hybla.c')
-rw-r--r-- | net/ipv4/tcp_hybla.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_hybla.c b/net/ipv4/tcp_hybla.c index 59e691d26f64..e5be35117223 100644 --- a/net/ipv4/tcp_hybla.c +++ b/net/ipv4/tcp_hybla.c | |||
@@ -144,7 +144,7 @@ static void hybla_cong_avoid(struct sock *sk, u32 ack, u32 rtt, | |||
144 | ca->snd_cwnd_cents += odd; | 144 | ca->snd_cwnd_cents += odd; |
145 | 145 | ||
146 | /* check when fractions goes >=128 and increase cwnd by 1. */ | 146 | /* check when fractions goes >=128 and increase cwnd by 1. */ |
147 | while(ca->snd_cwnd_cents >= 128) { | 147 | while (ca->snd_cwnd_cents >= 128) { |
148 | tp->snd_cwnd++; | 148 | tp->snd_cwnd++; |
149 | ca->snd_cwnd_cents -= 128; | 149 | ca->snd_cwnd_cents -= 128; |
150 | tp->snd_cwnd_cnt = 0; | 150 | tp->snd_cwnd_cnt = 0; |