If a command line, saved in the trace.dat file, has spaces - it is not parsed correctly by trace-cmd. Parsing is improved, so command lines with spaces are displayed correctly. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=210193 Reported-by: Douglas RAILLARD <douglas.raillard@xxxxxxx> Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@xxxxxxxxx> --- lib/trace-cmd/trace-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trace-cmd/trace-util.c b/lib/trace-cmd/trace-util.c index 0ead96ea..bd09882b 100644 --- a/lib/trace-cmd/trace-util.c +++ b/lib/trace-cmd/trace-util.c @@ -63,7 +63,7 @@ void tracecmd_parse_cmdlines(struct tep_handle *pevent, line = strtok_r(file, "\n", &next); while (line) { - sscanf(line, "%d %ms", &pid, &comm); + sscanf(line, "%d %m[^\n]s", &pid, &comm); tep_register_comm(pevent, comm, pid); free(comm); line = strtok_r(NULL, "\n", &next); -- 2.28.0