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 97D9EC636D4 for ; Thu, 9 Feb 2023 11:30:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231637AbjBIL3t (ORCPT ); Thu, 9 Feb 2023 06:29:49 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32784 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231524AbjBIL3A (ORCPT ); Thu, 9 Feb 2023 06:29:00 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1EEFB5A90B; Thu, 9 Feb 2023 03:21:20 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id BD8DDB82107; Thu, 9 Feb 2023 11:20:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 92769C4339B; Thu, 9 Feb 2023 11:20:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1675941649; bh=XBN8rYF7Muzyu9xwQU3tBnvKdEdpjoNZZ6qCuqouOoI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nvSb+b89+bNkkglddnFr1Gnw4IMxpelB2pomXbELPp5sL0UHXy96vZT6Mv5ETe7M8 6AFmFnBOY+9zPFl96heTxhexh0FcEp7GAcQ7Dodu3oEfr40R4znmc2EeztNtSjOQAe PdrL8f3fs64Zt+GbyHyeQ3Cuf2/wai0xRKsRfnlQzdoIWXFizIODYQbkEbOEXIkg/H SFEvMSdg9+apjFejLcuq/us2ZixFHMHs2wVgjwTOSCbNeDtXEihXLh1xub3OiGWkHU wOF1l6/XZM7mhRfPhTBLgEq3qCZTEIetK1cP26ejAFQo2PE4XYxsy2fH8OLSl5myFv AAiN7pUCZEd4g== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Sathvika Vasireddy , kernel test robot , Michael Ellerman , Sasha Levin , christophe.leroy@csgroup.eu, linuxppc-dev@lists.ozlabs.org Subject: [PATCH AUTOSEL 4.14 3/5] powerpc/85xx: Fix unannotated intra-function call warning Date: Thu, 9 Feb 2023 06:20:25 -0500 Message-Id: <20230209112042.1893375-3-sashal@kernel.org> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230209112042.1893375-1-sashal@kernel.org> References: <20230209112042.1893375-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Sathvika Vasireddy [ Upstream commit 8afffce6aa3bddc940ac1909627ff1e772b6cbf1 ] objtool throws the following warning: arch/powerpc/kernel/head_85xx.o: warning: objtool: .head.text+0x1a6c: unannotated intra-function call Fix the warning by annotating KernelSPE symbol with SYM_FUNC_START_LOCAL and SYM_FUNC_END macros. Reported-by: kernel test robot Signed-off-by: Sathvika Vasireddy Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20230128124138.1066176-1-sv@linux.ibm.com Signed-off-by: Sasha Levin --- arch/powerpc/kernel/head_fsl_booke.S | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S index 60a0aeefc4a76..8df09f8208f4f 100644 --- a/arch/powerpc/kernel/head_fsl_booke.S +++ b/arch/powerpc/kernel/head_fsl_booke.S @@ -888,7 +888,7 @@ _GLOBAL(load_up_spe) * SPE unavailable trap from kernel - print a message, but let * the task use SPE in the kernel until it returns to user mode. */ -KernelSPE: +SYM_FUNC_START_LOCAL(KernelSPE) lwz r3,_MSR(r1) oris r3,r3,MSR_SPE@h stw r3,_MSR(r1) /* enable use of SPE after return */ @@ -905,6 +905,7 @@ KernelSPE: #endif .align 4,0 +SYM_FUNC_END(KernelSPE) #endif /* CONFIG_SPE */ /* -- 2.39.0