diff options
author | Lin Ming <ming.m.lin@intel.com> | 2011-02-27 08:13:31 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-03-04 05:32:50 -0500 |
commit | 940c5b2971de443df22eed0441bc74fb0116e9f5 (patch) | |
tree | 7264bdfcc08d5c6f0223d0d45ba7db4e47cf9957 /kernel/perf_event.c | |
parent | 888a8a3e9d79cbb9d83e53955f684998248580ec (diff) |
perf: Fix the missing event initialization when pmu is found in idr
Currently, the event is not initialized if pmu is found in idr. This
never causes bug just because now no pmu is associated with the idr
id.
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <1298812411.2699.9.camel@localhost>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/perf_event.c')
-rw-r--r-- | kernel/perf_event.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/kernel/perf_event.c b/kernel/perf_event.c index 64a018e94fca..821ce8221974 100644 --- a/kernel/perf_event.c +++ b/kernel/perf_event.c | |||
@@ -6098,17 +6098,22 @@ struct pmu *perf_init_event(struct perf_event *event) | |||
6098 | { | 6098 | { |
6099 | struct pmu *pmu = NULL; | 6099 | struct pmu *pmu = NULL; |
6100 | int idx; | 6100 | int idx; |
6101 | int ret; | ||
6101 | 6102 | ||
6102 | idx = srcu_read_lock(&pmus_srcu); | 6103 | idx = srcu_read_lock(&pmus_srcu); |
6103 | 6104 | ||
6104 | rcu_read_lock(); | 6105 | rcu_read_lock(); |
6105 | pmu = idr_find(&pmu_idr, event->attr.type); | 6106 | pmu = idr_find(&pmu_idr, event->attr.type); |
6106 | rcu_read_unlock(); | 6107 | rcu_read_unlock(); |
6107 | if (pmu) | 6108 | if (pmu) { |
6109 | ret = pmu->event_init(event); | ||
6110 | if (ret) | ||
6111 | pmu = ERR_PTR(ret); | ||
6108 | goto unlock; | 6112 | goto unlock; |
6113 | } | ||
6109 | 6114 | ||
6110 | list_for_each_entry_rcu(pmu, &pmus, entry) { | 6115 | list_for_each_entry_rcu(pmu, &pmus, entry) { |
6111 | int ret = pmu->event_init(event); | 6116 | ret = pmu->event_init(event); |
6112 | if (!ret) | 6117 | if (!ret) |
6113 | goto unlock; | 6118 | goto unlock; |
6114 | 6119 | ||