Home
last modified time | relevance | path

Searched refs:t_bytes_acked (Results 1 – 8 of 8) sorted by relevance

/xnu-11417.101.15/bsd/netinet/
H A Dtcp_ledbat.c204 tp->t_bytes_acked += acked; in tcp_ledbat_congestion_avd()
205 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_ledbat_congestion_avd()
206 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_ledbat_congestion_avd()
269 tp->t_bytes_acked += bytes_acked; in ledbat_pp_congestion_avd()
270 if (tp->t_bytes_acked >= tp->snd_cwnd) { in ledbat_pp_congestion_avd()
272 tp->t_bytes_acked -= tp->snd_cwnd; in ledbat_pp_congestion_avd()
334 tp->t_bytes_acked = 0; in ledbat_pp_ack_rcvd()
355 tp->t_bytes_acked += bytes_acked; in ledbat_pp_ack_rcvd()
357 if (tp->t_bytes_acked >= tp->t_maxseg * gain_factor) { in ledbat_pp_ack_rcvd()
358 update = MIN(tp->t_bytes_acked / gain_factor, in ledbat_pp_ack_rcvd()
[all …]
H A Dtcp_newreno.c149 tp->t_bytes_acked += acked; in tcp_newreno_congestion_avd()
150 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_newreno_congestion_avd()
151 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_newreno_congestion_avd()
180 tp->t_bytes_acked += acked; in tcp_newreno_ack_rcvd()
181 if (tp->t_bytes_acked >= cw) { in tcp_newreno_ack_rcvd()
183 tp->t_bytes_acked -= cw; in tcp_newreno_ack_rcvd()
247 tp->t_bytes_acked = 0; in tcp_newreno_post_fr()
335 tp->t_bytes_acked = 0; in tcp_newreno_switch_cc()
H A Dtcp_cubic.c120 tp->t_bytes_acked = 0; in tcp_cubic_cwnd_init_or_reset()
293 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd()
308 if (tp->t_bytes_acked >= tp->snd_cwnd) { in tcp_cubic_congestion_avd()
309 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_cubic_congestion_avd()
324 if (incr_win > 0 && tp->t_bytes_acked >= incr_win) { in tcp_cubic_congestion_avd()
325 tp->t_bytes_acked -= incr_win; in tcp_cubic_congestion_avd()
349 if (incr_win > 0 && tp->t_bytes_acked >= incr_win) { in tcp_cubic_congestion_avd()
350 tp->t_bytes_acked -= incr_win; in tcp_cubic_congestion_avd()
H A Dtcp_prague.c205 tp->t_bytes_acked += acked; in tcp_cubic_ack_ca()
239 if (incr_bytes_acked > 0 && tp->t_bytes_acked >= incr_bytes_acked) { in tcp_cubic_ack_ca()
240 tp->t_bytes_acked -= incr_bytes_acked; in tcp_cubic_ack_ca()
411 tp->t_bytes_acked += acked; in prague_ca_after_ce()
420 if (tp->t_bytes_acked >= bytes_needed_for_increase) { in prague_ca_after_ce()
421 tp->t_bytes_acked -= bytes_needed_for_increase; in prague_ca_after_ce()
637 tp->t_bytes_acked = 0; in tcp_prague_cwnd_init_or_reset()
H A Dtcp_ccdbg.c121 dbg_state.ccd_bytes_acked = tp->t_bytes_acked; in tcp_ccdbg_trace()
H A Dtcp_var.h504 uint32_t t_bytes_acked; /* RFC 3465 variable for ABC, used by CCA only */ member
904 (_tp_)->t_bytes_acked = 0; \
H A Dtcp_input.c7507 tp->t_bytes_acked = 0; in inp_fc_unthrottle_tcp()
7547 tp->t_bytes_acked = 0; in inp_fc_unthrottle_tcp()
H A Dtcp_output.c3353 tp->t_bytes_acked = 0; in tcp_output()