Skip to content

Commit

Permalink
perf_counter: Solve the rotate_ctx vs inherit race differently
Browse files Browse the repository at this point in the history
Instead of disabling RR scheduling of the counters, use a different list
that does not get rotated to iterate the counters on inheritance.

[ Impact: cleanup, optimization ]

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: John Kacur <jkacur@redhat.com>
LKML-Reference: <20090520102553.237504544@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed May 20, 2009
1 parent c44d70a commit d7b629a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
1 change: 0 additions & 1 deletion include/linux/perf_counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,6 @@ struct perf_counter_context {
int nr_counters;
int nr_active;
int is_active;
int rr_allowed;
struct task_struct *task;

/*
Expand Down
15 changes: 5 additions & 10 deletions kernel/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -1120,8 +1120,7 @@ void perf_counter_task_tick(struct task_struct *curr, int cpu)
__perf_counter_task_sched_out(ctx);

rotate_ctx(&cpuctx->ctx);
if (ctx->rr_allowed)
rotate_ctx(ctx);
rotate_ctx(ctx);

perf_counter_cpu_sched_in(cpuctx, cpu);
perf_counter_task_sched_in(curr, cpu);
Expand Down Expand Up @@ -3109,7 +3108,6 @@ __perf_counter_init_context(struct perf_counter_context *ctx,
mutex_init(&ctx->mutex);
INIT_LIST_HEAD(&ctx->counter_list);
INIT_LIST_HEAD(&ctx->event_list);
ctx->rr_allowed = 1;
ctx->task = task;
}

Expand Down Expand Up @@ -3350,14 +3348,14 @@ void perf_counter_init_task(struct task_struct *child)
*/
mutex_lock(&parent_ctx->mutex);

parent_ctx->rr_allowed = 0;
barrier(); /* irqs */

/*
* We dont have to disable NMIs - we are only looking at
* the list, not manipulating it:
*/
list_for_each_entry(counter, &parent_ctx->counter_list, list_entry) {
list_for_each_entry_rcu(counter, &parent_ctx->event_list, event_entry) {
if (counter != counter->group_leader)
continue;

if (!counter->hw_event.inherit)
continue;

Expand All @@ -3366,9 +3364,6 @@ void perf_counter_init_task(struct task_struct *child)
break;
}

barrier(); /* irqs */
parent_ctx->rr_allowed = 1;

mutex_unlock(&parent_ctx->mutex);
}

Expand Down

0 comments on commit d7b629a

Please sign in to comment.