Commit d8c3b52c authored by Borislav Petkov's avatar Borislav Petkov Committed by Thomas Gleixner

x86/microcode/intel: Look into the patch cache first

The cache might contain a newer patch - look in there first.

A follow-on change will make sure newest patches are loaded into the
cache of microcode patches.
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Tested-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Tested-by: default avatarAshok Raj <ashok.raj@intel.com>
Cc: Arjan Van De Ven <arjan.van.de.ven@intel.com>
Link: https://lkml.kernel.org/r/20180228102846.13447-6-bp@alien8.de
parent 30ec26da
...@@ -791,9 +791,9 @@ static int collect_cpu_info(int cpu_num, struct cpu_signature *csig) ...@@ -791,9 +791,9 @@ static int collect_cpu_info(int cpu_num, struct cpu_signature *csig)
static enum ucode_state apply_microcode_intel(int cpu) static enum ucode_state apply_microcode_intel(int cpu)
{ {
struct microcode_intel *mc; struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
struct ucode_cpu_info *uci;
struct cpuinfo_x86 *c = &cpu_data(cpu); struct cpuinfo_x86 *c = &cpu_data(cpu);
struct microcode_intel *mc;
static int prev_rev; static int prev_rev;
u32 rev; u32 rev;
...@@ -801,11 +801,10 @@ static enum ucode_state apply_microcode_intel(int cpu) ...@@ -801,11 +801,10 @@ static enum ucode_state apply_microcode_intel(int cpu)
if (WARN_ON(raw_smp_processor_id() != cpu)) if (WARN_ON(raw_smp_processor_id() != cpu))
return UCODE_ERROR; return UCODE_ERROR;
uci = ucode_cpu_info + cpu; /* Look for a newer patch in our cache: */
mc = uci->mc; mc = find_patch(uci);
if (!mc) { if (!mc) {
/* Look for a newer patch in our cache: */ mc = uci->mc;
mc = find_patch(uci);
if (!mc) if (!mc)
return UCODE_NFOUND; return UCODE_NFOUND;
} }
......
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