Lines Matching defs:p99
317 int p99;
319 p99 = calculate_percentile(kqd, sched_domain,
325 * the p99 for the next time we observe congestion; once we do,
330 if (p99 < 0)
331 p99 = kqd->domain_p99[sched_domain];
333 } else if (p99 >= 0) {
334 kqd->domain_p99[sched_domain] = p99;
336 if (p99 < 0)
343 * The new depth is scaled linearly with the p99 latency vs the
344 * latency target. E.g., if the p99 is 3/4 of the target, then
345 * we throttle down to 3/4 of the current depth, and if the p99
348 if (bad || p99 >= KYBER_GOOD_BUCKETS) {
350 depth = (orig_depth * (p99 + 1)) >> KYBER_LATENCY_SHIFT;