Lines Matching defs:acked
228 /* Return maximum extra acked in past k-2k round trips,
470 * follow the packet conservation principle: send P packets per P packets acked.
471 * After that, we slow-start and send at most 2*P packets per P packets acked.
478 struct sock *sk, const struct rate_sample *rs, u32 acked, u32 *new_cwnd)
497 cwnd = tcp_packets_in_flight(tp) + acked;
506 *new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked);
517 u32 acked, u32 bw, int gain)
523 if (!acked)
526 if (bbr_set_cwnd_to_recover_or_restore(sk, rs, acked, &cwnd))
539 cwnd = min(cwnd + acked, target_cwnd);
541 cwnd = cwnd + acked;
805 * Degree of ack aggregation is estimated as extra data acked beyond expected.