Skip to content

Commit

Permalink
[PATCH] TCP: fix vegas build
Browse files Browse the repository at this point in the history
Recent TCP changes broke the build.

Signed-off-by: Jeff Garzik <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
jgarzik authored and Linus Torvalds committed Nov 11, 2005
1 parent d12eb7e commit c050970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/tcp_vegas.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ static void tcp_vegas_cong_avoid(struct sock *sk, u32 ack,
/* We don't have enough RTT samples to do the Vegas
* calculation, so we'll behave like Reno.
*/
tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, cnt);
tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag);
} else {
u32 rtt, target_cwnd, diff;

Expand Down

0 comments on commit c050970

Please sign in to comment.