Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 178021
b: refs/heads/master
c: 23f5d14
h: refs/heads/master
i:
  178019: acbbd1f
v: v3
  • Loading branch information
Thomas Gleixner authored and Ingo Molnar committed Dec 14, 2009
1 parent 436eb02 commit e14929c
Show file tree
Hide file tree
Showing 2 changed files with 7 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: 5fe85be081edf0ac92d83f9c39e0ab5c1371eb82
refs/heads/master: 23f5d142519621b16cf2b378cf8adf4dcf01a616
16 changes: 6 additions & 10 deletions trunk/kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -6516,22 +6516,18 @@ long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
int retval;

get_online_cpus();
read_lock(&tasklist_lock);
rcu_read_lock();

p = find_process_by_pid(pid);
if (!p) {
read_unlock(&tasklist_lock);
rcu_read_unlock();
put_online_cpus();
return -ESRCH;
}

/*
* It is not safe to call set_cpus_allowed with the
* tasklist_lock held. We will bump the task_struct's
* usage count and then drop tasklist_lock.
*/
/* Prevent p going away */
get_task_struct(p);
read_unlock(&tasklist_lock);
rcu_read_unlock();

if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
retval = -ENOMEM;
Expand Down Expand Up @@ -6617,7 +6613,7 @@ long sched_getaffinity(pid_t pid, struct cpumask *mask)
int retval;

get_online_cpus();
read_lock(&tasklist_lock);
rcu_read_lock();

retval = -ESRCH;
p = find_process_by_pid(pid);
Expand All @@ -6633,7 +6629,7 @@ long sched_getaffinity(pid_t pid, struct cpumask *mask)
task_rq_unlock(rq, &flags);

out_unlock:
read_unlock(&tasklist_lock);
rcu_read_unlock();
put_online_cpus();

return retval;
Expand Down

0 comments on commit e14929c

Please sign in to comment.