Searched refs:bytes_this_ack (Results 1 – 9 of 9) sorted by relevance
| /freebsd-14.2/sys/netinet/cc/ |
| H A D | cc_chd.c | 203 incr = min(ccv->bytes_this_ack, in chd_window_increase() 207 incr = min(ccv->bytes_this_ack, in chd_window_increase()
|
| H A D | cc_dctcp.c | 129 bytes_acked = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in dctcp_ack_received() 132 bytes_acked = ccv->bytes_this_ack; in dctcp_ack_received()
|
| H A D | cc.h | 97 int bytes_this_ack; /* # bytes acked by the current ACK. */ member
|
| H A D | cc.c | 561 incr = min(ccv->bytes_this_ack, in newreno_cc_ack_received() 565 incr = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in newreno_cc_ack_received()
|
| H A D | cc_newreno.c | 327 incr = min(ccv->bytes_this_ack, in newreno_ack_received() 331 incr = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in newreno_ack_received()
|
| H A D | cc_cubic.c | 219 incr = min(ccv->bytes_this_ack, in cubic_does_slow_start() 223 incr = min(ccv->bytes_this_ack, CCV(ccv, t_maxseg)); in cubic_does_slow_start()
|
| /freebsd-14.2/sys/netinet/tcp_stacks/ |
| H A D | bbr.c | 2155 log.u_bbr.flex3 = bytes_this_ack; in bbr_log_type_cwndupd() 3634 saved_bytes = bytes_this_ack; in bbr_ack_received() 3635 bytes_this_ack += sack_changed; in bbr_ack_received() 3636 if (bytes_this_ack > prev_acked) { in bbr_ack_received() 3637 bytes_this_ack -= prev_acked; in bbr_ack_received() 3643 bytes_this_ack = maxseg; in bbr_ack_received() 3646 bytes_this_ack = 0; in bbr_ack_received() 3666 bytes_this_ack; in bbr_ack_received() 3708 if (bytes_this_ack > maxseg) in bbr_ack_received() 3709 bytes_this_ack = maxseg; in bbr_ack_received() [all …]
|
| H A D | rack.c | 5337 acked = tp->t_ccv.bytes_this_ack = (th_ack - tp->snd_una); in rack_ack_received() 5342 if (tp->t_ccv.bytes_this_ack > max) { in rack_ack_received() 5343 tp->t_ccv.bytes_this_ack = max; in rack_ack_received() 5376 tp->t_bytes_acked += min(tp->t_ccv.bytes_this_ack, in rack_ack_received() 5402 log.u_bbr.flex3 = tp->t_ccv.bytes_this_ack; in rack_ack_received() 5843 log.u_bbr.flex3 = tp->t_ccv.bytes_this_ack; in rack_post_recovery() 10857 rack_do_detection(struct tcpcb *tp, struct tcp_rack *rack, uint32_t bytes_this_ack, uint32_t segsi… in rack_do_detection() argument 10981 (bytes_this_ack / segsiz)); in rack_do_detection()
|
| /freebsd-14.2/sys/netinet/ |
| H A D | tcp_input.c | 305 tp->t_ccv.bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received() 319 tp->t_ccv.bytes_this_ack / (tcp_maxseg(tp) * nsegs)); in cc_ack_received() 344 tp->t_bytes_acked += tp->t_ccv.bytes_this_ack; in cc_ack_received()
|