Commit 9a655837 authored by Arjan van de Ven's avatar Arjan van de Ven Committed by Linus Torvalds

regression: disable timer peek-ahead for 2.6.28

It's showing up as regressions; disabling it very likely just papers
over an underlying issue, but time is running out for 2.6.28, lets get
back to this for 2.6.29

Fixes: #11826 and #11893
Signed-off-by: default avatarArjan van de Ven <arjan@linux.intel.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6f1e9403
...@@ -65,12 +65,14 @@ static void cpuidle_idle_call(void) ...@@ -65,12 +65,14 @@ static void cpuidle_idle_call(void)
return; return;
} }
#if 0
/* shows regressions, re-enable for 2.6.29 */
/* /*
* run any timers that can be run now, at this point * run any timers that can be run now, at this point
* before calculating the idle duration etc. * before calculating the idle duration etc.
*/ */
hrtimer_peek_ahead_timers(); hrtimer_peek_ahead_timers();
#endif
/* ask the governor for the next state */ /* ask the governor for the next state */
next_state = cpuidle_curr_governor->select(dev); next_state = cpuidle_curr_governor->select(dev);
if (need_resched()) if (need_resched())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment