On 30 January 2013 18:30, Fabio Baltieri fabio.baltieri@linaro.org wrote:
Modify conservative timer to not resample CPU utilization if recently sampled from another SW coordinated core.
Signed-off-by: Fabio Baltieri fabio.baltieri@linaro.org
We are again doing the same mistake which i fixed with:
commit 4471a34f9a1f2da220272e823bdb8e8fa83a7661 Author: Viresh Kumar viresh.kumar@linaro.org Date: Fri Oct 26 00:47:42 2012 +0200
cpufreq: governors: remove redundant code
Initially ondemand governor was written and then using its code conservative governor is written. It used a lot of code from ondemand governor, but copy of code was created instead of using the same routines from both governors. Which increased code redundancy, which is difficult to manage.
This patch is an attempt to move common part of both the governors to cpufreq_governor.c file to come over above mentioned issues.