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 5E0FD2517AF for ; Tue, 18 Nov 2025 08:14:27 +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=1763453668; cv=none; b=o7FTxqTHQVPziSP6YkhQtxBDELYDKXwf/n0I11Qq1CK6128Eo7eay7w8B2Rsc8N1haqmfgRMiCRCdug4/zqYaONzqyQuNAwJTPiY9ncbzcPYFY4vZHIzg1WZGjFJrtXSvo+Iw5iLQ2Y/GDKP3DKdL0O+/symEUvmJMEyaeAnFVU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763453668; c=relaxed/simple; bh=LohK5hjrEeqvyO8N4DqykVVSIrsu40Dn6IU0ovtyNAU=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=hztbjugqHoMOfftm9wovtvuHd22U7HxV3AWXRLUmmBY8qwuzQMc6JKMY0NGYOWOg30m9m7EibFIyhGPL2r0VTkkCDPCOgoxO/JPE5V/nDfGrhrh1IZJuQ9m5mF2JGxCOYkWTFGm6kinhvIOniMFjtTg3TpvCdTNtY5MA3A3vm8E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Vixd7JAj; 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="Vixd7JAj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8E7ACC2BCAF; Tue, 18 Nov 2025 08:14:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1763453667; bh=LohK5hjrEeqvyO8N4DqykVVSIrsu40Dn6IU0ovtyNAU=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=Vixd7JAj6VTf41amWGlAWFWsCTtMHsQHx9ueriwie15gZ9bPyBjXpUKkZauMPP+p0 8ZfxHbeIjq1Ozxyc15WgiJRj6eLOidrQuMkVqCa39tm+KTZ1jeG57UeHs39nAnfUrQ FfSbR5vKCA4xj4dLAdCI4CMxAhQl0TrWPCtZatf8mA3+WAfbERwNdO6KczRrTvsI2l eUGgMBISymkmcSACNzfCe3CeC6bw/5dyOB2t1M812gIwgCySlaW8Ax/G7DpCcFPVCw eZg4bo+IFbTwrhWt0whBzcXCisFDm4eNuvvNORSj4dtRG8d6h/G0bDvHcVriAdwsik 49P6Ndm7gCrtg== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id ADD4B3809A2D; Tue, 18 Nov 2025 08:13:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH v4 0/5] riscv: Use riscv_has_extension_{likely,unlikely} From: patchwork-bot+linux-riscv@kernel.org Message-Id: <176345363325.4032995.8761332342399435783.git-patchwork-notify@kernel.org> Date: Tue, 18 Nov 2025 08:13:53 +0000 References: <20251020-riscv-altn-helper-wip-v4-0-ef941c87669a@iscas.ac.cn> In-Reply-To: <20251020-riscv-altn-helper-wip-v4-0-ef941c87669a@iscas.ac.cn> To: Vivian Wang Cc: linux-riscv@lists.infradead.org, paul.walmsley@sifive.com, palmer@dabbelt.com, aou@eecs.berkeley.edu, alex@ghiti.fr, yury.norov@gmail.com, linux@rasmusvillemoes.dk, pjw@kernel.org, charlie@rivosinc.com, xiao.w.wang@intel.com, christoph.muellner@vrull.eu, uwu@dram.page, linux-kernel@vger.kernel.org Hello: This series was applied to riscv/linux.git (for-next) by Paul Walmsley : On Mon, 20 Oct 2025 17:09:55 +0800 you wrote: > There are about a dozen uses of asm goto in arch/riscv just to select > between two code paths with the alternative mechanism. Convert them to > the existing helpers riscv_has_extension_{likely,unlikely}. > > In each case, I have preserved the existing code's choice of asm goto > pattern while picking between "likely" and "unlikely", namely: > > [...] Here is the summary with links: - [v4,1/5] riscv: pgtable: Use riscv_has_extension_unlikely https://git.kernel.org/riscv/c/a4076db168ae - [v4,2/5] riscv: checksum: Use riscv_has_extension_likely https://git.kernel.org/riscv/c/343fdc9e98d8 - [v4,3/5] riscv: hweight: Use riscv_has_extension_likely https://git.kernel.org/riscv/c/8211f7ec8a7f - [v4,4/5] riscv: bitops: Use riscv_has_extension_likely https://git.kernel.org/riscv/c/d78307511f7c - [v4,5/5] riscv: cmpxchg: Use riscv_has_extension_likely https://git.kernel.org/riscv/c/7b5a4f97cb45 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html