]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
cpufreq: update 'cpufreq_suspended' after stopping governors
authorViresh Kumar <viresh.kumar@linaro.org>
Tue, 30 Sep 2014 04:03:17 +0000 (09:33 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 30 Sep 2014 19:02:34 +0000 (21:02 +0200)
commitb1b12babe3b72cfb08b875245e5a5d7c2747c772
tree75fe780417f1cf8a6fc00b835f94e80e0452b15c
parentd62dbf77f7dfaa6fb455b4b9828069a11965929c
cpufreq: update 'cpufreq_suspended' after stopping governors

Commit 8e30444e1530 ("cpufreq: fix cpufreq suspend/resume for intel_pstate")
introduced a bug where the governors wouldn't be stopped anymore for
->target{_index}() drivers during suspend. This happens because
'cpufreq_suspended' is updated before stopping the governors during suspend
and due to this __cpufreq_governor() would return early due to this check:

/* Don't start any governor operations if we are entering suspend */
if (cpufreq_suspended)
return 0;

Fixes: 8e30444e1530 ("cpufreq: fix cpufreq suspend/resume for intel_pstate")
Cc: 3.15+ <stable@vger.kernel.org> # 3.15+: 8e30444e1530 "cpufreq: fix cpufreq suspend/resume for intel_pstate"
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpufreq/cpufreq.c