Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 231890
b: refs/heads/master
c: 66832eb
h: refs/heads/master
v: v3
  • Loading branch information
Oleg Nesterov authored and Ingo Molnar committed Jan 18, 2011
1 parent 4fc6ba8 commit 919501e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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: 22a4ec729017ba613337a28f306f94ba5023fe2e
refs/heads/master: 66832eb4baaaa9abe4c993ddf9113a79e39b9915
10 changes: 6 additions & 4 deletions trunk/kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -2233,9 +2233,6 @@ find_get_context(struct pmu *pmu, struct task_struct *task, int cpu)
if (perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
return ERR_PTR(-EACCES);

if (cpu < 0 || cpu >= nr_cpumask_bits)
return ERR_PTR(-EINVAL);

/*
* We could be clever and allow to attach a event to an
* offline CPU and activate it when the CPU comes up, but
Expand Down Expand Up @@ -5541,6 +5538,11 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
struct hw_perf_event *hwc;
long err;

if ((unsigned)cpu >= nr_cpu_ids) {
if (!task || cpu != -1)
return ERR_PTR(-EINVAL);
}

event = kzalloc(sizeof(*event), GFP_KERNEL);
if (!event)
return ERR_PTR(-ENOMEM);
Expand Down Expand Up @@ -5589,7 +5591,7 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,

if (!overflow_handler && parent_event)
overflow_handler = parent_event->overflow_handler;

event->overflow_handler = overflow_handler;

if (attr->disabled)
Expand Down

0 comments on commit 919501e

Please sign in to comment.