diff options
author | Jiri Olsa <jolsa@redhat.com> | 2012-10-10 08:53:16 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-10-24 04:41:26 -0400 |
commit | 3fded963cdae12ff891a55efc866437506c3f912 (patch) | |
tree | 98f0a41f70cc8131f42dc7692a3dea9cf407fdbf /tools | |
parent | 20550a434583c78f8ff9a2819639e2bacbe58574 (diff) |
perf tools: Fix PMU object alias initialization
The pmu_lookup should return pmus that do not expose the 'events'
group attribute in sysfs. Also it should fail when any other error
during 'events' lookup is hit (pmu_aliases fails).
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Stephane Eranian <eranian@google.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1349873598-12583-7-git-send-email-jolsa@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/pmu.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/perf/util/pmu.c b/tools/perf/util/pmu.c index 8a2229da594..18e84801d4d 100644 --- a/tools/perf/util/pmu.c +++ b/tools/perf/util/pmu.c | |||
@@ -164,7 +164,7 @@ static int pmu_aliases(char *name, struct list_head *head) | |||
164 | "%s/bus/event_source/devices/%s/events", sysfs, name); | 164 | "%s/bus/event_source/devices/%s/events", sysfs, name); |
165 | 165 | ||
166 | if (stat(path, &st) < 0) | 166 | if (stat(path, &st) < 0) |
167 | return -1; | 167 | return 0; /* no error if 'events' does not exist */ |
168 | 168 | ||
169 | if (pmu_aliases_parse(path, head)) | 169 | if (pmu_aliases_parse(path, head)) |
170 | return -1; | 170 | return -1; |
@@ -296,6 +296,9 @@ static struct perf_pmu *pmu_lookup(char *name) | |||
296 | if (pmu_format(name, &format)) | 296 | if (pmu_format(name, &format)) |
297 | return NULL; | 297 | return NULL; |
298 | 298 | ||
299 | if (pmu_aliases(name, &aliases)) | ||
300 | return NULL; | ||
301 | |||
299 | if (pmu_type(name, &type)) | 302 | if (pmu_type(name, &type)) |
300 | return NULL; | 303 | return NULL; |
301 | 304 | ||
@@ -305,8 +308,6 @@ static struct perf_pmu *pmu_lookup(char *name) | |||
305 | 308 | ||
306 | pmu->cpus = pmu_cpumask(name); | 309 | pmu->cpus = pmu_cpumask(name); |
307 | 310 | ||
308 | pmu_aliases(name, &aliases); | ||
309 | |||
310 | INIT_LIST_HEAD(&pmu->format); | 311 | INIT_LIST_HEAD(&pmu->format); |
311 | INIT_LIST_HEAD(&pmu->aliases); | 312 | INIT_LIST_HEAD(&pmu->aliases); |
312 | list_splice(&format, &pmu->format); | 313 | list_splice(&format, &pmu->format); |