Lines Matching defs:load
86 * gov_update_cpu_data - Update CPU load data.
89 * Update CPU load data for all CPUs in the domain governed by @dbs_data
141 unsigned int load;
162 * calls, so the previous load value can be used then.
164 load = j_cdbs->prev_load;
170 * calculate 'load' the usual way for this elapsed
171 * time-window, because it would show near-zero load,
176 * To avoid this, reuse the 'load' from the previous
180 * load (high frequency) for too long, even when the
181 * current system load has actually dropped down, so
182 * clear prev_load to guarantee that the load will be
189 load = j_cdbs->prev_load;
193 load = 100 * (time_elapsed - idle_time) / time_elapsed;
208 * returned as the load.
210 load = (int)idle_time < 0 ? 100 : 0;
212 j_cdbs->prev_load = load;
222 if (load > max_load)
223 max_load = load;
243 * Make sure cpufreq_governor_limits() isn't evaluating load or the
528 * Make the first invocation of dbs_update() compute the load.