Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 211828
b: refs/heads/master
c: eb18447
h: refs/heads/master
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Sep 9, 2010
1 parent fe3bc82 commit 25a82ba
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 97dee4f3206622f31396dede2b5ddb8670458f56
refs/heads/master: eb184479874238393ac186c4e054d24311c34aaa
41 changes: 26 additions & 15 deletions trunk/kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -1959,17 +1959,33 @@ static struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
/*
* Initialize the perf_event context in a task_struct:
*/
static void
__perf_event_init_context(struct perf_event_context *ctx,
struct task_struct *task)
static void __perf_event_init_context(struct perf_event_context *ctx)
{
raw_spin_lock_init(&ctx->lock);
mutex_init(&ctx->mutex);
INIT_LIST_HEAD(&ctx->pinned_groups);
INIT_LIST_HEAD(&ctx->flexible_groups);
INIT_LIST_HEAD(&ctx->event_list);
atomic_set(&ctx->refcount, 1);
ctx->task = task;
}

static struct perf_event_context *
alloc_perf_context(struct pmu *pmu, struct task_struct *task)
{
struct perf_event_context *ctx;

ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
if (!ctx)
return NULL;

__perf_event_init_context(ctx);
if (task) {
ctx->task = task;
get_task_struct(task);
}
ctx->pmu = pmu;

return ctx;
}

static struct perf_event_context *
Expand Down Expand Up @@ -2036,22 +2052,22 @@ find_get_context(struct pmu *pmu, pid_t pid, int cpu)
}

if (!ctx) {
ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL);
ctx = alloc_perf_context(pmu, task);
err = -ENOMEM;
if (!ctx)
goto errout;
__perf_event_init_context(ctx, task);
ctx->pmu = pmu;

get_ctx(ctx);

if (cmpxchg(&task->perf_event_ctxp, NULL, ctx)) {
/*
* We raced with some other task; use
* the context they set.
*/
put_task_struct(task);
kfree(ctx);
goto retry;
}
get_task_struct(task);
}

put_task_struct(task);
Expand Down Expand Up @@ -5044,7 +5060,7 @@ int perf_pmu_register(struct pmu *pmu)
struct perf_cpu_context *cpuctx;

cpuctx = per_cpu_ptr(pmu->pmu_cpu_context, cpu);
__perf_event_init_context(&cpuctx->ctx, NULL);
__perf_event_init_context(&cpuctx->ctx);
cpuctx->ctx.pmu = pmu;
cpuctx->timer_interval = TICK_NSEC;
hrtimer_init(&cpuctx->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
Expand Down Expand Up @@ -5866,15 +5882,11 @@ inherit_task_group(struct perf_event *event, struct task_struct *parent,
* child.
*/

child_ctx = kzalloc(sizeof(struct perf_event_context),
GFP_KERNEL);
child_ctx = alloc_perf_context(event->pmu, child);
if (!child_ctx)
return -ENOMEM;

__perf_event_init_context(child_ctx, child);
child_ctx->pmu = event->pmu;
child->perf_event_ctxp = child_ctx;
get_task_struct(child);
}

ret = inherit_group(event, parent, parent_ctx,
Expand All @@ -5886,7 +5898,6 @@ inherit_task_group(struct perf_event *event, struct task_struct *parent,
return ret;
}


/*
* Initialize the perf_event context in task_struct
*/
Expand Down

0 comments on commit 25a82ba

Please sign in to comment.