We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 598e719 commit 92853a7Copy full SHA for 92853a7
arch/x86/kernel/cpu/common.c
@@ -76,6 +76,9 @@ u32 elf_hwcap2 __read_mostly;
76
int smp_num_siblings = 1;
77
EXPORT_SYMBOL(smp_num_siblings);
78
79
+unsigned int __max_die_per_package __read_mostly = 1;
80
+EXPORT_SYMBOL(__max_die_per_package);
81
+
82
static struct ppin_info {
83
int feature;
84
int msr_ppin_ctl;
arch/x86/kernel/cpu/topology.c
@@ -25,9 +25,6 @@
25
#define BITS_SHIFT_NEXT_LEVEL(eax) ((eax) & 0x1f)
26
#define LEVEL_MAX_SIBLINGS(ebx) ((ebx) & 0xffff)
27
28
-unsigned int __max_die_per_package __read_mostly = 1;
29
-EXPORT_SYMBOL(__max_die_per_package);
30
-
31
#ifdef CONFIG_SMP
32
/*
33
* Check if given CPUID extended topology "leaf" is implemented
0 commit comments