All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/3] ftrace: cleanup ftrace_graph_caller enable and disable
@ 2022-02-24  9:32 ` Chengming Zhou
  0 siblings, 0 replies; 20+ messages in thread
From: Chengming Zhou @ 2022-02-24  9:32 UTC (permalink / raw)
  To: rostedt, mark.rutland, mingo, tglx, catalin.marinas, will,
	dave.hansen, broonie
  Cc: x86, linux-arm-kernel, linux-kernel, songmuchun, qirui.001,
	Chengming Zhou

The ftrace_enable_ftrace_graph_caller() and
ftrace_disable_ftrace_graph_caller() are used to do special
hooks for graph tracer, which are not needed on some ARCHs
that use graph_ops:func function to install return_hooker.

So introduce the weak version in Ftrace core code to prepare
for cleanup.

Signed-off-by: Chengming Zhou <zhouchengming@bytedance.com>
---
 kernel/trace/ftrace.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index f9feb197b2da..60ae009e6684 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -2704,6 +2704,26 @@ int __weak ftrace_arch_code_modify_post_process(void)
 	return 0;
 }
 
+#ifdef CONFIG_FUNCTION_GRAPH_TRACER
+/*
+ * archs can override this function if they must do something
+ * to enable hook for graph tracer.
+ */
+int __weak ftrace_enable_ftrace_graph_caller(void)
+{
+	return 0;
+}
+
+/*
+ * archs can override this function if they must do something
+ * to disable hook for graph tracer.
+ */
+int __weak ftrace_disable_ftrace_graph_caller(void)
+{
+	return 0;
+}
+#endif
+
 void ftrace_modify_all_code(int command)
 {
 	int update = command & FTRACE_UPDATE_TRACE_FUNC;
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2022-04-07 12:41 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-24  9:32 [PATCH v3 1/3] ftrace: cleanup ftrace_graph_caller enable and disable Chengming Zhou
2022-02-24  9:32 ` Chengming Zhou
2022-02-24  9:32 ` [PATCH v3 2/3] x86/ftrace: cleanup graph tracer Chengming Zhou
2022-02-24  9:32   ` Chengming Zhou
2022-02-24  9:32 ` [PATCH v3 3/3] arm64/ftrace: Make function graph use ftrace directly Chengming Zhou
2022-02-24  9:32   ` Chengming Zhou
2022-03-22 12:48   ` Chengming Zhou
2022-03-22 12:48     ` Chengming Zhou
2022-03-22 13:41     ` Steven Rostedt
2022-03-22 13:41       ` Steven Rostedt
2022-03-22 14:14       ` [External] " Chengming Zhou
2022-03-22 14:14         ` Chengming Zhou
2022-03-22 14:49         ` Steven Rostedt
2022-03-22 14:49           ` Steven Rostedt
2022-04-07  2:26           ` Chengming Zhou
2022-04-07  2:26             ` Chengming Zhou
2022-04-07  8:58             ` Mark Brown
2022-04-07  8:58               ` Mark Brown
2022-04-07 12:39               ` Chengming Zhou
2022-04-07 12:39                 ` Chengming Zhou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.