Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 148870
b: refs/heads/master
c: a988d33
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar authored and H. Peter Anvin committed May 28, 2009
1 parent e5df9cc commit e59ae2d
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 06b851d98266b812b2fa23d007cdf53f41194bbb
refs/heads/master: a988d334ae8213c0e0e62327222f6e5e6e52bcf1
65 changes: 65 additions & 0 deletions trunk/arch/x86/kernel/cpu/mcheck/mce_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -1240,3 +1240,68 @@ static __init int mce_init_device(void)
}

device_initcall(mce_init_device);

#ifdef CONFIG_X86_32

int mce_disabled;

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());
}

/* Call the installed machine check handler for this CPU setup. */
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)
{
if (mce_disabled == 1)
return;

switch (c->x86_vendor) {
case X86_VENDOR_AMD:
amd_mcheck_init(c);
break;

case X86_VENDOR_INTEL:
if (c->x86 == 5)
intel_p5_mcheck_init(c);
if (c->x86 == 6)
intel_p6_mcheck_init(c);
if (c->x86 == 15)
intel_p4_mcheck_init(c);
break;

case X86_VENDOR_CENTAUR:
if (c->x86 == 5)
winchip_mcheck_init(c);
break;

default:
break;
}
}

static int __init mcheck_disable(char *str)
{
mce_disabled = 1;
return 1;
}

static int __init mcheck_enable(char *str)
{
mce_disabled = -1;
return 1;
}

__setup("nomce", mcheck_disable);
__setup("mce", mcheck_enable);

#endif /* CONFIG_X86_32 */

0 comments on commit e59ae2d

Please sign in to comment.