Lines Matching refs:beta
181 q->params.beta = nla_get_u32(tb[TCA_PIE_BETA]);
307 u64 alpha, beta;
330 /* In the algorithm, alpha and beta are between 0 and 2 with typical
332 * passed from user space to represent this. Also, alpha and beta have
334 * probability. alpha/beta are updated locally below by scaling down
338 beta = ((u64)params->beta * (MAX_PROB / PSCHED_TICKS_PER_SEC)) >> 4;
340 /* We scale alpha and beta differently depending on how heavy the
345 beta >>= 1;
351 beta >>= 2;
356 /* alpha and beta should be between 0 and 32, in multiples of 1/16 */
358 delta += beta * (qdelay - qdelay_old);
478 nla_put_u32(skb, TCA_PIE_BETA, q->params.beta) ||