mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-16 05:50:19 +00:00
cgroup: simplify threadgroup locking
Now that threadgroup locking is made global, code paths around it can be simplified. * lock-verify-unlock-retry dancing removed from __cgroup_procs_write(). * Race protection against de_thread() removed from cgroup_update_dfl_csses(). Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
parent
d59cfc09c3
commit
b5ba75b5fc
@ -2402,14 +2402,13 @@ static ssize_t __cgroup_procs_write(struct kernfs_open_file *of, char *buf,
|
|||||||
if (!cgrp)
|
if (!cgrp)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
retry_find_task:
|
percpu_down_write(&cgroup_threadgroup_rwsem);
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
if (pid) {
|
if (pid) {
|
||||||
tsk = find_task_by_vpid(pid);
|
tsk = find_task_by_vpid(pid);
|
||||||
if (!tsk) {
|
if (!tsk) {
|
||||||
rcu_read_unlock();
|
|
||||||
ret = -ESRCH;
|
ret = -ESRCH;
|
||||||
goto out_unlock_cgroup;
|
goto out_unlock_rcu;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* even if we're attaching all tasks in the thread group, we
|
* even if we're attaching all tasks in the thread group, we
|
||||||
@ -2419,9 +2418,8 @@ retry_find_task:
|
|||||||
if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
|
if (!uid_eq(cred->euid, GLOBAL_ROOT_UID) &&
|
||||||
!uid_eq(cred->euid, tcred->uid) &&
|
!uid_eq(cred->euid, tcred->uid) &&
|
||||||
!uid_eq(cred->euid, tcred->suid)) {
|
!uid_eq(cred->euid, tcred->suid)) {
|
||||||
rcu_read_unlock();
|
|
||||||
ret = -EACCES;
|
ret = -EACCES;
|
||||||
goto out_unlock_cgroup;
|
goto out_unlock_rcu;
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
tsk = current;
|
tsk = current;
|
||||||
@ -2436,35 +2434,21 @@ retry_find_task:
|
|||||||
*/
|
*/
|
||||||
if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
|
if (tsk == kthreadd_task || (tsk->flags & PF_NO_SETAFFINITY)) {
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
rcu_read_unlock();
|
goto out_unlock_rcu;
|
||||||
goto out_unlock_cgroup;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get_task_struct(tsk);
|
get_task_struct(tsk);
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
|
|
||||||
percpu_down_write(&cgroup_threadgroup_rwsem);
|
|
||||||
if (threadgroup) {
|
|
||||||
if (!thread_group_leader(tsk)) {
|
|
||||||
/*
|
|
||||||
* a race with de_thread from another thread's exec()
|
|
||||||
* may strip us of our leadership, if this happens,
|
|
||||||
* there is no choice but to throw this task away and
|
|
||||||
* try again; this is
|
|
||||||
* "double-double-toil-and-trouble-check locking".
|
|
||||||
*/
|
|
||||||
percpu_up_write(&cgroup_threadgroup_rwsem);
|
|
||||||
put_task_struct(tsk);
|
|
||||||
goto retry_find_task;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = cgroup_attach_task(cgrp, tsk, threadgroup);
|
ret = cgroup_attach_task(cgrp, tsk, threadgroup);
|
||||||
|
|
||||||
percpu_up_write(&cgroup_threadgroup_rwsem);
|
|
||||||
|
|
||||||
put_task_struct(tsk);
|
put_task_struct(tsk);
|
||||||
out_unlock_cgroup:
|
goto out_unlock_threadgroup;
|
||||||
|
|
||||||
|
out_unlock_rcu:
|
||||||
|
rcu_read_unlock();
|
||||||
|
out_unlock_threadgroup:
|
||||||
|
percpu_up_write(&cgroup_threadgroup_rwsem);
|
||||||
cgroup_kn_unlock(of->kn);
|
cgroup_kn_unlock(of->kn);
|
||||||
return ret ?: nbytes;
|
return ret ?: nbytes;
|
||||||
}
|
}
|
||||||
@ -2611,6 +2595,8 @@ static int cgroup_update_dfl_csses(struct cgroup *cgrp)
|
|||||||
|
|
||||||
lockdep_assert_held(&cgroup_mutex);
|
lockdep_assert_held(&cgroup_mutex);
|
||||||
|
|
||||||
|
percpu_down_write(&cgroup_threadgroup_rwsem);
|
||||||
|
|
||||||
/* look up all csses currently attached to @cgrp's subtree */
|
/* look up all csses currently attached to @cgrp's subtree */
|
||||||
down_read(&css_set_rwsem);
|
down_read(&css_set_rwsem);
|
||||||
css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
|
css_for_each_descendant_pre(css, cgroup_css(cgrp, NULL)) {
|
||||||
@ -2666,17 +2652,8 @@ static int cgroup_update_dfl_csses(struct cgroup *cgrp)
|
|||||||
goto out_finish;
|
goto out_finish;
|
||||||
last_task = task;
|
last_task = task;
|
||||||
|
|
||||||
percpu_down_write(&cgroup_threadgroup_rwsem);
|
|
||||||
/* raced against de_thread() from another thread? */
|
|
||||||
if (!thread_group_leader(task)) {
|
|
||||||
percpu_up_write(&cgroup_threadgroup_rwsem);
|
|
||||||
put_task_struct(task);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
|
ret = cgroup_migrate(src_cset->dfl_cgrp, task, true);
|
||||||
|
|
||||||
percpu_up_write(&cgroup_threadgroup_rwsem);
|
|
||||||
put_task_struct(task);
|
put_task_struct(task);
|
||||||
|
|
||||||
if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
|
if (WARN(ret, "cgroup: failed to update controllers for the default hierarchy (%d), further operations may crash or hang\n", ret))
|
||||||
@ -2686,6 +2663,7 @@ static int cgroup_update_dfl_csses(struct cgroup *cgrp)
|
|||||||
|
|
||||||
out_finish:
|
out_finish:
|
||||||
cgroup_migrate_finish(&preloaded_csets);
|
cgroup_migrate_finish(&preloaded_csets);
|
||||||
|
percpu_up_write(&cgroup_threadgroup_rwsem);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user