Searched refs:tcp_packets_in_flight (Results 1 – 3 of 3) sorted by relevance
848 tcp_packets_in_flight(tp) + 1U); in tcp_enter_cwr()1953 WARN_ON((int)tcp_packets_in_flight(tp) < 0); in tcp_sacktag_write_queue()2126 tp->snd_cwnd = min(tp->snd_cwnd, tcp_packets_in_flight(tp) + 1); in tcp_enter_frto()2195 tp->snd_cwnd = tcp_packets_in_flight(tp) + allowed_segments; in tcp_enter_frto_loss()2625 tcp_packets_in_flight(tp) + tcp_max_burst(tp)); in tcp_moderate_cwnd()2653 tp->snd_cwnd = min(tp->snd_cwnd, tcp_packets_in_flight(tp) + 1); in tcp_cwnd_down()3003 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_update_cwnd_in_recovery()3005 if (tcp_packets_in_flight(tp) > tp->snd_ssthresh) { in tcp_update_cwnd_in_recovery()3016 tp->snd_cwnd = tcp_packets_in_flight(tp) + sndcnt; in tcp_update_cwnd_in_recovery()3629 tcp_packets_in_flight(tp)); in tcp_process_frto()[all …]
838 if (tcp_packets_in_flight(tp) == 0) { in tcp_transmit_skb()1352 in_flight = tcp_packets_in_flight(tp); in tcp_cwnd_test()1550 in_flight = tcp_packets_in_flight(tp); in tcp_tso_should_defer()1649 if (tcp_packets_in_flight(tp) + 2 > tp->snd_cwnd) { in tcp_mtu_probe()1650 if (!tcp_packets_in_flight(tp)) in tcp_mtu_probe()2272 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd) in tcp_xmit_retransmit_queue()
811 static inline unsigned int tcp_packets_in_flight(const struct tcp_sock *tp) in tcp_packets_in_flight() function