Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2238f10 authored by Chen Gong's avatar Chen Gong Committed by Tony Luck
Browse files

x86/mce: Fix the MCE poll timer logic



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

Signed-off-by: default avatarChen Gong <gong.chen@linux.intel.com>
Acked-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 82f7af09
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1266,7 +1266,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);