Lines Matching defs:acked
230 /* Return maximum extra acked in past k-2k round trips,
472 * follow the packet conservation principle: send P packets per P packets acked.
473 * After that, we slow-start and send at most 2*P packets per P packets acked.
480 struct sock *sk, const struct rate_sample *rs, u32 acked, u32 *new_cwnd)
499 cwnd = tcp_packets_in_flight(tp) + acked;
508 *new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked);
519 u32 acked, u32 bw, int gain)
525 if (!acked)
528 if (bbr_set_cwnd_to_recover_or_restore(sk, rs, acked, &cwnd))
541 cwnd = min(cwnd + acked, target_cwnd);
543 cwnd = cwnd + acked;
807 * Degree of ack aggregation is estimated as extra data acked beyond expected.