Skip to content

Commit fbf96cf

Browse files
suryasaimadhuKAGA-KOKO
authored andcommitted
x86/MCE/AMD: Read MCx_MISC block addresses on any CPU
We used rdmsr_safe_on_cpu() to make sure we're reading the proper CPU's MISC block addresses. However, that caused trouble with CPU hotplug due to the _on_cpu() helper issuing an IPI while IRQs are disabled. But we don't have to do that: the block addresses are the same on any CPU so we can read them on any CPU. (What practically happens is, we read them on the BSP and cache them, and for later reads, we service them from the cache). Suggested-by: Yazen Ghannam <[email protected]> Signed-off-by: Borislav Petkov <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]>
1 parent 95b5c0a commit fbf96cf

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

arch/x86/kernel/cpu/mcheck/mce_amd.c

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,7 @@ static void deferred_error_interrupt_enable(struct cpuinfo_x86 *c)
436436
wrmsr(MSR_CU_DEF_ERR, low, high);
437437
}
438438

439-
static u32 smca_get_block_address(unsigned int cpu, unsigned int bank,
440-
unsigned int block)
439+
static u32 smca_get_block_address(unsigned int bank, unsigned int block)
441440
{
442441
u32 low, high;
443442
u32 addr = 0;
@@ -456,13 +455,13 @@ static u32 smca_get_block_address(unsigned int cpu, unsigned int bank,
456455
* For SMCA enabled processors, BLKPTR field of the first MISC register
457456
* (MCx_MISC0) indicates presence of additional MISC regs set (MISC1-4).
458457
*/
459-
if (rdmsr_safe_on_cpu(cpu, MSR_AMD64_SMCA_MCx_CONFIG(bank), &low, &high))
458+
if (rdmsr_safe(MSR_AMD64_SMCA_MCx_CONFIG(bank), &low, &high))
460459
goto out;
461460

462461
if (!(low & MCI_CONFIG_MCAX))
463462
goto out;
464463

465-
if (!rdmsr_safe_on_cpu(cpu, MSR_AMD64_SMCA_MCx_MISC(bank), &low, &high) &&
464+
if (!rdmsr_safe(MSR_AMD64_SMCA_MCx_MISC(bank), &low, &high) &&
466465
(low & MASK_BLKPTR_LO))
467466
addr = MSR_AMD64_SMCA_MCx_MISCy(bank, block - 1);
468467

@@ -471,7 +470,7 @@ static u32 smca_get_block_address(unsigned int cpu, unsigned int bank,
471470
return addr;
472471
}
473472

474-
static u32 get_block_address(unsigned int cpu, u32 current_addr, u32 low, u32 high,
473+
static u32 get_block_address(u32 current_addr, u32 low, u32 high,
475474
unsigned int bank, unsigned int block)
476475
{
477476
u32 addr = 0, offset = 0;
@@ -480,7 +479,7 @@ static u32 get_block_address(unsigned int cpu, u32 current_addr, u32 low, u32 hi
480479
return addr;
481480

482481
if (mce_flags.smca)
483-
return smca_get_block_address(cpu, bank, block);
482+
return smca_get_block_address(bank, block);
484483

485484
/* Fall back to method we used for older processors: */
486485
switch (block) {
@@ -558,7 +557,7 @@ void mce_amd_feature_init(struct cpuinfo_x86 *c)
558557
smca_configure(bank, cpu);
559558

560559
for (block = 0; block < NR_BLOCKS; ++block) {
561-
address = get_block_address(cpu, address, low, high, bank, block);
560+
address = get_block_address(address, low, high, bank, block);
562561
if (!address)
563562
break;
564563

@@ -1175,7 +1174,7 @@ static int allocate_threshold_blocks(unsigned int cpu, unsigned int bank,
11751174
if (err)
11761175
goto out_free;
11771176
recurse:
1178-
address = get_block_address(cpu, address, low, high, bank, ++block);
1177+
address = get_block_address(address, low, high, bank, ++block);
11791178
if (!address)
11801179
return 0;
11811180

0 commit comments

Comments
 (0)