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 X-Spam-Level: X-Spam-Status: No, score=-16.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C0E60C433F5 for ; Sat, 11 Sep 2021 00:10:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 99DE5611BF for ; Sat, 11 Sep 2021 00:10:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234972AbhIKAMC (ORCPT ); Fri, 10 Sep 2021 20:12:02 -0400 Received: from mail.kernel.org ([198.145.29.99]:48728 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233946AbhIKAL4 (ORCPT ); Fri, 10 Sep 2021 20:11:56 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 59B2A611BF; Sat, 11 Sep 2021 00:10:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1631319044; bh=HgiHQcF3LVK3G9eZiQ8cGSEktVPqKSf0eNxm5bavhHs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=VwzAjXeLlL0qOsTx09PxPCWphn2hIwR0xwGAWWSV7SBYC/Ni7r4MjSRJFgykbzwIC EhZR9MR8MFizjtcVLoOHVdxTOwJm0DittF5KPAR++m++AVBGKFOyOE3F7Cz+ugW7OK ImptrCEe3nCkkG+WfdSbwOYrbvaekh3QqGCTmOuPO70+MWyVw20MbwJj3x16bzxgZZ NVMfAhM0TNJ+XvkB9ieHKt3SyyssfcIIFFi2J3w+ThXdtaMfs/8K4Bf7gC9RLJi6Fa dfywPPUQE0/kuDB46YGzop/ilR2atmrpAPTojA/jXGE7IeHBH/HV6REoDUHio43smN QrwyeRjEY952g== Date: Fri, 10 Sep 2021 17:10:38 -0700 From: Nathan Chancellor To: Nick Desaulniers Cc: Andrew Morton , Linus Torvalds , Rasmus Villemoes , Masahiro Yamada , Joe Perches , Arnd Bergmann , Stephen Rothwell , llvm@lists.linux.dev, linux-kernel@vger.kernel.org, Catalin Marinas , Will Deacon , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH 07/10] arm64: remove GCC version check for ARCH_SUPPORTS_INT128 Message-ID: References: <20210910234047.1019925-1-ndesaulniers@google.com> <20210910234047.1019925-8-ndesaulniers@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210910234047.1019925-8-ndesaulniers@google.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 10, 2021 at 04:40:44PM -0700, Nick Desaulniers wrote: > Now that GCC 5.1 is the minimally supported compiler version, this > Kconfig check is no longer necessary. > > Cc: Catalin Marinas > Cc: Will Deacon > Cc: linux-arm-kernel@lists.infradead.org > Signed-off-by: Nick Desaulniers Reviewed-by: Nathan Chancellor > --- > arch/arm64/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig > index 077f2ec4eeb2..5c7ae4c3954b 100644 > --- a/arch/arm64/Kconfig > +++ b/arch/arm64/Kconfig > @@ -86,7 +86,7 @@ config ARM64 > select ARCH_SUPPORTS_LTO_CLANG_THIN > select ARCH_SUPPORTS_CFI_CLANG > select ARCH_SUPPORTS_ATOMIC_RMW > - select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 && (GCC_VERSION >= 50000 || CC_IS_CLANG) > + select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 > select ARCH_SUPPORTS_NUMA_BALANCING > select ARCH_WANT_COMPAT_IPC_PARSE_VERSION if COMPAT > select ARCH_WANT_DEFAULT_BPF_JIT > -- > 2.33.0.309.g3052b89438-goog > >