sched: Use rq->rd in sched_setaffinity() under RCU read lock
Probability of use-after-free isn't zero in this place. Signed-off-by: Kirill Tkhai <ktkhai@parallels.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: <stable@vger.kernel.org> # v3.14+ Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Link: http://lkml.kernel.org/r/20140922183636.11015.83611.stgit@localhost Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
16303ab2fe
commit
f1e3a0932f
1 changed files with 5 additions and 4 deletions
|
@ -4049,13 +4049,14 @@ long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
|
||||||
* root_domain.
|
* root_domain.
|
||||||
*/
|
*/
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
if (task_has_dl_policy(p)) {
|
if (task_has_dl_policy(p) && dl_bandwidth_enabled()) {
|
||||||
const struct cpumask *span = task_rq(p)->rd->span;
|
rcu_read_lock();
|
||||||
|
if (!cpumask_subset(task_rq(p)->rd->span, new_mask)) {
|
||||||
if (dl_bandwidth_enabled() && !cpumask_subset(span, new_mask)) {
|
|
||||||
retval = -EBUSY;
|
retval = -EBUSY;
|
||||||
|
rcu_read_unlock();
|
||||||
goto out_free_new_mask;
|
goto out_free_new_mask;
|
||||||
}
|
}
|
||||||
|
rcu_read_unlock();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
again:
|
again:
|
||||||
|
|
Loading…
Add table
Reference in a new issue