Lines Matching refs:beta
178 q->params.beta = nla_get_u32(tb[TCA_PIE_BETA]);
304 u64 alpha, beta;
327 /* In the algorithm, alpha and beta are between 0 and 2 with typical
329 * passed from user space to represent this. Also, alpha and beta have
331 * probability. alpha/beta are updated locally below by scaling down
335 beta = ((u64)params->beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4;
337 /* We scale alpha and beta differently depending on how heavy the
342 beta >>= 1;
348 beta >>= 2;
353 /* alpha and beta should be between 0 and 32, in multiples of 1/16 */
355 delta += beta * (qdelay - qdelay_old);
478 nla_put_u32(skb, TCA_PIE_BETA, q->params.beta) ||