Searched refs:snd_recover (Results 1 – 14 of 14) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_sack.c | 819 cur->rxmit = tp->snd_recover; in tcp_sack_doack() 846 cur->rxmit = tp->snd_recover; in tcp_sack_doack() 973 (tp->snd_nxt - tp->snd_recover) + num_segs * maxseg); in tcp_sack_partialack() 1001 SEQ_LT(th->th_ack, tp->snd_recover) && in tcp_sack_partialack() 1013 highdata = SEQ_MIN(highdata, tp->snd_recover); in tcp_sack_partialack() 1140 SEQ_GT(tp->snd_fack, tp->snd_recover) && in tcp_sack_lost_retransmission()
|
H A D | tcp_input.c | 430 tp->snd_recover = tp->snd_max; in cc_cong_signal() 441 SEQ_GEQ(th->th_ack, tp->snd_recover)) { in cc_cong_signal() 444 tp->snd_recover = tp->snd_max + 1; in cc_cong_signal() 461 tp->snd_recover = tp->snd_recover_prev; in cc_cong_signal() 1838 if (SEQ_GT(tp->snd_una, tp->snd_recover) && in tcp_do_segment() 1839 SEQ_LEQ(th->th_ack, tp->snd_recover)) in tcp_do_segment() 1840 tp->snd_recover = th->th_ack - 1; in tcp_do_segment() 2711 tp->snd_recover)) { in tcp_do_segment() 2875 if (SEQ_LT(th->th_ack, tp->snd_recover)) { in tcp_do_segment() 3054 SEQ_GT(tp->snd_una, tp->snd_recover) && in tcp_do_segment() [all …]
|
H A D | tcp_seq.h | 71 (tp)->snd_recover = (tp)->iss
|
H A D | tcp_timer.c | 605 tp->snd_recover_prev = tp->snd_recover; in tcp_timer_rexmt() 803 tp->snd_recover = tp->snd_max; in tcp_timer_rexmt()
|
H A D | tcp_output.c | 305 if (SEQ_GT(p->end, tp->snd_recover)) { in tcp_default_output() 311 if (SEQ_GEQ(p->rxmit, tp->snd_recover)) { in tcp_default_output() 323 len = SEQ_SUB(tp->snd_recover, p->rxmit); in tcp_default_output() 1256 p->rxmit = tp->snd_recover; in tcp_default_output()
|
H A D | tcp_var.h | 390 tcp_seq snd_recover; /* for use in NewReno Fast Recovery */ member
|
H A D | tcp_log_buf.c | 1853 COPY_STAT(snd_recover); in tcp_log_event()
|
H A D | tcp_usrreq.c | 3133 "0x%08x\n", tp->snd_ssthresh, tp->snd_recover); in db_print_tcpcb()
|
H A D | tcp_subr.c | 3354 tp->snd_recover = tp->snd_max; in tcp_mtudisc()
|
/freebsd/sys/netinet/cc/ |
H A D | cc_chd.c | 355 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in chd_cong_signal() 380 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in chd_cong_signal()
|
H A D | cc_cdg.c | 464 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in cdg_cong_signal() 476 CCV(ccv, snd_recover) = CCV(ccv, snd_max); in cdg_cong_signal()
|
/freebsd/cddl/lib/libdtrace/ |
H A D | tcp.d | 245 tcps_srecover = p == NULL ? -1 : p->snd_recover; 247 tcps_sack_snxt = p == NULL ? 0 : p->snd_recover;
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | bbr.c | 3764 tp->snd_recover = tp->snd_una; in bbr_post_recovery() 3919 tp->snd_recover = tp->snd_max; in bbr_cong_signal() 3983 tp->snd_recover = tp->snd_recover_prev; in bbr_cong_signal() 5010 tp->snd_recover_prev = tp->snd_recover; in bbr_timeout_rxt() 5168 tp->snd_recover = tp->snd_max; in bbr_timeout_rxt() 7820 if (SEQ_LT(th->th_ack, tp->snd_recover) && in bbr_process_ack() 7827 if (SEQ_GT(tp->snd_una, tp->snd_recover)) { in bbr_process_ack() 7828 tp->snd_recover = tp->snd_una; in bbr_process_ack() 8690 if (SEQ_GT(tp->snd_una, tp->snd_recover)) { in bbr_fastack() 8691 tp->snd_recover = tp->snd_una; in bbr_fastack()
|
H A D | rack.c | 5688 tp->snd_recover = tp->snd_una; in rack_post_recovery() 5739 tp->snd_recover = tp->snd_max; in rack_cong_signal() 5750 SEQ_GEQ(ack, tp->snd_recover)) { in rack_cong_signal() 5754 tp->snd_recover = tp->snd_max + 1; in rack_cong_signal() 5782 tp->snd_recover = tp->snd_recover_prev; in rack_cong_signal() 7779 tp->snd_recover_prev = tp->snd_recover; in rack_timeout_rxt() 7928 tp->snd_recover = tp->snd_max; in rack_timeout_rxt() 10604 tp->snd_recover = tp->snd_una; in rack_handle_might_revert() 11937 if (SEQ_LT(th->th_ack, tp->snd_recover) && in rack_process_ack() 11953 SEQ_GEQ(th->th_ack, tp->snd_recover)) { in rack_process_ack() [all …]
|