The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] samples: ftrace: Pick a more reasonable function to trace
@ 2023-01-17  9:11 Song Shuai
  0 siblings, 0 replies; only message in thread
From: Song Shuai @ 2023-01-17  9:11 UTC (permalink / raw)
  To: peterz, jpoimboe, tglx; +Cc: linux-kernel, Song Shuai

In ftrace-direct-multi*.c, the direct_caller - my_tramp works as
the mcount for functions with one parameter declared.

But schedule() actually has no parameter declared, so when it was
traced, the tracing function - my_direct_func will print a senseless
address.

Here replaces schedule() with kick_process() to make these samples
more reasonable and deletes the unnecessary including of mm.h.

Signed-off-by: Song Shuai <suagrfillet@gmail.com>
---
 samples/ftrace/ftrace-direct-multi-modify.c | 2 +-
 samples/ftrace/ftrace-direct-multi.c        | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/samples/ftrace/ftrace-direct-multi-modify.c b/samples/ftrace/ftrace-direct-multi-modify.c
index 63f92451f38b..ea8b6fef3032 100644
--- a/samples/ftrace/ftrace-direct-multi-modify.c
+++ b/samples/ftrace/ftrace-direct-multi-modify.c
@@ -176,7 +176,7 @@ static int __init ftrace_direct_multi_init(void)
 	int ret;
 
 	ftrace_set_filter_ip(&direct, (unsigned long) wake_up_process, 0, 0);
-	ftrace_set_filter_ip(&direct, (unsigned long) schedule, 0, 0);
+	ftrace_set_filter_ip(&direct, (unsigned long) kick_process, 0, 0);
 
 	ret = register_ftrace_direct_multi(&direct, my_tramp);
 
diff --git a/samples/ftrace/ftrace-direct-multi.c b/samples/ftrace/ftrace-direct-multi.c
index 08442d631b48..2b850c3593d5 100644
--- a/samples/ftrace/ftrace-direct-multi.c
+++ b/samples/ftrace/ftrace-direct-multi.c
@@ -1,7 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0-only
 #include <linux/module.h>
 
-#include <linux/mm.h> /* for handle_mm_fault() */
 #include <linux/ftrace.h>
 #include <linux/sched/stat.h>
 #include <asm/asm-offsets.h>
@@ -93,7 +92,7 @@ static struct ftrace_ops direct;
 static int __init ftrace_direct_multi_init(void)
 {
 	ftrace_set_filter_ip(&direct, (unsigned long) wake_up_process, 0, 0);
-	ftrace_set_filter_ip(&direct, (unsigned long) schedule, 0, 0);
+	ftrace_set_filter_ip(&direct, (unsigned long) kick_process, 0, 0);
 
 	return register_ftrace_direct_multi(&direct, (unsigned long) my_tramp);
 }
-- 
2.20.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-01-17  9:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-17  9:11 [PATCH] samples: ftrace: Pick a more reasonable function to trace Song Shuai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox