aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/cpuset.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/cpuset.c')
-rw-r--r--kernel/cpuset.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/cpuset.c b/kernel/cpuset.c
index d240349cbf0f..bde714db2b26 100644
--- a/kernel/cpuset.c
+++ b/kernel/cpuset.c
@@ -2200,10 +2200,6 @@ void cpuset_fork(struct task_struct *child)
2200 * it is holding that mutex while calling check_for_release(), 2200 * it is holding that mutex while calling check_for_release(),
2201 * which calls kmalloc(), so can't be called holding callback_mutex(). 2201 * which calls kmalloc(), so can't be called holding callback_mutex().
2202 * 2202 *
2203 * We don't need to task_lock() this reference to tsk->cpuset,
2204 * because tsk is already marked PF_EXITING, so attach_task() won't
2205 * mess with it, or task is a failed fork, never visible to attach_task.
2206 *
2207 * the_top_cpuset_hack: 2203 * the_top_cpuset_hack:
2208 * 2204 *
2209 * Set the exiting tasks cpuset to the root cpuset (top_cpuset). 2205 * Set the exiting tasks cpuset to the root cpuset (top_cpuset).
@@ -2242,8 +2238,10 @@ void cpuset_exit(struct task_struct *tsk)
2242{ 2238{
2243 struct cpuset *cs; 2239 struct cpuset *cs;
2244 2240
2241 task_lock(current);
2245 cs = tsk->cpuset; 2242 cs = tsk->cpuset;
2246 tsk->cpuset = &top_cpuset; /* the_top_cpuset_hack - see above */ 2243 tsk->cpuset = &top_cpuset; /* the_top_cpuset_hack - see above */
2244 task_unlock(current);
2247 2245
2248 if (notify_on_release(cs)) { 2246 if (notify_on_release(cs)) {
2249 char *pathbuf = NULL; 2247 char *pathbuf = NULL;