* [PATCH] arch/i386/kernel/bluesmoke.c, kernel 2.4.18
@ 2002-06-12 19:18 Lance Larsh
2002-06-12 17:54 ` Dave Jones
0 siblings, 1 reply; 2+ messages in thread
From: Lance Larsh @ 2002-06-12 19:18 UTC (permalink / raw)
To: linux-kernel; +Cc: marcelo
In the i386 machine check exception handler, MSR_IA32_MCi_ADDR is not
output correctly. Instead, MSR_IA32_MCi_STATUS is output a second time in
its place.
-Lance
--- 2.4.18/arch/i386/kernel/bluesmoke.c Mon Nov 12 09:59:43 2001
+++ 2.4.18-fix/arch/i386/kernel/bluesmoke.c Wed Jun 12 10:30:12 2002
@@ -47,7 +47,7 @@
{
rdmsr(MSR_IA32_MC0_ADDR+i*4, alow, ahigh);
printk(" at %08x%08x",
- high, low);
+ ahigh, alow);
}
printk("\n");
/* Clear it */
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2002-06-12 17:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-12 19:18 [PATCH] arch/i386/kernel/bluesmoke.c, kernel 2.4.18 Lance Larsh
2002-06-12 17:54 ` Dave Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox