__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);
mutex_init(&ctx->mutex);
INIT_LIST_HEAD(&ctx->counter_list);
INIT_LIST_HEAD(&ctx->event_list);
- ctx->rr_allowed = 1;
ctx->task = task;
}
*/
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;
break;
}
- barrier(); /* irqs */
- parent_ctx->rr_allowed = 1;
-
mutex_unlock(&parent_ctx->mutex);
}