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

📄 summit.c

📁 xen 3.2.2 源码
💻 C
字号:
/*  * APIC driver for the IBM "Summit" chipset. */#include <xen/config.h>#include <xen/cpumask.h>#include <asm/current.h>#include <asm/mpspec.h>#include <asm/genapic.h>#include <asm/fixmap.h>#include <asm/apicdef.h>#include <xen/kernel.h>#include <xen/string.h>#include <xen/smp.h>#include <xen/init.h>#include <asm/mach-summit/mach_mpparse.h>static __init int probe_summit(void){ 	/* probed later in mptable/ACPI hooks */	return 0;} struct genapic apic_summit = {	APIC_INIT("summit", probe_summit),	GENAPIC_PHYS};

⌨️ 快捷键说明

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