Lines Matching refs:beta
34 #define BICTCP_BETA_SCALE 1024 /* Scale factor beta calculation
35 * max_cwnd = snd_cwnd * beta
50 static int beta __read_mostly = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */
67 module_param(beta, int, 0644);
68 MODULE_PARM_DESC(beta, "beta for multiplicative increase");
350 ca->last_max_cwnd = (tcp_snd_cwnd(tp) * (BICTCP_BETA_SCALE + beta))
355 return max((tcp_snd_cwnd(tp) * beta) / BICTCP_BETA_SCALE, 2U);
516 beta_scale = 8*(BICTCP_BETA_SCALE+beta) / 3
517 / (BICTCP_BETA_SCALE - beta);