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:
74ba9e1
)
perf header: Set tracepoint event name only if not set
author
Namhyung Kim
<
[email protected]
>
Wed, 5 Sep 2012 05:02:48 +0000
(14:02 +0900)
committer
Arnaldo Carvalho de Melo
<
[email protected]
>
Wed, 5 Sep 2012 20:46:34 +0000
(17:46 -0300)
The event name can be set already by processing a event_desc data.
So check it before setting to prevent possible leak.
Signed-off-by: Namhyung Kim <
[email protected]
>
Cc: Ingo Molnar <
[email protected]
>
Cc: Paul Mackerras <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
tools/perf/util/header.c
patch
|
blob
|
history
diff --git
a/tools/perf/util/header.c
b/tools/perf/util/header.c
index a124b93281707c42986cff5e510ef1947993f6ed..05c9310c3da16dd98344fac7fb616b975c505d77 100644
(file)
--- a/
tools/perf/util/header.c
+++ b/
tools/perf/util/header.c
@@
-2314,7
+2314,7
@@
static int perf_evlist__set_tracepoint_names(struct perf_evlist *evlist,
struct perf_evsel *pos;
list_for_each_entry(pos, &evlist->entries, node) {
- if (pos->attr.type == PERF_TYPE_TRACEPOINT &&
+ if (pos->attr.type == PERF_TYPE_TRACEPOINT &&
!pos->name &&
perf_evsel__set_tracepoint_name(pos, pevent))
return -1;
}