Searched refs:snd_fack (Results 1 – 10 of 10) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_sack.c | 592 if (SEQ_LT(tp->snd_fack, th_ack)) { in tcp_sack_doack() 594 tp->snd_fack = th_ack; in tcp_sack_doack() 655 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack); in tcp_sack_doack() 671 if (SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack() 679 SEQ_LEQ(tp->snd_fack,temp->end)) { in tcp_sack_doack() 681 temp->start = SEQ_MAX(tp->snd_fack, SEQ_MAX(tp->snd_una, th_ack)); in tcp_sack_doack() 688 tp->snd_fack = sblkp->end; in tcp_sack_doack() 698 temp = tcp_sackhole_insert(tp, tp->snd_fack,sblkp->start,NULL); in tcp_sack_doack() 702 tp->snd_fack = sblkp->end; in tcp_sack_doack() 716 SEQ_LT(tp->snd_fack, sblkp->start)) in tcp_sack_doack() [all …]
|
H A D | tcp_input.c | 471 if (SEQ_LT(tp->snd_fack, tp->snd_una) || in cc_cong_signal() 472 SEQ_GT(tp->snd_fack, tp->snd_max)) { in cc_cong_signal() 473 tp->snd_fack = tp->snd_una; in cc_cong_signal() 489 if (SEQ_LT(tp->snd_fack, th->th_ack) || in cc_post_recovery() 490 SEQ_GT(tp->snd_fack, tp->snd_max)) { in cc_post_recovery() 491 tp->snd_fack = th->th_ack; in cc_post_recovery() 2666 awnd = (tp->snd_nxt - tp->snd_fack) + in tcp_do_segment() 2905 tp->snd_fack = th->th_ack; in tcp_do_segment() 4104 pipe = (tp->snd_nxt - tp->snd_fack) + in tcp_do_prr_ack()
|
H A D | tcp_var.h | 421 tcp_seq snd_fack; /* last seq number(+1) sack'd by rcv'r*/ member
|
H A D | tcp_usrreq.c | 3183 tp->snd_fack, tp->rcv_numsacks); in db_print_tcpcb()
|
/freebsd/sys/netinet/cc/ |
H A D | cc_htcp.c | 332 CCV(ccv, snd_fack) + in htcp_cong_signal()
|
H A D | cc_dctcp.c | 301 CCV(ccv, snd_fack) + in dctcp_cong_signal()
|
H A D | cc.c | 507 CCV(ccv, snd_fack) + in newreno_cc_cong_signal()
|
H A D | cc_newreno.c | 435 CCV(ccv, snd_fack) + in newreno_cong_signal()
|
H A D | cc_cubic.c | 479 CCV(ccv, snd_fack) + in cubic_cong_signal()
|
/freebsd/cddl/lib/libdtrace/ |
H A D | tcp.d | 246 tcps_sack_fack = p == NULL ? 0 : p->snd_fack;
|