Home
last modified time | relevance | path

Searched refs:IN_FASTRECOVERY (Results 1 – 9 of 9) sorted by relevance

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_rack.c106 if (IN_FASTRECOVERY(tp) || dup_acks >= tp->t_rexmtthresh || in_rto) { in tcp_rack_reordering_window()
326 if (!IN_FASTRECOVERY(tp)) { in tcp_rack_reordering_timeout()
H A Dtcp_input.c1439 if (!IN_FASTRECOVERY(tp)) { in tcp_bad_rexmt_check()
3232 (!IN_FASTRECOVERY(tp) && in tcp_input()
5055 if (!IN_FASTRECOVERY(tp)) { in tcp_input()
5082 IN_FASTRECOVERY(tp)) { in tcp_input()
5094 if (SACK_ENABLED(tp) && !IN_FASTRECOVERY(tp) && in tcp_input()
5112 if (SACK_ENABLED(tp) && IN_FASTRECOVERY(tp)) { in tcp_input()
5159 if (IN_FASTRECOVERY(tp)) { in tcp_input()
5189 !IN_FASTRECOVERY(tp) && in tcp_input()
5286 if (IN_FASTRECOVERY(tp)) { in tcp_input()
5475 if (!IN_FASTRECOVERY(tp)) { in tcp_input()
[all …]
H A Dtcp_output.c1022 if (SACK_ENABLED(tp) && IN_FASTRECOVERY(tp)) { in tcp_output()
1153 bool rack_in_recovery = TCP_RACK_ENABLED(tp) && IN_FASTRECOVERY(tp); in tcp_output()
1338 if (!INP_WAIT_FOR_IF_FEEDBACK(inp) && !IN_FASTRECOVERY(tp) && in tcp_output()
2967 SACK_ENABLED(tp) && !IN_FASTRECOVERY(tp) && in tcp_output()
3583 !IN_FASTRECOVERY(tp) && !(so->so_flags & SOF_MP_SUBFLOW)) { in tcp_ip_output()
3656 if (((adv->code == FADV_FLOW_CONTROLLED && !IN_FASTRECOVERY(tp)) || in tcp_ip_output()
H A Dtcp_cubic.c567 if (!IN_FASTRECOVERY(tp)) { in tcp_cubic_after_timeout()
H A Dtcp_timer.c917 if (IN_FASTRECOVERY(tp)) { in tcp_rexmt_save_state()
1405 if (!IN_FASTRECOVERY(tp) && tp->t_rxtshift == 1) { in tcp_timers()
1706 !SACK_ENABLED(tp) || IN_FASTRECOVERY(tp)) && in tcp_timers()
1863 if (IN_FASTRECOVERY(tp) || in tcp_timers()
H A Dtcp_prague.c677 if (!IN_FASTRECOVERY(tp)) { in tcp_prague_after_timeout()
H A Dtcp_sack.c873 if (!SACK_ENABLED(tp) || IN_FASTRECOVERY(tp) || in tcp_sack_byte_islost()
H A Dtcp_usrreq.c1779 if (IN_FASTRECOVERY(tp) || tp->t_rxtshift > 0) { in tcp_fill_info()
2062 if (IN_FASTRECOVERY(tp) || tp->t_rxtshift > 0) { in tcp_connection_fill_info()
H A Dtcp_var.h874 #define IN_FASTRECOVERY(tp) (tp->t_flags & TF_FASTRECOVERY) macro