projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
534c89c
)
x86/microcode: Announce reload operation's completion
author
Borislav Petkov
<bp@suse.de>
Wed, 13 Mar 2019 11:00:22 +0000
(12:00 +0100)
committer
Thomas Gleixner
<tglx@linutronix.de>
Thu, 21 Mar 2019 11:24:39 +0000
(12:24 +0100)
By popular demand, issue a single line to dmesg after the reload
operation completes to let the user know that a reload has at least been
attempted.
Signed-off-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link:
https://lkml.kernel.org/r/20190313110022.8229-1-bp@alien8.de
arch/x86/kernel/cpu/microcode/core.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/cpu/microcode/core.c
b/arch/x86/kernel/cpu/microcode/core.c
index 97f9ada9cedaf4e7cde47e819f7b4a0d6ac39d77..5260185cbf7ba1a77ecc30bdd61a99a2338b159b 100644
(file)
--- a/
arch/x86/kernel/cpu/microcode/core.c
+++ b/
arch/x86/kernel/cpu/microcode/core.c
@@
-608,6
+608,8
@@
static int microcode_reload_late(void)
if (ret > 0)
microcode_check();
+ pr_info("Reload completed, microcode revision: 0x%x\n", boot_cpu_data.microcode);
+
return ret;
}