diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-19 19:17:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 19:29:55 -0400 |
commit | c65c5131b349b08f3292b1cd10239cf376bfcb15 (patch) | |
tree | c5671adccfa9511bde2a5b7fb26bd1c2203df19b /net/ipv4/tcp_htcp.c | |
parent | 721e2629fa2167c0e5a9f10d704b1fee1621a8cb (diff) |
missed cong_avoid() instance
Removal of rtt argument in ->cong_avoid() had missed tcp_htcp.c
instance.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/ipv4/tcp_htcp.c')
-rw-r--r-- | net/ipv4/tcp_htcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_htcp.c b/net/ipv4/tcp_htcp.c index 632c05a75883..08a02e6045c9 100644 --- a/net/ipv4/tcp_htcp.c +++ b/net/ipv4/tcp_htcp.c | |||
@@ -225,7 +225,7 @@ static u32 htcp_recalc_ssthresh(struct sock *sk) | |||
225 | return max((tp->snd_cwnd * ca->beta) >> 7, 2U); | 225 | return max((tp->snd_cwnd * ca->beta) >> 7, 2U); |
226 | } | 226 | } |
227 | 227 | ||
228 | static void htcp_cong_avoid(struct sock *sk, u32 ack, s32 rtt, | 228 | static void htcp_cong_avoid(struct sock *sk, u32 ack, |
229 | u32 in_flight, int data_acked) | 229 | u32 in_flight, int data_acked) |
230 | { | 230 | { |
231 | struct tcp_sock *tp = tcp_sk(sk); | 231 | struct tcp_sock *tp = tcp_sk(sk); |