diff options
author | Daniel J Blueman <daniel@numascale-asia.com> | 2012-11-27 01:32:10 -0500 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2013-01-10 10:17:58 -0500 |
commit | 8b84c8df38d5796da2e8cd051666d203ddabcb62 (patch) | |
tree | 58a5a8f81311841c887c5c2118667a062ec7e31f /arch | |
parent | 772c3ff385eda0d0b4744596f87b79a17f8c9282 (diff) |
x86, AMD, NB: Use u16 for northbridge IDs in amd_get_nb_id
Change amd_get_nb_id to return u16 to support >255 memory controllers,
and related consistency fixes.
Signed-off-by: Daniel J Blueman <daniel@numascale-asia.com>
Link: http://lkml.kernel.org/r/1353997932-8475-2-git-send-email-daniel@numascale-asia.com
Signed-off-by: Borislav Petkov <bp@alien8.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/processor.h | 2 | ||||
-rw-r--r-- | arch/x86/kernel/cpu/amd.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 888184b2fc85..cf500543f6ff 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h | |||
@@ -943,7 +943,7 @@ extern void start_thread(struct pt_regs *regs, unsigned long new_ip, | |||
943 | extern int get_tsc_mode(unsigned long adr); | 943 | extern int get_tsc_mode(unsigned long adr); |
944 | extern int set_tsc_mode(unsigned int val); | 944 | extern int set_tsc_mode(unsigned int val); |
945 | 945 | ||
946 | extern int amd_get_nb_id(int cpu); | 946 | extern u16 amd_get_nb_id(int cpu); |
947 | 947 | ||
948 | struct aperfmperf { | 948 | struct aperfmperf { |
949 | u64 aperf, mperf; | 949 | u64 aperf, mperf; |
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index 15239fffd6fe..782c456eaa01 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c | |||
@@ -364,9 +364,9 @@ static void __cpuinit amd_detect_cmp(struct cpuinfo_x86 *c) | |||
364 | #endif | 364 | #endif |
365 | } | 365 | } |
366 | 366 | ||
367 | int amd_get_nb_id(int cpu) | 367 | u16 amd_get_nb_id(int cpu) |
368 | { | 368 | { |
369 | int id = 0; | 369 | u16 id = 0; |
370 | #ifdef CONFIG_SMP | 370 | #ifdef CONFIG_SMP |
371 | id = per_cpu(cpu_llc_id, cpu); | 371 | id = per_cpu(cpu_llc_id, cpu); |
372 | #endif | 372 | #endif |