OSDN Git Service

x86/microcode: Print previous version of microcode after reload
authorAshok Raj <ashok.raj@intel.com>
Mon, 29 Aug 2022 18:10:30 +0000 (18:10 +0000)
committerBorislav Petkov <bp@suse.de>
Fri, 2 Sep 2022 06:01:58 +0000 (08:01 +0200)
Print both old and new versions of microcode after a reload is complete
because knowing the previous microcode version is sometimes important
from a debugging perspective.

  [ bp: Massage commit message. ]

Signed-off-by: Ashok Raj <ashok.raj@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Tony Luck <tony.luck@intel.com>
Link: https://lore.kernel.org/r/20220829181030.722891-1-ashok.raj@intel.com
arch/x86/kernel/cpu/microcode/core.c

index ad57e0e..6a41cee 100644 (file)
@@ -491,7 +491,7 @@ wait_for_siblings:
  */
 static int microcode_reload_late(void)
 {
-       int ret;
+       int old = boot_cpu_data.microcode, ret;
 
        pr_err("Attempting late microcode loading - it is dangerous and taints the kernel.\n");
        pr_err("You should switch to early loading, if possible.\n");
@@ -503,7 +503,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);
+       pr_info("Reload completed, microcode revision: 0x%x -> 0x%x\n",
+               old, boot_cpu_data.microcode);
 
        return ret;
 }