Commit 8b84c8df authored by Daniel J Blueman's avatar Daniel J Blueman Committed by Borislav Petkov

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: default avatarDaniel J Blueman <daniel@numascale-asia.com>
Link: http://lkml.kernel.org/r/1353997932-8475-2-git-send-email-daniel@numascale-asia.comSigned-off-by: default avatarBorislav Petkov <bp@alien8.de>
parent 772c3ff3
...@@ -943,7 +943,7 @@ extern void start_thread(struct pt_regs *regs, unsigned long new_ip, ...@@ -943,7 +943,7 @@ extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
extern int get_tsc_mode(unsigned long adr); extern int get_tsc_mode(unsigned long adr);
extern int set_tsc_mode(unsigned int val); extern int set_tsc_mode(unsigned int val);
extern int amd_get_nb_id(int cpu); extern u16 amd_get_nb_id(int cpu);
struct aperfmperf { struct aperfmperf {
u64 aperf, mperf; u64 aperf, mperf;
......
...@@ -364,9 +364,9 @@ static void __cpuinit amd_detect_cmp(struct cpuinfo_x86 *c) ...@@ -364,9 +364,9 @@ static void __cpuinit amd_detect_cmp(struct cpuinfo_x86 *c)
#endif #endif
} }
int amd_get_nb_id(int cpu) u16 amd_get_nb_id(int cpu)
{ {
int id = 0; u16 id = 0;
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
id = per_cpu(cpu_llc_id, cpu); id = per_cpu(cpu_llc_id, cpu);
#endif #endif
......
...@@ -939,7 +939,8 @@ static u64 get_error_address(struct mce *m) ...@@ -939,7 +939,8 @@ static u64 get_error_address(struct mce *m)
struct amd64_pvt *pvt; struct amd64_pvt *pvt;
u64 cc6_base, tmp_addr; u64 cc6_base, tmp_addr;
u32 tmp; u32 tmp;
u8 mce_nid, intlv_en; u16 mce_nid;
u8 intlv_en;
if ((addr & GENMASK(24, 47)) >> 24 != 0x00fdf7) if ((addr & GENMASK(24, 47)) >> 24 != 0x00fdf7)
return addr; return addr;
...@@ -2181,7 +2182,7 @@ static int init_csrows(struct mem_ctl_info *mci) ...@@ -2181,7 +2182,7 @@ static int init_csrows(struct mem_ctl_info *mci)
} }
/* get all cores on this DCT */ /* get all cores on this DCT */
static void get_cpus_on_this_dct_cpumask(struct cpumask *mask, unsigned nid) static void get_cpus_on_this_dct_cpumask(struct cpumask *mask, u16 nid)
{ {
int cpu; int cpu;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment