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 AB9D3133986; Thu, 15 Feb 2024 15:38:12 +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=1708011492; cv=none; b=KaXoYzD/rXT8ca4R/T55INAUy16XB5Q5YXS11PqwzgFTjVMKFV7pc9PW+hJrNkk7mSPJAsvXoaNw/HRExpbvpm37ajZsBeugRl3wAzYlomBgMuI5NpK8Q0epU2qygtUVpAlnHSPWk4CfquTwyUieExO7ZEG5tdKf8lzaS2Jyj0s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708011492; c=relaxed/simple; bh=TumCFW1aFpP3pgtyEWBPJcmutNYn4tcHjopz/llMrqI=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=iMcnyxwqTWGyioD5toaEfbhRHDHjUORWrjA21FTed7Xb2xj9XzIuVr+tgEGa7QSm/2Z+qUhvlbqyStZlF8ettuNIPCyco/2MRj3USMT1/JyexXDQE4PUK5PiL3re4HqPs/s4ohRnHfON0VNK/+6nH6ScajBiNN/NRVf+FPjjV2g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 78A01C43390; Thu, 15 Feb 2024 15:38:10 +0000 (UTC) Date: Thu, 15 Feb 2024 10:39:43 -0500 From: Steven Rostedt To: "Masami Hiramatsu (Google)" Cc: Alexei Starovoitov , Florent Revest , linux-trace-kernel@vger.kernel.org, LKML , Martin KaFai Lau , bpf , Sven Schnelle , Alexei Starovoitov , Jiri Olsa , Arnaldo Carvalho de Melo , Daniel Borkmann , Alan Maguire , Mark Rutland , Peter Zijlstra , Thomas Gleixner , Guo Ren Subject: Re: [PATCH v7 23/36] function_graph: Add a new exit handler with parent_ip and ftrace_regs Message-ID: <20240215103943.7bf1a30f@gandalf.local.home> In-Reply-To: <170723230476.502590.16817817024423790038.stgit@devnote2> References: <170723204881.502590.11906735097521170661.stgit@devnote2> <170723230476.502590.16817817024423790038.stgit@devnote2> X-Mailer: Claws Mail 3.19.1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-trace-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 7 Feb 2024 00:11:44 +0900 "Masami Hiramatsu (Google)" wrote: > From: Masami Hiramatsu (Google) > > Add a new return handler to fgraph_ops as 'retregfunc' which takes > parent_ip and ftrace_regs instead of ftrace_graph_ret. This handler > is available only if the arch support CONFIG_HAVE_FUNCTION_GRAPH_FREGS. > Note that the 'retfunc' and 'reregfunc' are mutual exclusive. > You can set only one of them. > > Signed-off-by: Masami Hiramatsu (Google) > > @@ -1076,6 +1083,7 @@ struct fgraph_ops { > trace_func_graph_ent_t entryfunc; > trace_func_graph_ret_t retfunc; > trace_func_graph_regs_ent_t entryregfunc; > + trace_func_graph_regs_ret_t retregfunc; Same for this: struct fgraph_ops { union { trace_func_graph_ent_t entryfunc; trace_func_graph_regs_ent_t entryregfunc; }; union { trace_func_graph_ret_t retfunc; trace_func_graph_regs_ret_t retregfunc; } -- Steve > struct ftrace_ops ops; /* for the hash lists */ > void *private; > int idx;