Skip to content

Commit 9a65583

Browse files
fenrus75torvalds
authored andcommitted
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: Arjan van de Ven <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 6f1e940 commit 9a65583

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/cpuidle/cpuidle.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,14 @@ static void cpuidle_idle_call(void)
6565
return;
6666
}
6767

68+
#if 0
69+
/* shows regressions, re-enable for 2.6.29 */
6870
/*
6971
* run any timers that can be run now, at this point
7072
* before calculating the idle duration etc.
7173
*/
7274
hrtimer_peek_ahead_timers();
73-
75+
#endif
7476
/* ask the governor for the next state */
7577
next_state = cpuidle_curr_governor->select(dev);
7678
if (need_resched())

0 commit comments

Comments
 (0)