From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965706AbcJYJ5l (ORCPT ); Tue, 25 Oct 2016 05:57:41 -0400 Received: from mail.skyhub.de ([78.46.96.112]:36026 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754857AbcJYJz0 (ORCPT ); Tue, 25 Oct 2016 05:55:26 -0400 From: Borislav Petkov To: X86 ML Cc: LKML Subject: [PATCH 07/12] x86/microcode: Issue the debug printk on resume only on success Date: Tue, 25 Oct 2016 11:55:17 +0200 Message-Id: <20161025095522.11964-8-bp@alien8.de> X-Mailer: git-send-email 2.10.0 In-Reply-To: <20161025095522.11964-1-bp@alien8.de> References: <20161025095522.11964-1-bp@alien8.de> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Borislav Petkov Move it after the patch application function which also checks whether we were successful. Signed-off-by: Borislav Petkov --- arch/x86/kernel/cpu/microcode/core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c index b67145dcfdaf..a18ff7547fa9 100644 --- a/arch/x86/kernel/cpu/microcode/core.c +++ b/arch/x86/kernel/cpu/microcode/core.c @@ -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; } -- 2.10.0