Received: by 2002:a05:6a11:4021:0:0:0:0 with SMTP id ky33csp1383806pxb; Thu, 16 Sep 2021 06:28:18 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwdEJVSSe00pGVuLTAI9NW3n99m4x1Hm378AKBxTHgS5BX+fO3MlrO3PwjVRiUmbn+p/7b5 X-Received: by 2002:a05:6402:455:: with SMTP id p21mr6469541edw.309.1631798897763; Thu, 16 Sep 2021 06:28:17 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1631798897; cv=none; d=google.com; s=arc-20160816; b=eUo6B30L+/CbbgOySOCpM1VIBpolEQJSh0GXFhdQ5TkF1NbD6R0JNeyRFNMnCASE9y Un9SULbquo9NQzG6YP/PS8s1ypC5zguNRjrzi0cNlNCOlaSKcbrYicJwlZozBt3ZvrR2 ybVfqWPil7X+taiEkGk18nmeBxWpJuTPiFOY2GHx2K/2X6eXguQjAoBCLfe8CU9l+3+C XtEgPgzWZyhxFtveGOoq3mUQ4TgP4yygMYvm0jbyj7c40Ara+KxWPnT/drGFps2qlv+J ZkDMeyBoFXneBhjsWFdLCLKVFcEy+VS6upEGn5DMilcqQ0HR8lPMJnkRs7/HwkivVYQr 8SEQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=rTlBT0ExVSlKkCoBISgkUdVC3sbOgZPcpDOs4H4lkGI=; b=UzFdFZrXcfoCCw1uJX+xYljmd0gungu6jE50P+8/MmwK6/BjMbPCOA67St1i8RZkvA X3C04ro2lCfuDnEL7QtGG1Fx1QQPpua8k6a6LBL/ErAt9Cy6CakDIrTgJCTe/cv3LnCh CEdRwYiTgjYYk44UN938SP5znT1nvl4WK/LR1mlXD90Mzm1qNdJg4h8/dfk4ILp1IL7P nR0guq1xIvDGeejzI3qG5XPYyAwJLk5ddfFri095VizFSVDBuVxdjoTzENEE03boKlbZ wKFoNdBFLmmNHJeWSEj/VdnXnXfEkqPe8LXllD+QpbztOL06J9CJqAOFNBFet+nvV0yb 7TIg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id v12si3235421ejv.493.2021.09.16.06.27.53; Thu, 16 Sep 2021 06:28:17 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240123AbhIPNZO (ORCPT + 99 others); Thu, 16 Sep 2021 09:25:14 -0400 Received: from mail.kernel.org ([198.145.29.99]:33394 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240113AbhIPNZN (ORCPT ); Thu, 16 Sep 2021 09:25:13 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id F21336120F; Thu, 16 Sep 2021 13:23:50 +0000 (UTC) Date: Thu, 16 Sep 2021 14:23:47 +0100 From: Catalin Marinas To: Nick Desaulniers Cc: Andrew Morton , Linus Torvalds , Rasmus Villemoes , Nathan Chancellor , Masahiro Yamada , Joe Perches , Arnd Bergmann , Stephen Rothwell , llvm@lists.linux.dev, linux-kernel@vger.kernel.org, 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 Acked-by: Catalin Marinas