Lines Matching defs:flight

252  * in flight.
266 * cwnd will never be reached by the flight-size.
1489 "Should we allow google probe-bw/drain to exit early at flight target?");
1583 "Do we restrict cwnd growth for whats in flight?");
1603 "Number of segments limit for drop (0=use min_cwnd w/flight)?");
3361 * Calculate the bytes in flight needed given the bw (in bytes per
3659 uint32_t flight;
3668 flight = ctf_flight_size(tp,
3670 bbr_log_type_cwndupd(bbr, flight, 0,
3684 if ((flight + bytes_this_ack) > cwnd)
3685 cwnd = flight + bytes_this_ack;
3754 uint32_t flight;
3788 flight = ctf_flight_size(tp,
3839 acks_inflight = (flight / (maxseg * 2));
3888 if (flight <= tp->snd_cwnd) {
4014 * packets still in flight that is not acked.
5002 * that the ACK was already in flight. See "On Estimating
5324 * flight, we can remove the cleared
5881 * Add to the RACK log of packets in flight or retransmitted. If
6525 * We use what was in flight at the time of our
6601 * We use what was in flight at the time of our
10431 /* We have reached out target flight size possibly early */
10466 uint32_t flight, bbr_cur_cycle_time;
10487 flight = ctf_flight_size(bbr->rc_tp,
10497 bbr->r_ctl.r_app_limited_until = (bbr->r_ctl.rc_delivered + flight);
10502 (flight >= bbr->r_ctl.flightsize_at_drain))) {
10510 bbr->r_ctl.flightsize_at_drain = flight;
10533 if (flight <= bbr->r_ctl.rc_target_at_state) {
11110 /* We have reached a flight of the cwnd target */
11124 /* Has in-flight reached the bdp (or less)? */
11168 uint32_t flight;
11170 flight = ctf_flight_size(bbr->rc_tp,
11172 bbr->r_ctl.r_app_limited_until = (flight + bbr->r_ctl.rc_delivered);
11188 if (flight <= bbr->r_ctl.rc_target_at_state) {
11209 (flight >= bbr->r_ctl.flightsize_at_drain))) {
11213 * to target, or we have increased our flight.
11220 bbr->r_ctl.flightsize_at_drain = flight;
11659 uint32_t flight;
11661 flight = ctf_flight_size(tp, (bbr->r_ctl.rc_sacked + bbr->r_ctl.rc_lost_bytes));
11662 if (flight >= sendwin) {
11664 * We have in flight what we are allowed by cwnd (if
11670 len = sendwin - flight;
12499 * more already in flight, its not the tail end
12515 * We also have in flight more than 2 segments
13634 * nothing is in flight the delivered
13742 * capping the cwnd at the current flight.