mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
perf: Simplify __perf_event_read
cpuctx is always active, task context is always active for current the previous condition verifies that if its a task context its for current, hence we can assume ctx->is_active. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> LKML-Reference: <20091120212509.000272254@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
3dbebf15c5
commit
58e5ad1de3
1 changed files with 2 additions and 3 deletions
|
@ -1526,10 +1526,9 @@ static void __perf_event_read(void *info)
|
||||||
if (ctx->task && cpuctx->task_ctx != ctx)
|
if (ctx->task && cpuctx->task_ctx != ctx)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (ctx->is_active)
|
update_context_time(ctx);
|
||||||
update_context_time(ctx);
|
|
||||||
event->pmu->read(event);
|
|
||||||
update_event_times(event);
|
update_event_times(event);
|
||||||
|
event->pmu->read(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
static u64 perf_event_read(struct perf_event *event)
|
static u64 perf_event_read(struct perf_event *event)
|
||||||
|
|
Loading…
Reference in a new issue