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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7902FC83F17 for ; Wed, 23 Jul 2025 10:07:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=cInzkVJ5dOKLbRAfnT6Ha0JnJ5QWBrOHCpsObXpeswM=; b=cwinywUJt2Bc9TmnJixjD+2yRF yeUkWRQbFGj5sck9x/vRjcM4+lj6ibIBpaQWSnh683ny3+rX65xJXPJCYikwaxe57lTjoPoFMggK9 16TXpJAgPAwvJUYzump3o9/YfjJolDue/yMDrtKuuugQToxQY3cZUrBH1laV247biQpcCynfTgrGj BJWplmhywbnytlE6cGi4AdVPltMu7KPBsY9wCVEuwUFcFwS+GS+JcqzWrROIpNJ3vMCUhZzPciA2M T6ubfM+JCMSl9Sgm+7tzdck9C5gRt3S0IKDJnaogfUZd956JQPmfRn05KwH7oxzT54hzMnaQHHpsF wr4nSeZw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1ueWNp-00000004cnE-1R9X; Wed, 23 Jul 2025 10:07:33 +0000 Received: from sea.source.kernel.org ([2600:3c0a:e001:78e:0:1991:8:25]) by bombadil.infradead.org with esmtps (Exim 4.98.2 #2 (Red Hat Linux)) id 1ueW1I-00000004Yi4-0Tw3 for linux-arm-kernel@lists.infradead.org; Wed, 23 Jul 2025 09:44:17 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sea.source.kernel.org (Postfix) with ESMTP id B0FB6419AE; Wed, 23 Jul 2025 09:44:15 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DE4ABC4CEE7; Wed, 23 Jul 2025 09:44:11 +0000 (UTC) Date: Wed, 23 Jul 2025 10:44:09 +0100 From: Catalin Marinas To: Jeremy Linton Cc: linux-trace-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org, mhiramat@kernel.org, oleg@redhat.com, peterz@infradead.org, acme@kernel.org, namhyung@kernel.org, mark.rutland@arm.com, alexander.shishkin@linux.intel.com, jolsa@kernel.org, irogers@google.com, adrian.hunter@intel.com, kan.liang@linux.intel.com, thiago.bauermann@linaro.org, broonie@kernel.org, yury.khrustalev@arm.com, kristina.martsenko@arm.com, liaochang1@huawei.com, will@kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 2/8] arm64: probes: Break ret out from bl/blr Message-ID: References: <20250719043740.4548-1-jeremy.linton@arm.com> <20250719043740.4548-3-jeremy.linton@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250719043740.4548-3-jeremy.linton@arm.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20250723_024416_173693_4C543B8E X-CRM114-Status: UNSURE ( 8.44 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, Jul 18, 2025 at 11:37:34PM -0500, Jeremy Linton wrote: > Prepare for GCS by breaking RET out into its own function, where > it makes more sense to encapsulate the new behavior independent > from the branch instructions. > > Signed-off-by: Jeremy Linton Reviewed-by: Catalin Marinas