Home
last modified time | relevance | path

Searched refs:tcp_packets_in_flight (Results 1 – 3 of 3) sorted by relevance

/linux-3.4.99/net/ipv4/
Dtcp_input.c858 tcp_packets_in_flight(tp) + 1U); in tcp_enter_cwr()
1966 WARN_ON((int)tcp_packets_in_flight(tp) < 0); in tcp_sacktag_write_queue()
2139 tp->snd_cwnd = min(tp->snd_cwnd, tcp_packets_in_flight(tp) + 1); in tcp_enter_frto()
2208 tp->snd_cwnd = tcp_packets_in_flight(tp) + allowed_segments; in tcp_enter_frto_loss()
2635 tcp_packets_in_flight(tp) + tcp_max_burst(tp)); in tcp_moderate_cwnd()
2663 tp->snd_cwnd = min(tp->snd_cwnd, tcp_packets_in_flight(tp) + 1); in tcp_cwnd_down()
3016 int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp); in tcp_update_cwnd_in_recovery()
3018 if (tcp_packets_in_flight(tp) > tp->snd_ssthresh) { in tcp_update_cwnd_in_recovery()
3029 tp->snd_cwnd = tcp_packets_in_flight(tp) + sndcnt; in tcp_update_cwnd_in_recovery()
3645 if (!tcp_packets_in_flight(tp)) { in tcp_process_frto()
[all …]
Dtcp_output.c838 if (tcp_packets_in_flight(tp) == 0) in tcp_transmit_skb()
1355 in_flight = tcp_packets_in_flight(tp); in tcp_cwnd_test()
1553 in_flight = tcp_packets_in_flight(tp); in tcp_tso_should_defer()
1656 if (tcp_packets_in_flight(tp) + 2 > tp->snd_cwnd) { in tcp_mtu_probe()
1657 if (!tcp_packets_in_flight(tp)) in tcp_mtu_probe()
2287 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd) in tcp_xmit_retransmit_queue()
/linux-3.4.99/include/net/
Dtcp.h813 static inline unsigned int tcp_packets_in_flight(const struct tcp_sock *tp) in tcp_packets_in_flight() function