diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-20 00:17:45 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 16:29:55 -0700 |
commit | c65c5131b349b08f3292b1cd10239cf376bfcb15 (patch) | |
tree | c5671adccfa9511bde2a5b7fb26bd1c2203df19b /net | |
parent | 721e2629fa2167c0e5a9f10d704b1fee1621a8cb (diff) | |
download | op-kernel-dev-c65c5131b349b08f3292b1cd10239cf376bfcb15.zip op-kernel-dev-c65c5131b349b08f3292b1cd10239cf376bfcb15.tar.gz |
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')
-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 632c05a..08a02e6 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) return max((tp->snd_cwnd * ca->beta) >> 7, 2U); } -static void htcp_cong_avoid(struct sock *sk, u32 ack, s32 rtt, +static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight, int data_acked) { struct tcp_sock *tp = tcp_sk(sk); |