projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d08cb8
)
perf tools: Print the thread's tid on PERF_RECORD_COMM events when -D is asked
author
Arnaldo Carvalho de Melo
<acme@redhat.com>
Tue, 24 Feb 2015 20:20:31 +0000
(17:20 -0300)
committer
Arnaldo Carvalho de Melo
<acme@redhat.com>
Tue, 24 Feb 2015 20:34:00 +0000
(17:34 -0300)
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: David Ahern <dsahern@gmail.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Link:
http://lkml.kernel.org/n/tip-fmto8ft6jrtwz09dxn5d4z8w@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/event.c
patch
|
blob
|
history
diff --git
a/tools/perf/util/event.c
b/tools/perf/util/event.c
index 6c6d044e959aacf7c4c6515f2e8115d5aea391de..9e806d855b04351a34e541913bcff88807e2b53f 100644
(file)
--- a/
tools/perf/util/event.c
+++ b/
tools/perf/util/event.c
@@
-615,7
+615,7
@@
size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp)
else
s = "";
- return fprintf(fp, "%s: %s:%d
\n", s, event->comm.comm
, event->comm.tid);
+ return fprintf(fp, "%s: %s:%d
/%d\n", s, event->comm.comm, event->comm.pid
, event->comm.tid);
}
int perf_event__process_comm(struct perf_tool *tool __maybe_unused,