[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH][cpufreq] Correctly calculate load
The idle time of the system should be less than the wall time of the system. The initial implementation incorrectly set idle time to wall time when idle time was less than wall time, instead of when idle time was more than wall time. Correct this error. Signed-off-by: Mark Langsdorf <mark.langsdorf@xxxxxxx> diff -r fd879c0688bf drivers/cpufreq/cpufreq_ondemand.c --- a/drivers/cpufreq/cpufreq_ondemand.c Fri Nov 23 16:26:56 2007 +0000 +++ b/drivers/cpufreq/cpufreq_ondemand.c Mon Dec 03 10:27:45 2007 -0600 @@ -319,7 +319,7 @@ static int dbs_calc_load(struct cpu_dbs_ tmp_idle_msecs = tmp_idle_nsecs; if (tmp_wall_msecs == 0) tmp_wall_msecs = 1; - if (tmp_idle_msecs < tmp_wall_msecs) + if (tmp_idle_msecs > tmp_wall_msecs) tmp_idle_msecs = tmp_wall_msecs; tmp_load = (100 * (tmp_wall_msecs - tmp_idle_msecs)) / _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |