diff options
-rw-r--r-- | net/ipv4/tcp_vegas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_vegas.c b/net/ipv4/tcp_vegas.c index 4376814d29fb..b7d296a8ac6d 100644 --- a/net/ipv4/tcp_vegas.c +++ b/net/ipv4/tcp_vegas.c | |||
@@ -236,7 +236,7 @@ static void tcp_vegas_cong_avoid(struct sock *sk, u32 ack, | |||
236 | /* We don't have enough RTT samples to do the Vegas | 236 | /* We don't have enough RTT samples to do the Vegas |
237 | * calculation, so we'll behave like Reno. | 237 | * calculation, so we'll behave like Reno. |
238 | */ | 238 | */ |
239 | tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, cnt); | 239 | tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag); |
240 | } else { | 240 | } else { |
241 | u32 rtt, target_cwnd, diff; | 241 | u32 rtt, target_cwnd, diff; |
242 | 242 | ||