From: Michael Wang <[email protected]> tick_nohz_irq_exit() will make sure the tick timer reprogram correctly after cpu enter idle.
With out this check, after the interrupt, tick timer will be enabled even cpu is still in idle, this will cause inaccuracy. Signed-off-by: Michael Wang <[email protected]> --- arch/linsched/kernel/irq.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/linsched/kernel/irq.c b/arch/linsched/kernel/irq.c index 3000d47..5f88af4 100644 --- a/arch/linsched/kernel/irq.c +++ b/arch/linsched/kernel/irq.c @@ -2,6 +2,7 @@ #include <asm/hardirq.h> #include <linux/sched.h> #include <linux/irq_work.h> +#include <linux/tick.h> unsigned long linsched_irq_flags = ARCH_IRQ_ENABLED; @@ -87,6 +88,9 @@ void irq_exit(void) sub_preempt_count(IRQ_EXIT_OFFSET); if (!in_interrupt() && local_softirq_pending()) do_softirq(); + + if (idle_cpu(smp_processor_id()) && !in_interrupt() && !need_resched()) + tick_nohz_irq_exit(); } void local_bh_enable_ip(unsigned long ip) -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

