Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 148858
b: refs/heads/master
c: 3b58dfd
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar authored and H. Peter Anvin committed May 28, 2009
1 parent 2e4ee3a commit c799ac6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e9eee03e99d519599eb615c3e251d5f6cc4be57d
refs/heads/master: 3b58dfd04bdfa52e717ead8f3c7622610eb7f950
15 changes: 8 additions & 7 deletions trunk/arch/x86/kernel/cpu/mcheck/mce_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
* mce.c - x86 Machine Check Exception Reporting
* (c) 2002 Alan Cox <alan@lxorguk.ukuu.org.uk>, Dave Jones <davej@redhat.com>
*/

#include <linux/init.h>
#include <linux/types.h>
#include <linux/thread_info.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/init.h>
#include <linux/smp.h>
#include <linux/thread_info.h>

#include <asm/processor.h>
#include <asm/system.h>
Expand All @@ -17,18 +16,20 @@
#include "mce.h"

int mce_disabled;
int nr_mce_banks;

int nr_mce_banks;
EXPORT_SYMBOL_GPL(nr_mce_banks); /* non-fatal.o */

/* Handle unconfigured int18 (should never happen) */
static void unexpected_machine_check(struct pt_regs *regs, long error_code)
{
printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n", smp_processor_id());
printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
smp_processor_id());
}

/* Call the installed machine check handler for this CPU setup. */
void (*machine_check_vector)(struct pt_regs *, long error_code) = unexpected_machine_check;
void (*machine_check_vector)(struct pt_regs *, long error_code) =
unexpected_machine_check;

/* This has to be run for each processor */
void mcheck_init(struct cpuinfo_x86 *c)
Expand Down

0 comments on commit c799ac6

Please sign in to comment.