⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 non-fatal.c

📁 xen 3.2.2 源码
💻 C
字号:
/* * Non Fatal Machine Check Exception Reporting * * (C) Copyright 2002 Dave Jones. <davej@codemonkey.org.uk> * * This file contains routines to check for non-fatal MCEs every 15s * */#include <xen/config.h>#include <xen/init.h>#include <xen/types.h>#include <xen/kernel.h>#include <xen/smp.h>#include <xen/timer.h>#include <xen/errno.h>#include <asm/processor.h> #include <asm/system.h>#include <asm/msr.h>#include "mce.h"static int firstbank;static struct timer mce_timer;#define MCE_PERIOD MILLISECS(15000)static void mce_checkregs (void *info){	u32 low, high;	int i;	for (i=firstbank; i<nr_mce_banks; i++) {		rdmsr (MSR_IA32_MC0_STATUS+i*4, low, high);		if (high & (1<<31)) {			printk(KERN_INFO "MCE: The hardware reports a non "				"fatal, correctable incident occurred on "				"CPU %d.\n",				smp_processor_id());			printk (KERN_INFO "Bank %d: %08x%08x\n", i, high, low);			/* Scrub the error so we don't pick it up in MCE_RATE seconds time. */			wrmsr (MSR_IA32_MC0_STATUS+i*4, 0UL, 0UL);			/* Serialize */			wmb();			add_taint(TAINT_MACHINE_CHECK);		}	}}static void mce_work_fn(void *data){ 	on_each_cpu(mce_checkregs, NULL, 1, 1);	set_timer(&mce_timer, NOW() + MCE_PERIOD);}static int __init init_nonfatal_mce_checker(void){	struct cpuinfo_x86 *c = &boot_cpu_data;	/* Check for MCE support */	if (!cpu_has(c, X86_FEATURE_MCE))		return -ENODEV;	/* Check for PPro style MCA */	if (!cpu_has(c, X86_FEATURE_MCA))		return -ENODEV;	/* Some Athlons misbehave when we frob bank 0 */	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&		boot_cpu_data.x86 == 6)			firstbank = 1;	else			firstbank = 0;	/*	 * Check for non-fatal errors every MCE_RATE s	 */	init_timer(&mce_timer, mce_work_fn, NULL, 0);	set_timer(&mce_timer, NOW() + MCE_PERIOD);	printk(KERN_INFO "Machine check exception polling timer started.\n");	return 0;}__initcall(init_nonfatal_mce_checker);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -