aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@pobox.com>2005-11-11 04:43:47 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-11 09:21:28 -0800
commitc050970a257a4060e927e497a12323e961fcbadc (patch)
tree863e119dcd600226330e0112fe413649a2088d12 /net
parent[PATCH] Input: convert hdaps to dynamic input_dev allocation. (diff)
downloadlinux-dev-c050970a257a4060e927e497a12323e961fcbadc.tar.xz
linux-dev-c050970a257a4060e927e497a12323e961fcbadc.zip
[PATCH] TCP: fix vegas build
Recent TCP changes broke the build. Signed-off-by: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/tcp_vegas.c2
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,
/* 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;