From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E00CDEE49A6 for ; Mon, 21 Aug 2023 01:19:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232340AbjHUBTn (ORCPT ); Sun, 20 Aug 2023 21:19:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50732 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232289AbjHUBTe (ORCPT ); Sun, 20 Aug 2023 21:19:34 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 01F78A4 for ; Sun, 20 Aug 2023 18:19:33 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 8D27562615 for ; Mon, 21 Aug 2023 01:19:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79C6BC433CA; Mon, 21 Aug 2023 01:19:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692580772; bh=NTl9fdPPfPDx8+1IGrlnxPkd/+/wfToU8TRoq+9rVe8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=m99+o8lR6uGYFUrOy2rSvW7qagnSCow80eFcsbu5nVPZ7aLr1uZIZ4ywNY9BfB4gl B9qkfLjMb6OutWgdviC/DMtHPZyvEmLC5MVOUPYgvdaJZWx2e9dWPjJ2eeDCHPMMAU LAWjELmOXaoWSZuCZ92HIIlhb7qiyBpo+KiVjhVGzVtpT1b/v8EvaGB/kzPSei/NKA h1zmB9T9c/9k46ruYuu3oy1+LzyEm7QDS6ijFT0U6jdFylDk1V28ve3INlZIvQngjA E5yEcWtlGd7c74NaWtG9XhGhRsGutRZyAbXzNJkRfDc0AxSndPXKH20jAO4LiRqRZA hKT8QRUQQQd5w== From: Josh Poimboeuf To: x86@kernel.org Cc: linux-kernel@vger.kernel.org, Borislav Petkov , Peter Zijlstra , Babu Moger , Paolo Bonzini , Sean Christopherson , David.Kaplan@amd.com, Andrew Cooper , Nikolay Borisov , gregkh@linuxfoundation.org, Thomas Gleixner Subject: [PATCH 08/22] x86/srso: Downgrade retbleed IBPB warning to informational message Date: Sun, 20 Aug 2023 18:19:05 -0700 Message-ID: <49b321ad997bce6068c694a6cd0ecdcd5cd2a1e4.1692580085.git.jpoimboe@kernel.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This warning is nothing to get excited over. Downgrade to pr_info(). Signed-off-by: Josh Poimboeuf --- arch/x86/kernel/cpu/bugs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/cpu/bugs.c b/arch/x86/kernel/cpu/bugs.c index cda4b5e6a362..e59e09babf8f 100644 --- a/arch/x86/kernel/cpu/bugs.c +++ b/arch/x86/kernel/cpu/bugs.c @@ -2425,7 +2425,7 @@ static void __init srso_select_mitigation(void) if (retbleed_mitigation == RETBLEED_MITIGATION_IBPB) { if (has_microcode) { - pr_err("Retbleed IBPB mitigation enabled, using same for SRSO\n"); + pr_info("Retbleed IBPB mitigation enabled, using same for SRSO\n"); srso_mitigation = SRSO_MITIGATION_IBPB; goto pred_cmd; } -- 2.41.0