Hello Viresh,
On Wed, Jan 30, 2013 at 12:33:40PM +0530, Viresh Kumar wrote:
I am starting to follow cpufreq patches religiously now and so have to come back to this old thread due to some crash we got :)
Its still not pushed upstream, so better to get it resolved before 3.9.
Definitely, that's what we have -next for!
On Thu, Dec 27, 2012 at 8:25 PM, Fabio Baltieri fabio.baltieri@linaro.org wrote:
diff --git a/drivers/cpufreq/cpufreq_governor.c b/drivers/cpufreq/cpufreq_governor.c
static inline void dbs_timer_init(struct dbs_data *dbs_data,
struct cpu_dbs_common_info *cdbs, unsigned int sampling_rate)
struct cpu_dbs_common_info *cdbs,
unsigned int sampling_rate,
int cpu)
{ int delay = delay_for_sampling_rate(sampling_rate);
struct cpu_dbs_common_info *cdbs_local = dbs_data->get_cpu_cdbs(cpu);
I couldn't understand the real need for this, as it should really give back the same pointer pointed out by: cdbs and hence no need of cpu in params too..
I may be wrong here :)
You are actually right. This comes from the first version of the patch (I basically rewrote it after the common code rafactoring), and cdbs was meant to be always the one for the master CPU while cpu should indicate the one being initialized. Then the thing turned out as:
A - I dropped the code specific for master cdbs here as it was already there on another code path following the rafactoring. B - I passed j_cdbs = dbs_data->get_cpu_cdbs(j) in the init cycle while it was really meant to be get_cpu_cdbs(cpu).
INIT_DEFERRABLE_WORK(&cdbs->work, dbs_data->gov_dbs_timer);
schedule_delayed_work_on(cdbs->cpu, &cdbs->work, delay);
schedule_delayed_work_on(cpu, &cdbs_local->work, delay);
}
static inline void dbs_timer_exit(struct cpu_dbs_common_info *cdbs) @@ -217,6 +227,10 @@ int cpufreq_governor_dbs(struct dbs_data *dbs_data, if (ignore_nice) j_cdbs->prev_cpu_nice = kcpustat_cpu(j).cpustat[CPUTIME_NICE];
mutex_init(&j_cdbs->timer_mutex);
INIT_DEFERRABLE_WORK(&j_cdbs->work,
dbs_data->gov_dbs_timer); } /*
@@ -275,15 +289,33 @@ second_time: } mutex_unlock(&dbs_data->mutex);
mutex_init(&cpu_cdbs->timer_mutex);
dbs_timer_init(dbs_data, cpu_cdbs, *sampling_rate);
if (dbs_sw_coordinated_cpus(cpu_cdbs)) {
for_each_cpu(j, policy->cpus) {
struct cpu_dbs_common_info *j_cdbs;
j_cdbs = dbs_data->get_cpu_cdbs(j);
dbs_timer_init(dbs_data, j_cdbs,
*sampling_rate, j);
}
} else {
dbs_timer_init(dbs_data, cpu_cdbs, *sampling_rate, cpu);
}
do you really need this else part? In case of uniprocessor systems also, the if block should be enough. Isn't it?
Same reason, get_cpu_cdbs(j) was meant to be get_cpu_cdbs(cpu) but that's not used anymore in the last version of the patch, and the same for the last hunk.
I'll send a patch to clean this up, thanks for spotting it!
Fabio
break; case CPUFREQ_GOV_STOP: if (dbs_data->governor == GOV_CONSERVATIVE) cs_dbs_info->enable = 0;
dbs_timer_exit(cpu_cdbs);
if (dbs_sw_coordinated_cpus(cpu_cdbs)) {
for_each_cpu(j, policy->cpus) {
struct cpu_dbs_common_info *j_cdbs;
j_cdbs = dbs_data->get_cpu_cdbs(j);
dbs_timer_exit(j_cdbs);
}
} else {
dbs_timer_exit(cpu_cdbs);
}
ditto.