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

📄 smpboot.c

📁 xen 3.2.2 源码
💻 C
字号:
#include <xen/config.h>#include <xen/init.h>#include <xen/types.h>#include <xen/cpumask.h>#include <asm/cache.h>/* representing HT siblings of each logical CPU */cpumask_t cpu_sibling_map[NR_CPUS] __read_mostly;EXPORT_SYMBOL(cpu_sibling_map);/* representing HT and core siblings of each logical CPU */cpumask_t cpu_core_map[NR_CPUS] __read_mostly;EXPORT_SYMBOL(cpu_core_map);/* bitmap of online cpus */cpumask_t cpu_online_map __read_mostly;EXPORT_SYMBOL(cpu_online_map);#ifdef CONFIG_HOTPLUG_CPUcpumask_t cpu_possible_map = CPU_MASK_ALL;#elsecpumask_t cpu_possible_map;#endifEXPORT_SYMBOL(cpu_possible_map);u8 x86_cpu_to_apicid[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0xff };EXPORT_SYMBOL(x86_cpu_to_apicid);

⌨️ 快捷键说明

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