Lines Matching defs:bytes_this_ack
2138 bbr_log_type_cwndupd(struct tcp_bbr *bbr, uint32_t bytes_this_ack, uint32_t chg,
2147 log.u_bbr.flex3 = bytes_this_ack;
3583 bbr_ack_received(struct tcpcb *tp, struct tcp_bbr *bbr, struct tcphdr *th, uint32_t bytes_this_ack,
3624 saved_bytes = bytes_this_ack;
3625 bytes_this_ack += sack_changed;
3626 if (bytes_this_ack > prev_acked) {
3627 bytes_this_ack -= prev_acked;
3632 if ((bytes_this_ack < maxseg) && bbr->rc_use_google)
3633 bytes_this_ack = maxseg;
3636 bytes_this_ack = 0;
3656 bytes_this_ack;
3684 if ((flight + bytes_this_ack) > cwnd)
3685 cwnd = flight + bytes_this_ack;
3698 if (bytes_this_ack > maxseg)
3699 bytes_this_ack = maxseg;
3710 s_cwnd = min((cwnd + bytes_this_ack), target_cwnd);
3723 cwnd += bytes_this_ack;