Home
last modified time | relevance | path

Searched refs:snd_cubic_wmax (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/sys/netinet/
Dtcp_congctl.c871 K = tcp_cubic_cbrt(tp->snd_cubic_wmax / CUBIC_BETAB * in tcp_cubic_getW()
877 return CUBIC_CA * tK3 / CUBIC_CB + tp->snd_cubic_wmax; in tcp_cubic_getW()
890 if (tp->snd_cubic_wmax < tp->snd_cubic_wmax_last) { in tcp_cubic_congestion_exp()
891 tp->snd_cubic_wmax_last = tp->snd_cubic_wmax; in tcp_cubic_congestion_exp()
892 tp->snd_cubic_wmax = tp->snd_cubic_wmax / 2 + in tcp_cubic_congestion_exp()
893 tp->snd_cubic_wmax * CUBIC_BETAA / CUBIC_BETAB / 2; in tcp_cubic_congestion_exp()
895 tp->snd_cubic_wmax_last = tp->snd_cubic_wmax; in tcp_cubic_congestion_exp()
896 tp->snd_cubic_wmax = tp->snd_cwnd; in tcp_cubic_congestion_exp()
899 tp->snd_cubic_wmax = uimax(tp->t_segsz, tp->snd_cubic_wmax); in tcp_cubic_congestion_exp()
941 w_tcp = tp->snd_cubic_wmax * CUBIC_BETAA / CUBIC_BETAB + in tcp_cubic_newack()
Dtcp_var.h359 ulong snd_cubic_wmax; /* W_max */ member
Dtcp_subr.c885 .snd_cubic_wmax = 0,