Skip to content

Commit 2ef84b3

Browse files
suryasaimadhuKAGA-KOKO
authored andcommitted
x86, microcode, AMD: Do not use smp_processor_id() in preemtible context
Hand down the cpu number instead, otherwise lockdep screams when doing echo 1 > /sys/devices/system/cpu/microcode/reload. BUG: using smp_processor_id() in preemptible [00000000] code: amd64-microcode/2470 caller is debug_smp_processor_id+0x12/0x20 CPU: 1 PID: 2470 Comm: amd64-microcode Not tainted 3.18.0-rc6+ #26 ... Signed-off-by: Borislav Petkov <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]>
1 parent 009d043 commit 2ef84b3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

arch/x86/include/asm/microcode_amd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static inline u16 find_equiv_id(struct equiv_cpu_entry *equiv_cpu_table,
5959

6060
extern int __apply_microcode_amd(struct microcode_amd *mc_amd);
6161
extern int apply_microcode_amd(int cpu);
62-
extern enum ucode_state load_microcode_amd(u8 family, const u8 *data, size_t size);
62+
extern enum ucode_state load_microcode_amd(int cpu, u8 family, const u8 *data, size_t size);
6363

6464
#define PATCH_MAX_SIZE PAGE_SIZE
6565
extern u8 amd_ucode_patch[PATCH_MAX_SIZE];

arch/x86/kernel/cpu/microcode/amd.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ static enum ucode_state __load_microcode_amd(u8 family, const u8 *data,
376376
return UCODE_OK;
377377
}
378378

379-
enum ucode_state load_microcode_amd(u8 family, const u8 *data, size_t size)
379+
enum ucode_state load_microcode_amd(int cpu, u8 family, const u8 *data, size_t size)
380380
{
381381
enum ucode_state ret;
382382

@@ -390,8 +390,8 @@ enum ucode_state load_microcode_amd(u8 family, const u8 *data, size_t size)
390390

391391
#if defined(CONFIG_MICROCODE_AMD_EARLY) && defined(CONFIG_X86_32)
392392
/* save BSP's matching patch for early load */
393-
if (cpu_data(smp_processor_id()).cpu_index == boot_cpu_data.cpu_index) {
394-
struct ucode_patch *p = find_patch(smp_processor_id());
393+
if (cpu_data(cpu).cpu_index == boot_cpu_data.cpu_index) {
394+
struct ucode_patch *p = find_patch(cpu);
395395
if (p) {
396396
memset(amd_ucode_patch, 0, PATCH_MAX_SIZE);
397397
memcpy(amd_ucode_patch, p->data, min_t(u32, ksize(p->data),
@@ -444,7 +444,7 @@ static enum ucode_state request_microcode_amd(int cpu, struct device *device,
444444
goto fw_release;
445445
}
446446

447-
ret = load_microcode_amd(c->x86, fw->data, fw->size);
447+
ret = load_microcode_amd(cpu, c->x86, fw->data, fw->size);
448448

449449
fw_release:
450450
release_firmware(fw);

arch/x86/kernel/cpu/microcode/amd_early.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ int __init save_microcode_in_initrd_amd(void)
389389
eax = cpuid_eax(0x00000001);
390390
eax = ((eax >> 8) & 0xf) + ((eax >> 20) & 0xff);
391391

392-
ret = load_microcode_amd(eax, container, container_size);
392+
ret = load_microcode_amd(smp_processor_id(), eax, container, container_size);
393393
if (ret != UCODE_OK)
394394
retval = -EINVAL;
395395

0 commit comments

Comments
 (0)