Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 234500
b: refs/heads/master
c: 1b15d05
h: refs/heads/master
v: v3
  • Loading branch information
Li Zefan authored and Ingo Molnar committed Mar 4, 2011
1 parent 498e27e commit 21d4968
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 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: f75e18cb9627b1d3d752b83a0b5563da0042c50a
refs/heads/master: 1b15d0558e82df9b3659804ceb44187b98eda354
11 changes: 1 addition & 10 deletions trunk/kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -7346,26 +7346,17 @@ static struct cgroup_subsys_state *perf_cgroup_create(
struct cgroup_subsys *ss, struct cgroup *cont)
{
struct perf_cgroup *jc;
struct perf_cgroup_info *t;
int c;

jc = kmalloc(sizeof(*jc), GFP_KERNEL);
jc = kzalloc(sizeof(*jc), GFP_KERNEL);
if (!jc)
return ERR_PTR(-ENOMEM);

memset(jc, 0, sizeof(*jc));

jc->info = alloc_percpu(struct perf_cgroup_info);
if (!jc->info) {
kfree(jc);
return ERR_PTR(-ENOMEM);
}

for_each_possible_cpu(c) {
t = per_cpu_ptr(jc->info, c);
t->time = 0;
t->timestamp = 0;
}
return &jc->css;
}

Expand Down

0 comments on commit 21d4968

Please sign in to comment.