|
@@ -67,7 +67,7 @@ int smp_num_siblings = 1;
|
|
|
EXPORT_SYMBOL(smp_num_siblings);
|
|
|
|
|
|
/* Last level cache ID of each logical CPU */
|
|
|
-DEFINE_PER_CPU(u8, cpu_llc_id) = BAD_APICID;
|
|
|
+DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
|
|
|
|
|
|
/* representing HT siblings of each logical CPU */
|
|
|
DEFINE_PER_CPU(cpumask_t, cpu_sibling_map);
|
|
@@ -92,10 +92,10 @@ DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
|
|
|
EXPORT_PER_CPU_SYMBOL(cpu_info);
|
|
|
|
|
|
/* which logical CPU number maps to which CPU (physical APIC ID) */
|
|
|
-u8 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
|
|
|
+u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
|
|
|
{ [0 ... NR_CPUS-1] = BAD_APICID };
|
|
|
void *x86_cpu_to_apicid_early_ptr;
|
|
|
-DEFINE_PER_CPU(u8, x86_cpu_to_apicid) = BAD_APICID;
|
|
|
+DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID;
|
|
|
EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
|
|
|
|
|
|
u8 apicid_2_node[MAX_APICID];
|