From nobody Mon Jun 29 08:57:14 2026 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 174ACC433EF for ; Sat, 12 Feb 2022 11:18:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234044AbiBLLSH (ORCPT ); Sat, 12 Feb 2022 06:18:07 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:36502 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232554AbiBLLSF (ORCPT ); Sat, 12 Feb 2022 06:18:05 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B15C12613F; Sat, 12 Feb 2022 03:18:02 -0800 (PST) Date: Sat, 12 Feb 2022 11:17:58 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1644664679; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0R2QHDQmiYduE/sh3uq1H1h87TD/Q/RH6gPXiG/2yhY=; b=JS9hbHDPIhjtC7yCWnUO3MwqyywzfwRT0RgR3V7lMJ5Yonc/Q/kwdPWpboYBLcmcbskZ67 Q9howqPDCy56gFXJe9Npj54p1Ua2/JyvqCMVBYZNTu4l46DFMcOoKvCbWyP+f1hLnwq1wc 8TugfJiqBQW51DKYdO9mW3vG9w3/PQTXItwafCr79nFjROWw7GEfzGl5xXROBW8JuiJWR0 f+apu2bq371C2PfeNaQ7K1amldvatPBwqaiKdX3JGuBhAItt0urwNJaexK5vVYow0yur8C S2sGtltLKgQwPXVbMq15xnHmgVKrq6V01PLZGgyBVstmGJ7SGJbSfqXXFSkTZg== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1644664679; h=from:from:sender:sender:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0R2QHDQmiYduE/sh3uq1H1h87TD/Q/RH6gPXiG/2yhY=; b=swAAlZtu3uga2c4zSC2X1Xnvlvpm65f/V1IsqEQF35v5veFo3E7Qq/WMIJj/alWkx2ctS9 qlyx6mUz7fDaJwAQ== From: "tip-bot2 for Marco Bonelli" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: x86/sev] x86/head64: Add missing __head annotation to sme_postprocess_startup() Cc: Marco Bonelli , Borislav Petkov , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20220211162350.11780-1-marco@mebeim.net> References: <20220211162350.11780-1-marco@mebeim.net> MIME-Version: 1.0 Message-ID: <164466467861.16921.14773525480598389536.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the x86/sev branch of tip: Commit-ID: 5f117033243488a0080f837540c27999aa31870e Gitweb: https://git.kernel.org/tip/5f117033243488a0080f837540c27999a= a31870e Author: Marco Bonelli AuthorDate: Fri, 11 Feb 2022 17:23:50 +01:00 Committer: Borislav Petkov CommitterDate: Sat, 12 Feb 2022 11:37:09 +01:00 x86/head64: Add missing __head annotation to sme_postprocess_startup() This function was previously part of __startup_64() which is marked __head, and is currently only called from there. Mark it __head too. Signed-off-by: Marco Bonelli Signed-off-by: Borislav Petkov Link: https://lore.kernel.org/r/20220211162350.11780-1-marco@mebeim.net --- arch/x86/kernel/head64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index de563db..4f5ecbb 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c @@ -126,7 +126,7 @@ static bool __head check_la57_support(unsigned long phy= saddr) } #endif =20 -static unsigned long sme_postprocess_startup(struct boot_params *bp, pmdva= l_t *pmd) +static unsigned long __head sme_postprocess_startup(struct boot_params *bp= , pmdval_t *pmd) { unsigned long vaddr, vaddr_end; int i;