Lines Matching defs:acked
390 * something better;) a packet is only considered (s)acked in its entirety to
396 u32 tcp_slow_start(struct tcp_sock *tp, u32 acked)
398 u32 cwnd = min(tp->snd_cwnd + acked, tp->snd_ssthresh);
400 acked -= cwnd - tp->snd_cwnd;
403 return acked;
410 void tcp_cong_avoid_ai(struct tcp_sock *tp, u32 w, u32 acked)
418 tp->snd_cwnd_cnt += acked;
436 void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 acked)
445 acked = tcp_slow_start(tp, acked);
446 if (!acked)
450 tcp_cong_avoid_ai(tp, tp->snd_cwnd, acked);