aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/kernel/process.c')
-rw-r--r--arch/arm/kernel/process.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c
index 047d3e40e470..db4ffd09ee23 100644
--- a/arch/arm/kernel/process.c
+++ b/arch/arm/kernel/process.c
@@ -199,7 +199,16 @@ void cpu_idle(void)
199#ifdef CONFIG_PL310_ERRATA_769419 199#ifdef CONFIG_PL310_ERRATA_769419
200 wmb(); 200 wmb();
201#endif 201#endif
202 if (hlt_counter) { 202 /*
203 * In poll mode we reenable interrupts and spin.
204 *
205 * Also if we detected in the wakeup from idle
206 * path that the tick broadcast device expired
207 * for us, we don't want to go deep idle as we
208 * know that the IPI is going to arrive right
209 * away
210 */
211 if (hlt_counter || tick_check_broadcast_expired()) {
203 local_irq_enable(); 212 local_irq_enable();
204 cpu_relax(); 213 cpu_relax();
205 } else if (!need_resched()) { 214 } else if (!need_resched()) {