aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/perf_event.c
diff options
context:
space:
mode:
authorMatt Fleming <matt@console-pimps.org>2010-09-27 15:22:24 -0400
committerRobert Richter <robert.richter@amd.com>2010-10-11 04:38:13 -0400
commit3bf101ba42a1c89b5afbc7492e7647dae5e18735 (patch)
tree2501d57e827b283da1a0240630fe5988d155f07b /arch/sh/kernel/perf_event.c
parent4cbe75be5c6ae86bdc7daec864eeb2dfd66f48bb (diff)
perf: Add helper function to return number of counters
The number of counters for the registered pmu is needed in a few places so provide a helper function that returns this number. Signed-off-by: Matt Fleming <matt@console-pimps.org> Tested-by: Will Deacon <will.deacon@arm.com> Acked-by: Paul Mundt <lethal@linux-sh.org> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Robert Richter <robert.richter@amd.com>
Diffstat (limited to 'arch/sh/kernel/perf_event.c')
-rw-r--r--arch/sh/kernel/perf_event.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/sh/kernel/perf_event.c b/arch/sh/kernel/perf_event.c
index 7a3dc356725..2cb9ad59d4b 100644
--- a/arch/sh/kernel/perf_event.c
+++ b/arch/sh/kernel/perf_event.c
@@ -59,6 +59,15 @@ static inline int sh_pmu_initialized(void)
59 return !!sh_pmu; 59 return !!sh_pmu;
60} 60}
61 61
62int perf_num_counters(void)
63{
64 if (!sh_pmu)
65 return 0;
66
67 return sh_pmu->num_events;
68}
69EXPORT_SYMBOL_GPL(perf_num_counters);
70
62/* 71/*
63 * Release the PMU if this is the last perf_event. 72 * Release the PMU if this is the last perf_event.
64 */ 73 */