Home
last modified time | relevance | path

Searched refs:bytes_this_ack (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/sys/netinet/cc/
H A Dcc_newreno.c188 incr = min(ccv->bytes_this_ack, in newreno_ack_received()
192 incr = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in newreno_ack_received()
H A Dcc.h85 int bytes_this_ack; /* # bytes acked by the current ACK. */ member
H A Dcc_chd.c199 incr = min(ccv->bytes_this_ack, in chd_window_increase()
203 incr = min(ccv->bytes_this_ack, in chd_window_increase()
H A Dcc_dctcp.c126 bytes_acked = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in dctcp_ack_received()
129 bytes_acked = ccv->bytes_this_ack; in dctcp_ack_received()
/freebsd-13.1/sys/netinet/tcp_stacks/
H A Dbbr.c2166 log.u_bbr.flex3 = bytes_this_ack; in bbr_log_type_cwndupd()
3652 saved_bytes = bytes_this_ack; in bbr_ack_received()
3653 bytes_this_ack += sack_changed; in bbr_ack_received()
3654 if (bytes_this_ack > prev_acked) { in bbr_ack_received()
3655 bytes_this_ack -= prev_acked; in bbr_ack_received()
3661 bytes_this_ack = maxseg; in bbr_ack_received()
3664 bytes_this_ack = 0; in bbr_ack_received()
3684 bytes_this_ack; in bbr_ack_received()
3726 if (bytes_this_ack > maxseg) in bbr_ack_received()
3727 bytes_this_ack = maxseg; in bbr_ack_received()
[all …]
H A Drack.c4662 acked = tp->ccv->bytes_this_ack = (th_ack - tp->snd_una); in rack_ack_received()
4667 if (tp->ccv->bytes_this_ack > max) { in rack_ack_received()
4668 tp->ccv->bytes_this_ack = max; in rack_ack_received()
4699 tp->t_bytes_acked += min(tp->ccv->bytes_this_ack, in rack_ack_received()
4724 log.u_bbr.flex3 = tp->ccv->bytes_this_ack; in rack_ack_received()
4830 log.u_bbr.flex3 = tp->ccv->bytes_this_ack; in rack_post_recovery()
8972 rack_do_detection(struct tcpcb *tp, struct tcp_rack *rack, uint32_t bytes_this_ack, uint32_t segsi… in rack_do_detection() argument
9043 (bytes_this_ack / segsiz)); in rack_do_detection()
/freebsd-13.1/sys/netinet/
H A Dtcp_input.c338 tp->ccv->bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received()
352 tp->ccv->bytes_this_ack / (tcp_maxseg(tp) * nsegs)); in cc_ack_received()
377 tp->t_bytes_acked += tp->ccv->bytes_this_ack; in cc_ack_received()