Lines Matching refs:flight

3659 		uint32_t flight;  in bbr_ack_received()  local
3668 flight = ctf_flight_size(tp, in bbr_ack_received()
3670 bbr_log_type_cwndupd(bbr, flight, 0, in bbr_ack_received()
3684 if ((flight + bytes_this_ack) > cwnd) in bbr_ack_received()
3685 cwnd = flight + bytes_this_ack; in bbr_ack_received()
3754 uint32_t flight; in bbr_post_recovery() local
3788 flight = ctf_flight_size(tp, in bbr_post_recovery()
3839 acks_inflight = (flight / (maxseg * 2)); in bbr_post_recovery()
3888 if (flight <= tp->snd_cwnd) { in bbr_post_recovery()
10466 uint32_t flight, bbr_cur_cycle_time; in bbr_set_probebw_gains() local
10487 flight = ctf_flight_size(bbr->rc_tp, in bbr_set_probebw_gains()
10497 bbr->r_ctl.r_app_limited_until = (bbr->r_ctl.rc_delivered + flight); in bbr_set_probebw_gains()
10502 (flight >= bbr->r_ctl.flightsize_at_drain))) { in bbr_set_probebw_gains()
10510 bbr->r_ctl.flightsize_at_drain = flight; in bbr_set_probebw_gains()
10533 if (flight <= bbr->r_ctl.rc_target_at_state) { in bbr_set_probebw_gains()
11168 uint32_t flight; in bbr_state_change() local
11170 flight = ctf_flight_size(bbr->rc_tp, in bbr_state_change()
11172 bbr->r_ctl.r_app_limited_until = (flight + bbr->r_ctl.rc_delivered); in bbr_state_change()
11188 if (flight <= bbr->r_ctl.rc_target_at_state) { in bbr_state_change()
11209 (flight >= bbr->r_ctl.flightsize_at_drain))) { in bbr_state_change()
11220 bbr->r_ctl.flightsize_at_drain = flight; in bbr_state_change()
11659 uint32_t flight; in bbr_what_can_we_send() local
11661 flight = ctf_flight_size(tp, (bbr->r_ctl.rc_sacked + bbr->r_ctl.rc_lost_bytes)); in bbr_what_can_we_send()
11662 if (flight >= sendwin) { in bbr_what_can_we_send()
11670 len = sendwin - flight; in bbr_what_can_we_send()