[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100104104905.GA30574@youquan-linux.bj.intel.com>
Date: Mon, 4 Jan 2010 05:49:05 -0500
From: "Youquan,Song" <youquan.song@...ux.intel.com>
To: hpa@...or.com, tglx@...utronix.de, akpm@...ux-foundation.org
Cc: venkatesh.pallipadi@...el.com, suresh.b.siddha@...el.com,
kent.liu@...el.com, chaohong.guo@...el.com, youquan.song@...el.com,
linux-acpi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH]tickless: Fix tick nohz timer irq0 fail to increaase
Tickless is disabled by nohz=off, which is used in OSVs. But in current kernel,
if tickless is disabled, the timer irq0 will not increase. Because the timer
event handler should be tick_handle_periodic, but actually event handler keep
as tick_handle_oneshot_broadcast which is used in tickless. The root cause is
that it is default to enable high resolution timer which will force to oneshot
broadcast mode.
This patch add tickless enable check before enable high resolution timer
On Nehalem-EX:
Before the patch:
linux-a25n:~ # cat /proc/interrupts | grep timer
0: 334 0 0 0 0 0 ....
LOC: 192248 193931 193851 184441 193803 193625 ....
After the patch:
cat /proc/interrupts | grep timer
0: 223788 0 0 0 0 0 ....
LOC: 13081 238407 238452 229405 238298 235688 ....
Signed-off-by: Youquan, Song <youquan.song@...el.com>
---
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
index f992762..a515bed 100644
--- a/kernel/time/tick-sched.c
+++ b/kernel/time/tick-sched.c
@@ -815,7 +815,7 @@ int tick_check_oneshot_change(int allow_nohz)
if (!timekeeping_valid_for_hres() || !tick_is_oneshot_available())
return 0;
- if (!allow_nohz)
+ if (!allow_nohz && tick_nohz_enabled)
return 1;
tick_nohz_switch_to_nohz();
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists