From: Dave Jones <davej@redhat.com>
To: kwijibo@zianet.com
Cc: linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: Machine check expection panic
Date: Thu, 7 Aug 2003 01:27:25 +0100 [thread overview]
Message-ID: <20030807002722.GA3579@suse.de> (raw)
In-Reply-To: <3F3182B5.3040301@zianet.com>
On Wed, Aug 06, 2003 at 04:35:33PM -0600, kwijibo@zianet.com wrote:
> I decided to try out the new 2.6.0-test2 kernel today but
> ran into a problem with booting it. I narrowed it down to
> the machine check expection code. I get this panic from
> the kernel on boot when I have it enabled
>
> CPU0: Machine Check Exception: 0000000000000004
> Bank0: f606200000000833 at 0000000000004040
> Kernel Panic: CPU context corrupt.
Missing bugfix from the 2.4 kernel that never made it into 2.5.
Chances are you (and many other Athlon users) are hitting problems
because of this chunk..
Already pushed to Linus/Andrew.
Dave
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1055 -> 1.1056
# arch/i386/kernel/cpu/mcheck/k7.c 1.4 -> 1.5
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/08/06 davej@redhat.com 1.1056
# stupid off by one
# --------------------------------------------
#
diff -Nru a/arch/i386/kernel/cpu/mcheck/k7.c b/arch/i386/kernel/cpu/mcheck/k7.c
--- a/arch/i386/kernel/cpu/mcheck/k7.c Wed Aug 6 23:33:40 2003
+++ b/arch/i386/kernel/cpu/mcheck/k7.c Wed Aug 6 23:33:40 2003
@@ -81,7 +81,7 @@
wrmsr (MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
nr_mce_banks = l & 0xff;
- for (i=0; i<nr_mce_banks; i++) {
+ for (i=1; i<nr_mce_banks; i++) {
wrmsr (MSR_IA32_MC0_CTL+4*i, 0xffffffff, 0xffffffff);
wrmsr (MSR_IA32_MC0_STATUS+4*i, 0x0, 0x0);
}
next prev parent reply other threads:[~2003-08-07 0:29 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-08-06 22:35 Machine check expection panic kwijibo
2003-08-06 23:05 ` Matt Mackall
2003-08-07 0:27 ` Dave Jones [this message]
[not found] <3F3182B5.3040301@zianet.com.suse.lists.linux.kernel>
[not found] ` <20030807002722.GA3579@suse.de.suse.lists.linux.kernel>
2003-08-07 1:00 ` Andi Kleen
2003-08-07 1:34 ` Dave Jones
2003-08-10 8:12 ` kwijibo
2003-08-10 13:07 ` Andi Kleen
2003-08-10 21:04 ` kwijibo
2003-08-11 10:15 ` Petr Vandrovec
2003-08-11 11:34 ` Bartlomiej Zolnierkiewicz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030807002722.GA3579@suse.de \
--to=davej@redhat.com \
--cc=kwijibo@zianet.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox