X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=net%2Fipv4%2Ftcp_lp.c;h=80e140e3ec2d6db57529fc73494dc47600a48501;hb=a9417357cff6027f9d6b1740f821baa59f2381f4;hp=e49836ce012e768a4586432f7b62be9a0b6e5140;hpb=6a91d25c0243bf20356e51cc5dbb821cc8cc129b;p=linux-2.6 diff --git a/net/ipv4/tcp_lp.c b/net/ipv4/tcp_lp.c index e49836ce01..80e140e3ec 100644 --- a/net/ipv4/tcp_lp.c +++ b/net/ipv4/tcp_lp.c @@ -115,13 +115,12 @@ static void tcp_lp_init(struct sock *sk) * Will only call newReno CA when away from inference. * From TCP-LP's paper, this will be handled in additive increasement. */ -static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, - int flag) +static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight, int flag) { struct lp *lp = inet_csk_ca(sk); if (!(lp->flag & LP_WITHIN_INF)) - tcp_reno_cong_avoid(sk, ack, rtt, in_flight, flag); + tcp_reno_cong_avoid(sk, ack, in_flight, flag); } /**