Re: cgroup_attach_task && while_each_thread (Was: cgroup attach task - slogging cpu)
From: anjana vk <hidden>
Date: 2013-10-15 05:04:09
Also in:
lkml
Subsystem:
the rest · Maintainer:
Linus Torvalds
Hi All, Thankyou for your suggestions. I have made the modifications as suggested. Please find the patch below. From fd85f093f912a160c0896ea2784dfbdd64f142ca Mon Sep 17 00:00:00 2001 From: Anjana V Kumar <redacted> Date: Wed, 9 Oct 2013 16:49:22 +0530 Subject: [PATCH] Single thread break missing in cgroup_attach_task Problem: Issue when attaching a single thread to a cgroup if the thread was alredy in the cgroup. The check if the thread is already in cgroup in the above case, continues to the next thread instead of exciting. Solution: Add a check if it is a single thread or a threadgroup and take decision accordingly. If it is a single thread break out of the do-while loop, and if it is a threadgroup goto the next thread. Change-Id: If6bbdef12ca5992823ac2a7bc15eaeb3dddb461a Signed-off-by: Anjana V Kumar <redacted> --- kernel/cgroup.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 2418b6e..13eafdc 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c@@ -2039,7 +2039,7 @@ static int cgroup_attach_task(struct cgroup*cgrp, struct task_struct *tsk, /* @tsk either already exited or can't exit until the end */ if (tsk->flags & PF_EXITING) - continue; + goto next_thread; /* as per above, nr_threads may decrease, but not increase. */ BUG_ON(i >= group_size);
@@ -2047,7 +2047,7 @@ static int cgroup_attach_task(struct cgroup*cgrp, struct task_struct *tsk, ent.cgrp = task_cgroup_from_root(tsk, root); /* nothing to do if this task is already in the cgroup */ if (ent.cgrp == cgrp) - continue; + goto next_thread; /* * saying GFP_ATOMIC has no effect here because we did prealloc * earlier, but it's good form to communicate our expectations.
@@ -2055,7 +2055,7 @@ static int cgroup_attach_task(struct cgroup*cgrp, struct task_struct *tsk, retval = flex_array_put(group, i, &ent, GFP_ATOMIC); BUG_ON(retval != 0); i++; - +next_thread: if (!threadgroup) break; } while_each_thread(leader, tsk); -- 1.7.6 On 10/11/13, Oleg Nesterov [off-list ref] wrote:
On 10/11, Li Zefan wrote:quoted
On 2013/10/10 0:54, Oleg Nesterov wrote:quoted
And I am starting to think that this change should also fix the while_each_thread() problems in this particular case.Please see below,quoted
quoted
In generak the code like rcu_read_lock(); task = find_get_task(...); rcu_read_unlock(); rcu_read_lock(); t = task; do { ... } while_each_thread (task, t); rcu_read_unlock(); is wrong even if while_each_thread() was correct (and we have a lot of examples of this pattern). A GP can pass before the 2nd rcu-lock, and we simply can't trust ->thread_group.next. But I didn't notice that cgroup_attach_task(tsk, threadgroup) can only be called with threadgroup == T when a) tsk is ->group_leader and b) we hold threadgroup_lock() which blocks de_thread(). IOW, in this case "tsk" can't be removed from ->thread_group list before other threads. If next_thread() sees thread_group.next != leader, we know that the that .next thread didn't do __unhash_process() yet, and since we know that in this case "leader" didn't do this too we are safe. In short: __unhash_process(leader) (in this) case can never change ->thread_group.next of another thread, because leader->thread_group should be already list_empty().If threadgroup == false, and if the tsk is existing or is already in the targeted cgroup, we won't break the loop due to the bug but do this: while_each_thread(task, t) If @task isn't the leader, we might got stuck in the loop?Yes, yes, sure. We need to fix the wrong "continue" logic, hopefully I tried to say (see above) that after we do this while_each_thread() should be fine in this particular case. Oleg.