Lines Matching defs:p99
318 int p99;
320 p99 = calculate_percentile(kqd, sched_domain,
326 * the p99 for the next time we observe congestion; once we do,
331 if (p99 < 0)
332 p99 = kqd->domain_p99[sched_domain];
334 } else if (p99 >= 0) {
335 kqd->domain_p99[sched_domain] = p99;
337 if (p99 < 0)
344 * The new depth is scaled linearly with the p99 latency vs the
345 * latency target. E.g., if the p99 is 3/4 of the target, then
346 * we throttle down to 3/4 of the current depth, and if the p99
349 if (bad || p99 >= KYBER_GOOD_BUCKETS) {
351 depth = (orig_depth * (p99 + 1)) >> KYBER_LATENCY_SHIFT;