Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Wed, 12 Jun 2002 13:46:00 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Wed, 12 Jun 2002 13:45:59 -0400 Received: from inet-mail1.oracle.com ([148.87.2.201]:52438 "EHLO inet-mail1.oracle.com") by vger.kernel.org with ESMTP id ; Wed, 12 Jun 2002 13:45:58 -0400 Date: Wed, 12 Jun 2002 12:18:39 -0700 (PDT) From: Lance Larsh X-X-Sender: To: cc: Subject: [PATCH] arch/i386/kernel/bluesmoke.c, kernel 2.4.18 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org 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/