aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <rostedt@goodmis.org>2016-03-23 10:16:28 -0400
committerSteven Rostedt <rostedt@goodmis.org>2016-03-23 10:21:17 -0400
commit2ef76d203d291efbf5004484bbd5c27f697801ac (patch)
tree8709d0694b41fde8fef69c6cd360559245697631
parent01b3337df3544cef42be5243a25ed4e005c80efa (diff)
downloadtrace-cmd-2ef76d203d291efbf5004484bbd5c27f697801ac.tar.gz
tools lib traceevent: Remove redundant CPU output
Commit 8533bda27f64 "tools lib traceevent: Split pevent_print_event() into specific functionality functions" Broke apart the function pevent_print_event() into three functions. The first function prints the comm, pid and CPU, the second prints the timestamp. But that commit added the printing of the CPU in the timestamp function, which now causes pevent_print_event() to duplicate the CPU output. Remove the redundant printing of the record's CPU from the timestamp function. Link: http://lkml.kernel.org/r/20160323101628.459375d2@gandalf.local.home Fixes: 8533bda27f64 "tools lib traceevent: Split pevent_print_event() into specific functionality functions" Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--event-parse.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/event-parse.c b/event-parse.c
index b12b2cd1..82400ead 100644
--- a/event-parse.c
+++ b/event-parse.c
@@ -5453,10 +5453,8 @@ void pevent_print_event_time(struct pevent *pevent, struct trace_seq *s,
}
if (pevent->latency_format) {
- trace_seq_printf(s, " %3d", record->cpu);
pevent_data_lat_fmt(pevent, s, record);
- } else
- trace_seq_printf(s, " [%03d]", record->cpu);
+ }
if (use_usec_format) {
if (pevent->flags & PEVENT_NSEC_OUTPUT) {