linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] trace-cmd report: Avoid crash on unknown event
@ 2021-11-19 11:24 Vincent Whitchurch
  2021-11-19 14:44 ` Steven Rostedt
  0 siblings, 1 reply; 4+ messages in thread
From: Vincent Whitchurch @ 2021-11-19 11:24 UTC (permalink / raw)
  To: rostedt; +Cc: linux-trace-devel, kernel, Vincent Whitchurch

Do not segfault if the event cannot be found for some reason and
tep_find_event_by_record() returns NULL.

No extra warning is added since there are others ("UNKNOWN EVENT") which
already make it clear that something is wrong:

 kworker/u8:0-7 [003] 1.245773: sched_stat_runtime: comm=kworker/u8:...
[UNKNOWN EVENT][UNKNOWN EVENT][UNKNOWN EVENT]
 kworker/u8:0-7 [003] 1.245776: sched_switch: kworker/u8:0:7 [120] W...

Signed-off-by: Vincent Whitchurch <vincent.whitchurch@axis.com>
---
 tracecmd/trace-read.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tracecmd/trace-read.c b/tracecmd/trace-read.c
index 6f43c1d..145c823 100644
--- a/tracecmd/trace-read.c
+++ b/tracecmd/trace-read.c
@@ -890,7 +890,8 @@ void trace_show_data(struct tracecmd_input *handle, struct tep_record *record)
 		trace_seq_printf(&s, " %-8s", buf);
 	}
 
-	print_event_name(&s, event);
+	if (event)
+		print_event_name(&s, event);
 	tep_print_event(pevent, &s, record, "%s", format_type);
 
 	if (s.len && *(s.buffer + s.len - 1) == '\n')
-- 
2.20.1


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

end of thread, other threads:[~2021-11-23 15:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-19 11:24 [PATCH] trace-cmd report: Avoid crash on unknown event Vincent Whitchurch
2021-11-19 14:44 ` Steven Rostedt
2021-11-23  8:55   ` Vincent Whitchurch
2021-11-23 15:38     ` Steven Rostedt

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).