From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A9CD231A053; Thu, 14 May 2026 01:37:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778722663; cv=none; b=lmEbQXxPUlLeO49IMNfiMSq+z/HqBed/X58GESw5kyVO+MbQEQEItrvEXt+sGJ8k7IpqeZQsEsYyAxGwowppPn3iBCF9nfIgAvIt1griMgMnRGtZFt8Z/bTlllRoJo6KwtTYCy6sPKuK6YIgGjPI+jW6U7OCI7NFvH7so0+w6EY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778722663; c=relaxed/simple; bh=JAiknqCeMzr1Jm72EO+k4Z4Q0E6NbNXwKVqDC+oNyHw=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References: MIME-Version:Content-Type; b=KCpVv+zEiJZpXkaJwr9wqFngF/6YRk18z8H4vfuQD89kCgHJdKX0iPZ6ul/gFuNcyyrYGyUYWg2f/3Vk/GB6UN0DJhxMVvhHIrJkhZoXsbXuWI3v3B9fuUD1OcJ53fyGfIg4/c1rG8h9qAommZMQP6IweTObiKcF90PdEqcLTJg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=RFPwYKOX; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="RFPwYKOX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 75D02C19425; Thu, 14 May 2026 01:37:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778722663; bh=JAiknqCeMzr1Jm72EO+k4Z4Q0E6NbNXwKVqDC+oNyHw=; h=Date:From:To:cc:Subject:In-Reply-To:References:From; b=RFPwYKOXAvHStZDKdPz7MjigMMcpdfevXvFUCv0TBh2askYK/dm4fxlIv5rB6fo0D 2S212xZ+0Y+51KMtBrfY1oV4kfwt07CpKrS0fCMuMPoLJqFTI+uyG0BzYu0IVpty6W V0JoduGio8XxtwNzU8+NXf5ECc1JSL87DGjBWvm3EsYM9sC2m17cDfIz/J/qoZ9hrZ Lln80LD7TcgmaBfNMFOKuoQvsNSDr3WFXqstSmo8DO5bUwuYEUC8+B63Kxc4hcVAyX 1TLOdVT01Sgw43XianozG5j1lMF9pUkXnCQdX4e80Y+WLIVOt+TYWbYhaZ+0oQu8fy QJCzpr2/aF0Jw== Date: Wed, 13 May 2026 19:37:41 -0600 (MDT) From: Paul Walmsley To: Nathan Chancellor cc: Nicolas Schier , Bill Wendling , Justin Stitt , Nick Desaulniers , linux-kernel@vger.kernel.org, llvm@lists.linux.dev, linux-kbuild@vger.kernel.org, Paul Walmsley , Palmer Dabbelt , Albert Ou , Alexandre Ghiti , Kees Cook , linux-riscv@lists.infradead.org, linux-hardening@vger.kernel.org Subject: Re: [PATCH 08/14] riscv: Remove tautological condition from selection of ARCH_SUPPORTS_CFI In-Reply-To: <20260428-bump-minimum-supported-llvm-version-to-17-v1-8-81d9b2e8ee75@kernel.org> Message-ID: <8a77b39f-1a44-df07-2586-9f568164bad5@kernel.org> References: <20260428-bump-minimum-supported-llvm-version-to-17-v1-0-81d9b2e8ee75@kernel.org> <20260428-bump-minimum-supported-llvm-version-to-17-v1-8-81d9b2e8ee75@kernel.org> Precedence: bulk X-Mailing-List: linux-kbuild@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII On Tue, 28 Apr 2026, Nathan Chancellor wrote: > Now that the minimum supported version of LLVM for building the kernel > has been raised to 17.0.1, the condition of the selection of > CONFIG_ARCH_SUPPORTS_CFI is always true, so it can be removed. > > Signed-off-by: Nathan Chancellor Acked-by: Paul Walmsley # arch/riscv - Paul