Searched refs:bytes_this_ack (Results 1 – 9 of 9) sorted by relevance
| /freebsd/sys/netinet/cc/ |
| H A D | cc_dctcp.c | 129 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 D | cc_chd.c | 205 incr = min(ccv->bytes_this_ack, in chd_window_increase() 209 incr = min(ccv->bytes_this_ack, mss); in chd_window_increase()
|
| H A D | cc.h | 92 int bytes_this_ack; /* # bytes acked by the current ACK. */ member
|
| H A D | cc.c | 591 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 D | cc_newreno.c | 327 incr = min(ccv->bytes_this_ack, in newreno_ack_received() 330 incr = min(ccv->bytes_this_ack, mss); in newreno_ack_received()
|
| H A D | cc_cubic.c | 219 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 D | bbr.c | 2134 bbr_log_type_cwndupd(struct tcp_bbr *bbr, uint32_t bytes_this_ack, uint32_t chg, in bbr_log_type_cwndupd() argument 2143 log.u_bbr.flex3 = bytes_this_ack; in bbr_log_type_cwndupd() 3576 bbr_ack_received(struct tcpcb *tp, struct tcp_bbr *bbr, struct tcphdr *th, uint32_t bytes_this_ack, in bbr_ack_received() argument 3617 saved_bytes = bytes_this_ack; in bbr_ack_received() 3618 bytes_this_ack += sack_changed; in bbr_ack_received() 3619 if (bytes_this_ack > prev_acked) { in bbr_ack_received() 3620 bytes_this_ack -= prev_acked; in bbr_ack_received() 3625 if ((bytes_this_ack < maxseg) && bbr->rc_use_google) in bbr_ack_received() 3626 bytes_this_ack = maxseg; in bbr_ack_received() 3629 bytes_this_ack = 0; in bbr_ack_received() [all …]
|
| H A D | rack.c | 5331 acked = tp->t_ccv.bytes_this_ack = (th_ack - tp->snd_una); in rack_ack_received() 5336 if (tp->t_ccv.bytes_this_ack > max) { in rack_ack_received() 5337 tp->t_ccv.bytes_this_ack = max; in rack_ack_received() 5374 tp->t_bytes_acked += min(tp->t_ccv.bytes_this_ack, in rack_ack_received() 5400 log.u_bbr.flex3 = tp->t_ccv.bytes_this_ack; in rack_ack_received() 5515 log.u_bbr.flex3 = tp->t_ccv.bytes_this_ack; in rack_post_recovery()
|
| /freebsd/sys/netinet/ |
| H A D | tcp_input.c | 299 tp->t_ccv.bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received() 313 tp->t_ccv.bytes_this_ack / (tcp_maxseg(tp) * nsegs)); in cc_ack_received() 338 tp->t_bytes_acked += tp->t_ccv.bytes_this_ack; in cc_ack_received()
|