linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tracing/kprobes: 'nmissed' not showed correctly for kretprobe
@ 2021-12-11 15:00 Xiangyang Zhang
  2022-01-05 19:15 ` Steven Rostedt
  0 siblings, 1 reply; 6+ messages in thread
From: Xiangyang Zhang @ 2021-12-11 15:00 UTC (permalink / raw)
  To: rostedt, mingo
  Cc: masami.hiramatsu.pt, oleg, namhyung.kim, linux-kernel, xyz.sun.ok

The 'nmissed' column of the 'kprobe_profile' file for kretprobe is
always zero, because 'nmissed' for kretprobe is maintained in
'tk->rp.nmissed' but not in 'tk->rp.kp.nmissed'

Fixes: c31ffb3ff633 ("tracing/kprobes: Factor out struct trace_probe")
Signed-off-by: Xiangyang Zhang <xyz.sun.ok@gmail.com>
---
 kernel/trace/trace_kprobe.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c
index d10c01948e68..2b9de6826e94 100644
--- a/kernel/trace/trace_kprobe.c
+++ b/kernel/trace/trace_kprobe.c
@@ -1175,15 +1175,17 @@ static int probes_profile_seq_show(struct seq_file *m, void *v)
 {
 	struct dyn_event *ev = v;
 	struct trace_kprobe *tk;
+	unsigned long nmissed = 0;
 
 	if (!is_trace_kprobe(ev))
 		return 0;
 
 	tk = to_trace_kprobe(ev);
+	nmissed = tk->rp.handler ? tk->rp.nmissed : tk->rp.kp.nmissed;
 	seq_printf(m, "  %-44s %15lu %15lu\n",
 		   trace_probe_name(&tk->tp),
 		   trace_kprobe_nhit(tk),
-		   tk->rp.kp.nmissed);
+		   nmissed);
 
 	return 0;
 }
-- 
2.25.1


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

end of thread, other threads:[~2022-01-06  2:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-11 15:00 [PATCH] tracing/kprobes: 'nmissed' not showed correctly for kretprobe Xiangyang Zhang
2022-01-05 19:15 ` Steven Rostedt
2022-01-05 19:22   ` Steven Rostedt
2022-01-05 22:32     ` Masami Hiramatsu
2022-01-05 23:10       ` Steven Rostedt
2022-01-06  2:14         ` xy zhang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).