public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix the MCE poll timer logic
@ 2012-06-05  2:35 Chen Gong
  2012-06-05  9:39 ` Thomas Gleixner
  2012-06-06  7:10 ` [tip:x86/urgent] x86/mce: Fix " tip-bot for Chen Gong
  0 siblings, 2 replies; 6+ messages in thread
From: Chen Gong @ 2012-06-05  2:35 UTC (permalink / raw)
  To: tony.luck, tglx; +Cc: bp, x86, linux-kernel, Chen Gong

In commit 82f7af09 (x86/mce: Cleanup timer mess), Thomas just forgot
the "/ 2" there while cleaning up.

Signed-off-by: Chen Gong <gong.chen@linux.intel.com>
---
 arch/x86/kernel/cpu/mcheck/mce.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c
index 0a687fd..a97f3c4 100644
--- a/arch/x86/kernel/cpu/mcheck/mce.c
+++ b/arch/x86/kernel/cpu/mcheck/mce.c
@@ -1274,7 +1274,7 @@ static void mce_timer_fn(unsigned long data)
 	 */
 	iv = __this_cpu_read(mce_next_interval);
 	if (mce_notify_irq())
-		iv = max(iv, (unsigned long) HZ/100);
+		iv = max(iv / 2, (unsigned long) HZ/100);
 	else
 		iv = min(iv * 2, round_jiffies_relative(check_interval * HZ));
 	__this_cpu_write(mce_next_interval, iv);
-- 
1.7.10


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-06-06  9:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-05  2:35 [PATCH] fix the MCE poll timer logic Chen Gong
2012-06-05  9:39 ` Thomas Gleixner
2012-06-06  7:10 ` [tip:x86/urgent] x86/mce: Fix " tip-bot for Chen Gong
2012-06-06  7:51   ` Chen Gong
2012-06-06  9:27     ` Thomas Gleixner
2012-06-06  9:52       ` Chen Gong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox