Skip to content

Commit

Permalink
regression: disable timer peek-ahead for 2.6.28
Browse files Browse the repository at this point in the history
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: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
fenrus75 authored and torvalds committed Nov 10, 2008
1 parent 6f1e940 commit 9a65583
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/cpuidle/cpuidle.c
Expand Up @@ -65,12 +65,14 @@ static void cpuidle_idle_call(void)
return;
}

#if 0
/* shows regressions, re-enable for 2.6.29 */
/*
* run any timers that can be run now, at this point
* before calculating the idle duration etc.
*/
hrtimer_peek_ahead_timers();

#endif
/* ask the governor for the next state */
next_state = cpuidle_curr_governor->select(dev);
if (need_resched())
Expand Down

0 comments on commit 9a65583

Please sign in to comment.