Home
last modified time | relevance | path

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

/freebsd/sys/netinet/cc/
H A Dcc_chd.c205 incr = min(ccv->bytes_this_ack, in chd_window_increase()
209 incr = min(ccv->bytes_this_ack, mss); in chd_window_increase()
H A Dcc_dctcp.c129 bytes_acked = min(ccv->bytes_this_ack, mss); in dctcp_ack_received()
132 bytes_acked = ccv->bytes_this_ack; in dctcp_ack_received()
H A Dcc.h92 int bytes_this_ack; /* # bytes acked by the current ACK. */ member
H A Dcc.c591 incr = min(ccv->bytes_this_ack, in newreno_cc_cwnd_in_slow_start()
594 incr = min(ccv->bytes_this_ack, mss); in newreno_cc_cwnd_in_slow_start()
H A Dcc_newreno.c327 incr = min(ccv->bytes_this_ack, in newreno_ack_received()
330 incr = min(ccv->bytes_this_ack, mss); in newreno_ack_received()
H A Dcc_cubic.c219 incr = min(ccv->bytes_this_ack, in cubic_does_slow_start()
222 incr = min(ccv->bytes_this_ack, mss); in cubic_does_slow_start()
/freebsd/sys/netinet/tcp_stacks/
H A Dbbr.c2138 bbr_log_type_cwndupd(struct tcp_bbr *bbr, uint32_t bytes_this_ack, uint32_t chg, in bbr_log_type_cwndupd() argument
2147 log.u_bbr.flex3 = bytes_this_ack; in bbr_log_type_cwndupd()
3583 bbr_ack_received(struct tcpcb *tp, struct tcp_bbr *bbr, struct tcphdr *th, uint32_t bytes_this_ack, in bbr_ack_received() argument
3624 saved_bytes = bytes_this_ack; in bbr_ack_received()
3625 bytes_this_ack += sack_changed; in bbr_ack_received()
3626 if (bytes_this_ack > prev_acked) { in bbr_ack_received()
3627 bytes_this_ack -= prev_acked; in bbr_ack_received()
3632 if ((bytes_this_ack < maxseg) && bbr->rc_use_google) in bbr_ack_received()
3633 bytes_this_ack = maxseg; in bbr_ack_received()
3636 bytes_this_ack = 0; in bbr_ack_received()
[all …]
H A Drack.c5470 acked = tp->t_ccv.bytes_this_ack = (th_ack - tp->snd_una); in rack_ack_received()
5475 if (tp->t_ccv.bytes_this_ack > max) { in rack_ack_received()
5476 tp->t_ccv.bytes_this_ack = max; in rack_ack_received()
5513 tp->t_bytes_acked += min(tp->t_ccv.bytes_this_ack, in rack_ack_received()
5539 log.u_bbr.flex3 = tp->t_ccv.bytes_this_ack; in rack_ack_received()
5654 log.u_bbr.flex3 = tp->t_ccv.bytes_this_ack; in rack_post_recovery()
/freebsd/sys/netinet/
H A Dtcp_input.c303 tp->t_ccv.bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received()
317 tp->t_ccv.bytes_this_ack / (tcp_maxseg(tp) * nsegs)); in cc_ack_received()
342 tp->t_bytes_acked += tp->t_ccv.bytes_this_ack; in cc_ack_received()