soc: qcom: Fix for loop exit condition in msm_perf module
Fix the upper limit on the number of cores to be offlined in try_hotplug function. Change-Id: I8bcfddac16727b907f40bd319cf4128d49937293 Signed-off-by: Pracheer <pracheer@codeaurora.org>
This commit is contained in:
parent
ab06a7e2c0
commit
d4fe676390
1 changed files with 2 additions and 1 deletions
|
@ -512,7 +512,8 @@ static void __ref try_hotplug(struct cpu_hp *data)
|
|||
* If power aware offlining fails due to power cost info
|
||||
* being unavaiable fall back to original implementation
|
||||
*/
|
||||
for (i = num_present_cpus() - 1; i >= 0; i--) {
|
||||
for (i = num_present_cpus() - 1; i >= 0 &&
|
||||
i < num_present_cpus(); i--) {
|
||||
if (!cpumask_test_cpu(i, data->cpus) || !cpu_online(i))
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue