Searched refs:tcp_packets_in_flight (Results 1 – 6 of 6) sorted by relevance
190 tcp_packets_in_flight(tp) < tp->snd_cwnd && in tcp_rate_check_app_limited()194 (tp->delivered + tcp_packets_in_flight(tp)) ? : 1; in tcp_rate_check_app_limited()
170 prior_inflight = tcp_packets_in_flight(tp); in tcp_rack_reo_timeout()172 if (prior_inflight != tcp_packets_in_flight(tp)) { in tcp_rack_reo_timeout()
399 cwnd = tcp_packets_in_flight(tp) + acked; in bbr_set_cwnd_to_recover_or_restore()408 *new_cwnd = max(cwnd, tcp_packets_in_flight(tp) + acked); in bbr_set_cwnd_to_recover_or_restore()743 tcp_packets_in_flight(tcp_sk(sk)) <= in bbr_check_drain()809 (tp->delivered + tcp_packets_in_flight(tp)) ? : 1; in bbr_update_min_rtt()812 tcp_packets_in_flight(tp) <= bbr_cwnd_min_target) { in bbr_update_min_rtt()
150 if (tcp_packets_in_flight(tp) == 0) in tcp_event_data_sent()796 tp->snd_cwnd > tcp_packets_in_flight(tp)) { in tcp_tsq_write()1775 in_flight = tcp_packets_in_flight(tp); in tcp_cwnd_test()1925 in_flight = tcp_packets_in_flight(tp); in tcp_tso_should_defer()2093 if (tcp_packets_in_flight(tp) + 2 > tp->snd_cwnd) { in tcp_mtu_probe()2094 if (!tcp_packets_in_flight(tp)) in tcp_mtu_probe()2389 is_cwnd_limited |= (tcp_packets_in_flight(tp) >= tp->snd_cwnd); in tcp_write_xmit()2966 segs = tp->snd_cwnd - tcp_packets_in_flight(tp); in tcp_xmit_retransmit_queue()
1846 WARN_ON((int)tcp_packets_in_flight(tp) < 0); in tcp_sacktag_write_queue()1997 tp->snd_cwnd = tcp_packets_in_flight(tp) + 1; in tcp_enter_loss()2471 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_cwnd_reduction()2491 tp->snd_cwnd = tcp_packets_in_flight(tp) + sndcnt; in tcp_cwnd_reduction()3625 rs.prior_in_flight = tcp_packets_in_flight(tp); in tcp_ack()5119 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd) in tcp_should_expand_sndbuf()
1143 static inline unsigned int tcp_packets_in_flight(const struct tcp_sock *tp) in tcp_packets_in_flight() function