cpufreq interactive governor: fix crash on CPU shutdown
authorTodd Poynor <toddpoynor@google.com>
Fri, 24 Dec 2010 01:33:07 +0000 (17:33 -0800)
committermgross <mark.gross@intel.com>
Wed, 9 Nov 2011 20:06:37 +0000 (12:06 -0800)
commit56223b045b8ac965df27c62729bf20c0837c7772
tree4da580454436f7b78ff46e0fa7206771283a5854
parente0c9dfd00cdb7c7b360b62da22f9ae4a351430d3
cpufreq interactive governor: fix crash on CPU shutdown

Don't reference the saved copy of the CPU's cpufreq policy
pointer after the governor has been stopped for the CPU.

When the governor is stopped for a CPU:

* Use del_timer_sync() to wait for a currently-running timer
function to stop.

* Delete the timer when the governor is stopped for the
associated CPU, not when the last CPU is stopped.

* Flush any speed down work ongoing.

* Reset the timestamp that is used to tell if the timer function
has had a chance to run since last idle exit.

Check the governor enabled flag for the CPU before re-arming the
timer from within the timer function and at idle exit (in case
stopping the governor at runtime).

Check the governor enabled flag for the CPU in the worker
function and thread before using the policy pointer.  (There is
still a tiny window in the thread that needs more work to close.)

Change-Id: Ifaddf7a495a8dae15a579a57bdc654f7c47f6ada
Signed-off-by: Todd Poynor <toddpoynor@google.com>
drivers/cpufreq/cpufreq_interactive.c