Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-30 Thread Google
On Mon, 30 Sep 2024 14:46:59 -0400 Steven Rostedt wrote: > On Tue, 17 Sep 2024 09:26:25 +0100 > Will Deacon wrote: > > > On Sun, Sep 15, 2024 at 04:46:14AM -0400, Steven Rostedt wrote: > > > Can I get an Acked-by from the AARCH64 maintainers for this patch? > > > > Sorry, I wasn't CC'd on th

Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-30 Thread Steven Rostedt
On Tue, 17 Sep 2024 09:26:25 +0100 Will Deacon wrote: > On Sun, Sep 15, 2024 at 04:46:14AM -0400, Steven Rostedt wrote: > > Can I get an Acked-by from the AARCH64 maintainers for this patch? > > Sorry, I wasn't CC'd on the thread, so I missed this. Here's the lore link that starts it all:

Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-17 Thread Will Deacon
On Sun, Sep 15, 2024 at 04:46:14AM -0400, Steven Rostedt wrote: > Can I get an Acked-by from the AARCH64 maintainers for this patch? Sorry, I wasn't CC'd on the thread, so I missed this. > On Fri, 13 Sep 2024 00:08:40 +0900 > "Masami Hiramatsu (Google)" wrote: > > > From: Masami Hiramatsu (Goog

Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-15 Thread Steven Rostedt
Can I get an Acked-by from the X86 maintainers for this patch? Thanks! -- Steve On Fri, 13 Sep 2024 00:08:40 +0900 "Masami Hiramatsu (Google)" wrote: > From: Masami Hiramatsu (Google) > > Pass ftrace_regs to the fgraph_ops::entryfunc(). If ftrace_regs is not > available, it passes a NULL

Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-15 Thread Steven Rostedt
Can I get an Acked-by from the RISC-V maintainers for this patch? Thanks! -- Steve On Fri, 13 Sep 2024 00:08:40 +0900 "Masami Hiramatsu (Google)" wrote: > From: Masami Hiramatsu (Google) > > Pass ftrace_regs to the fgraph_ops::entryfunc(). If ftrace_regs is not > available, it passes a NU

Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-15 Thread Steven Rostedt
Can I get an Acked-by from the POWERPC maintainers for this patch? Thanks! -- Steve On Fri, 13 Sep 2024 00:08:40 +0900 "Masami Hiramatsu (Google)" wrote: > From: Masami Hiramatsu (Google) > > Pass ftrace_regs to the fgraph_ops::entryfunc(). If ftrace_regs is not > available, it passes a N

Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-15 Thread Steven Rostedt
Can I get an Acked-by from the LOONGARCH maintainers for this patch? Thanks! -- Steve On Fri, 13 Sep 2024 00:08:40 +0900 "Masami Hiramatsu (Google)" wrote: > From: Masami Hiramatsu (Google) > > Pass ftrace_regs to the fgraph_ops::entryfunc(). If ftrace_regs is not > available, it passes a

Re: [PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-15 Thread Steven Rostedt
Can I get an Acked-by from the AARCH64 maintainers for this patch? Thanks! -- Steve On Fri, 13 Sep 2024 00:08:40 +0900 "Masami Hiramatsu (Google)" wrote: > From: Masami Hiramatsu (Google) > > Pass ftrace_regs to the fgraph_ops::entryfunc(). If ftrace_regs is not > available, it passes a N

[PATCH v14 03/19] function_graph: Pass ftrace_regs to entryfunc

2024-09-12 Thread Masami Hiramatsu (Google)
From: Masami Hiramatsu (Google) Pass ftrace_regs to the fgraph_ops::entryfunc(). If ftrace_regs is not available, it passes a NULL instead. User callback function can access some registers (including return address) via this ftrace_regs. Signed-off-by: Masami Hiramatsu (Google) --- Changes in