Home
last modified time | relevance | path

Searched refs:W_max (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/netinet/cc/
H A Dcc_cubic.c273 cubic_data->W_max = CCV(ccv, snd_cwnd); in cubic_ack_received()
281 cubic_data->K = cubic_k(cubic_data->W_max / mss); in cubic_ack_received()
300 cubic_data->W_max, in cubic_ack_received()
329 cubic_data->W_max < CCV(ccv, snd_cwnd)) { in cubic_ack_received()
330 cubic_data->W_max = CCV(ccv, snd_cwnd); in cubic_ack_received()
331 cubic_data->K = cubic_k(cubic_data->W_max / in cubic_ack_received()
353 cubic_data->W_max = ulmax(cubic_data->W_max, CCV(ccv, snd_cwnd)); in cubic_after_idle()
354 cubic_data->K = cubic_k(cubic_data->W_max / tcp_fixed_maxseg(ccv->tp)); in cubic_after_idle()
438 cubic_data->K = cubic_k(cubic_data->W_max / mss); in cubic_cong_signal()
455 cubic_data->K = cubic_k(cubic_data->W_max / mss); in cubic_cong_signal()
[all …]
H A Dcc_cubic.h96 uint64_t W_max; member