* [PATCH] trace-cmd: Parse command lines with spaces
@ 2020-11-17 11:22 Tzvetomir Stoyanov (VMware)
0 siblings, 0 replies; only message in thread
From: Tzvetomir Stoyanov (VMware) @ 2020-11-17 11:22 UTC (permalink / raw)
To: rostedt; +Cc: linux-trace-devel, douglas.raillard
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@arm.com>
Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
---
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-11-17 11:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-17 11:22 [PATCH] trace-cmd: Parse command lines with spaces Tzvetomir Stoyanov (VMware)
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).