HomeSort by: relevance | last modified time | path
    Searched refs:snd_cubic_wmax (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/netinet/
tcp_congctl.c 871 K = tcp_cubic_cbrt(tp->snd_cubic_wmax / CUBIC_BETAB *
877 return CUBIC_CA * tK3 / CUBIC_CB + tp->snd_cubic_wmax;
890 if (tp->snd_cubic_wmax < tp->snd_cubic_wmax_last) {
891 tp->snd_cubic_wmax_last = tp->snd_cubic_wmax;
892 tp->snd_cubic_wmax = tp->snd_cubic_wmax / 2 +
893 tp->snd_cubic_wmax * CUBIC_BETAA / CUBIC_BETAB / 2;
895 tp->snd_cubic_wmax_last = tp->snd_cubic_wmax;
896 tp->snd_cubic_wmax = tp->snd_cwnd;
899 tp->snd_cubic_wmax = uimax(tp->t_segsz, tp->snd_cubic_wmax)
    [all...]
tcp_var.h 359 ulong snd_cubic_wmax; /* W_max */ member in struct:tcpcb
tcp_subr.c 885 .snd_cubic_wmax = 0,

Completed in 14 milliseconds