diff options
author | Borislav Petkov <bpetkov@suse.de> | 2018-04-27 16:34:34 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-05-06 12:49:14 +0200 |
commit | f8b64d08dde2714c62751d18ba77f4aeceb161d3 (patch) | |
tree | 90c627407c305ede9985287e007252bb78925e2f /arch/x86/include/asm/smp.h | |
parent | 60882cc159e1416fb1d17210de60d4a3ba04e613 (diff) | |
download | blackbird-obmc-linux-f8b64d08dde2714c62751d18ba77f4aeceb161d3.tar.gz blackbird-obmc-linux-f8b64d08dde2714c62751d18ba77f4aeceb161d3.zip |
x86/CPU/AMD: Have smp_num_siblings and cpu_llc_id always be present
Move smp_num_siblings and cpu_llc_id to cpu/common.c so that they're
always present as symbols and not only in the CONFIG_SMP case. Then,
other code using them doesn't need ugly ifdeffery anymore. Get rid of
some ifdeffery.
Signed-off-by: Borislav Petkov <bpetkov@suse.de>
Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1524864877-111962-2-git-send-email-suravee.suthikulpanit@amd.com
Diffstat (limited to 'arch/x86/include/asm/smp.h')
-rw-r--r-- | arch/x86/include/asm/smp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index f75bff8f9d82..547c4fe50711 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h @@ -171,7 +171,6 @@ static inline int wbinvd_on_all_cpus(void) wbinvd(); return 0; } -#define smp_num_siblings 1 #endif /* CONFIG_SMP */ extern unsigned disabled_cpus; |