search for: __cpufreq_governor

Displaying 2 results from an estimated 2 matches for "__cpufreq_governor".

2011 Oct 14
1
[PATCH] cpufreq: error path fixes
...int __cpufreq_set_policy(struct cpufreq_ data->governor->name); /* new governor failed, so re-start old one */ + data->governor = old_gov; if (old_gov) { - data->governor = old_gov; __cpufreq_governor(data, CPUFREQ_GOV_START); printk(KERN_WARNING "Still stay at %s governor\n", data->governor->name); _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource....
2011 Oct 20
0
[PATCH 07/12] cpufreq: allocate CPU masks dynamically
...r SW_ALL & SW_ANY, stop gov for the 1st core of the _PSD domain */ - if (hw_all || - (cpus_weight(cpufreq_dom->map) == perf->domain_info.num_processors)) + if (hw_all || (cpumask_weight(cpufreq_dom->map) == + perf->domain_info.num_processors)) __cpufreq_governor(policy, CPUFREQ_GOV_STOP); cpufreq_statistic_exit(cpu); per_cpu(cpufreq_cpu_policy, cpu) = NULL; - cpu_clear(cpu, policy->cpus); - cpu_clear(cpu, cpufreq_dom->map); + cpumask_clear_cpu(cpu, policy->cpus); + cpumask_clear_cpu(cpu, cpufreq_dom->map); - if (cpu...