Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <arjan@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Arjan van de Ven and committed by
Linus Torvalds
9a655837 6f1e9403

+3 -1
+3 -1
drivers/cpuidle/cpuidle.c
··· 65 65 return; 66 66 } 67 67 68 + #if 0 69 + /* shows regressions, re-enable for 2.6.29 */ 68 70 /* 69 71 * run any timers that can be run now, at this point 70 72 * before calculating the idle duration etc. 71 73 */ 72 74 hrtimer_peek_ahead_timers(); 73 - 75 + #endif 74 76 /* ask the governor for the next state */ 75 77 next_state = cpuidle_curr_governor->select(dev); 76 78 if (need_resched())