Lines Matching defs:iowait_boost
200 * @iowait_boost: iowait-related boost fraction
256 unsigned int iowait_boost;
1821 * Set iowait_boost flag and update time. Since IO WAIT flag
1920 if (busy_frac < cpu->iowait_boost)
1921 busy_frac = cpu->iowait_boost;
1985 fp_toint(cpu->iowait_boost * 100));
2002 cpu->iowait_boost = ONE_EIGHTH_FP;
2003 } else if (cpu->iowait_boost >= ONE_EIGHTH_FP) {
2004 cpu->iowait_boost <<= 1;
2005 if (cpu->iowait_boost > int_tofp(1))
2006 cpu->iowait_boost = int_tofp(1);
2008 cpu->iowait_boost = ONE_EIGHTH_FP;
2010 } else if (cpu->iowait_boost) {
2011 /* Clear iowait_boost if the CPU may have been idle. */
2013 cpu->iowait_boost = 0;
2015 cpu->iowait_boost >>= 1;
2525 fp_toint(cpu->iowait_boost * 100));