Skip to content

Commit 3bbf8fe

Browse files
committed
cpufreq: Always update current frequency before startig governor
Make policy->cur match the current frequency returned by the driver's ->get() callback before starting the governor in case they went out of sync in the meantime and drop the piece of code attempting to resync policy->cur with the real frequency of the boot CPU from cpufreq_resume() as it serves no purpose any more (and it's racy and super-ugly anyway). Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
1 parent 999f572 commit 3bbf8fe

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

drivers/cpufreq/cpufreq.c

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,17 +1612,6 @@ void cpufreq_resume(void)
16121612
__func__, policy);
16131613
}
16141614
}
1615-
1616-
/*
1617-
* schedule call cpufreq_update_policy() for first-online CPU, as that
1618-
* wouldn't be hotplugged-out on suspend. It will verify that the
1619-
* current freq is in sync with what we believe it to be.
1620-
*/
1621-
policy = cpufreq_cpu_get_raw(cpumask_first(cpu_online_mask));
1622-
if (WARN_ON(!policy))
1623-
return;
1624-
1625-
schedule_work(&policy->update);
16261615
}
16271616

16281617
/**
@@ -1950,6 +1939,9 @@ static int cpufreq_start_governor(struct cpufreq_policy *policy)
19501939
{
19511940
int ret;
19521941

1942+
if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
1943+
cpufreq_update_current_freq(policy);
1944+
19531945
ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
19541946
return ret ? ret : cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
19551947
}

0 commit comments

Comments
 (0)