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 E4B5DC43217 for ; Fri, 1 Apr 2022 14:49:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348492AbiDAOnZ (ORCPT ); Fri, 1 Apr 2022 10:43:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58000 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348510AbiDAOeg (ORCPT ); Fri, 1 Apr 2022 10:34:36 -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 54166BC7; Fri, 1 Apr 2022 07:32:47 -0700 (PDT) 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 dfw.source.kernel.org (Postfix) with ESMTPS id E749E61CC9; Fri, 1 Apr 2022 14:32:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7C332C340EE; Fri, 1 Apr 2022 14:32:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1648823566; bh=SB+NCy8FgSOwn6tdSeaqf1yh8nc1j/Qp2PIomYSzIKY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=b0Pifl2Nx0TyxuR73OAjfIH2RSfbH8fudjqaGL8aJL/rQFmWfQc87ANWk+BL3hpsU SPbf7KZWiiaJvYAu5DythngsIQO1nlvpJtg/q6dMjZOKzfhy/38sfnDSPhMhkK10q8 b4n6EP93S6cAkvI3EZP3YnO36HL3cv/h+KgqBHOi4LHGr956fGFdPE7SpbkMpPCu0X YWrTaRVjGr8MkpJagIvlZeIF+XnrqpMOFJbZXtaej7QIvNUnVcfOIsqjDbtpKC3p+3 a9Tw9luIw9IwfV5a+DLvxnzWODUZhflHbLT1/wfi/r0yVaTvgGcp1iwe62ujA6rjdA WN1dMLdMwZfLA== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Feng Tang , kernel test robot , Guo Ren , Andrew Morton , Linus Torvalds , Sasha Levin , nathan@kernel.org, peterz@infradead.org, ndesaulniers@google.com, keescook@chromium.org, penguin-kernel@I-love.SAKURA.ne.jp, isabbasso@riseup.net, dan.j.williams@intel.com, linux-csky@vger.kernel.org Subject: [PATCH AUTOSEL 5.17 147/149] lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option Date: Fri, 1 Apr 2022 10:25:34 -0400 Message-Id: <20220401142536.1948161-147-sashal@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220401142536.1948161-1-sashal@kernel.org> References: <20220401142536.1948161-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: Feng Tang [ Upstream commit 1bf18da62106225dbc47aab41efee2aeb99caccd ] 0Day robots reported there is compiling issue for 'csky' ARCH when CONFIG_DEBUG_FORCE_DATA_SECTION_ALIGNED is enabled [1]: All errors (new ones prefixed by >>): {standard input}: Assembler messages: >> {standard input}:2277: Error: pcrel offset for branch to .LS000B too far (0x3c) Which was discussed in [2]. And as there is no solution for csky yet, add some dependency for this config to limit it to several ARCHs which have no compiling issue so far. [1]. https://lore.kernel.org/lkml/202202271612.W32UJAj2-lkp@intel.com/ [2]. https://www.spinics.net/lists/linux-kbuild/msg30298.html Link: https://lkml.kernel.org/r/20220304021100.GN4548@shbuild999.sh.intel.com Reported-by: kernel test robot Signed-off-by: Feng Tang Cc: Guo Ren Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Sasha Levin --- lib/Kconfig.debug | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 14b89aa37c5c..440fd666c16d 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -416,7 +416,8 @@ config SECTION_MISMATCH_WARN_ONLY If unsure, say Y. config DEBUG_FORCE_FUNCTION_ALIGN_64B - bool "Force all function address 64B aligned" if EXPERT + bool "Force all function address 64B aligned" + depends on EXPERT && (X86_64 || ARM64 || PPC32 || PPC64 || ARC) help There are cases that a commit from one domain changes the function address alignment of other domains, and cause magic performance -- 2.34.1