Messages in this thread Patch in this message |  | | Date | Wed, 12 Jun 2002 12:18:39 -0700 (PDT) | From | Lance Larsh <> | Subject | [PATCH] arch/i386/kernel/bluesmoke.c, kernel 2.4.18 |
| |
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 */ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |