forked from Minki/linux
perf: Fix prototype of find_pmu_context()
For some reason find_pmu_context() is defined as returning void * rather than a __percpu struct perf_cpu_context *. As all the requisite types are defined in advance there's no reason to keep it that way. This patch modifies the prototype of pmu_find_context to return a __percpu struct perf_cpu_context *. Signed-off-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Reviewed-by: Dave Martin <Dave.Martin@arm.com> Acked-by: Will Deacon <will.deacon@arm.com> Link: http://lkml.kernel.org/r/1392054264-23570-2-git-send-email-mark.rutland@arm.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
ff5a7088f0
commit
9e3170411e
@ -6313,7 +6313,7 @@ static int perf_event_idx_default(struct perf_event *event)
|
||||
* Ensures all contexts with the same task_ctx_nr have the same
|
||||
* pmu_cpu_context too.
|
||||
*/
|
||||
static void *find_pmu_context(int ctxn)
|
||||
static struct perf_cpu_context __percpu *find_pmu_context(int ctxn)
|
||||
{
|
||||
struct pmu *pmu;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user