commit | af2eb17bac41a116b73d85b3fb160405c32bea5b | [log] [tgz] |
---|---|---|
author | Linus Torvalds <torvalds@g5.osdl.org> | Fri Dec 02 23:09:06 2005 -0800 |
committer | Linus Torvalds <torvalds@g5.osdl.org> | Fri Dec 02 23:09:06 2005 -0800 |
tree | 9d4a7d6f04f6c2f935179d7263e798adda0614d4 | |
parent | 1b0997f561bf46689cc6e0903f342e9bf2506bf1 [diff] [blame] |
Add missing "local_irq_enable()" to C2/C3 exit logic Silly bug crept in with the C2/C3 TIF_POLLING_NRFLAG fixes. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index acd875e..5f51057 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c
@@ -296,6 +296,7 @@ smp_mb__after_clear_bit(); if (need_resched()) { set_thread_flag(TIF_POLLING_NRFLAG); + local_irq_enable(); return; } }