x86/microcode: Issue the debug printk on resume only on success
authorBorislav Petkov <bp@suse.de>
Tue, 25 Oct 2016 09:55:17 +0000 (11:55 +0200)
committerIngo Molnar <mingo@kernel.org>
Tue, 25 Oct 2016 10:28:58 +0000 (12:28 +0200)
Move it after the patch application function which also checks whether
we were successful.

Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20161025095522.11964-8-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/cpu/microcode/core.c

index b67145d..a18ff75 100644 (file)
@@ -460,11 +460,11 @@ static void microcode_fini_cpu(int cpu)
 
 static enum ucode_state microcode_resume_cpu(int cpu)
 {
-       pr_debug("CPU%d updated upon resume\n", cpu);
-
        if (apply_microcode_on_target(cpu))
                return UCODE_ERROR;
 
+       pr_debug("CPU%d updated upon resume\n", cpu);
+
        return UCODE_OK;
 }