From: Michael Wang <wangyun@linux.vnet.ibm.com>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Paul Turner <pjt@google.com>,
Dhaval Giani <dhaval.giani@gmail.com>,
Peter Zijlstra <a.p.zijlstra@chello.nl>
Subject: [RFC PATCH 2/4] linsched: add check on invoke tick_nohz_irq_exit() in irq_exit()
Date: Mon, 03 Sep 2012 11:58:06 +0800 [thread overview]
Message-ID: <50442ACE.9070807@linux.vnet.ibm.com> (raw)
From: Michael Wang <wangyun@linux.vnet.ibm.com>
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 <wangyun@linux.vnet.ibm.com>
---
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
next reply other threads:[~2012-09-03 3:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-03 3:58 Michael Wang [this message]
-- strict thread matches above, loose matches on Subject: below --
2012-04-16 3:37 [RFC PATCH 2/4] linsched: add check on invoke "tick_nohz_irq_exit" in "irq_exit" Michael Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50442ACE.9070807@linux.vnet.ibm.com \
--to=wangyun@linux.vnet.ibm.com \
--cc=a.p.zijlstra@chello.nl \
--cc=dhaval.giani@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pjt@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox