i386: really stop MCEs during code patching

It's CONFIG_X86_MCE, not CONFIG_MCE.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Adrian Bunk 2007-08-10 22:31:06 +02:00 committed by Linus Torvalds
parent 08da5a2ca4
commit d2d0251f6f

View File

@ -388,7 +388,7 @@ void __init alternative_instructions(void)
that might execute the to be patched code.
Other CPUs are not running. */
stop_nmi();
#ifdef CONFIG_MCE
#ifdef CONFIG_X86_MCE
stop_mce();
#endif
@ -426,7 +426,7 @@ void __init alternative_instructions(void)
local_irq_restore(flags);
restart_nmi();
#ifdef CONFIG_MCE
#ifdef CONFIG_X86_MCE
restart_mce();
#endif
}