On 11/29/2012 01:34 AM, Tejun Heo wrote: > This patchset decouples cpuset locking from cgroup_mutex. After the > patchset, cpuset uses cpuset-specific cpuset_mutex instead of > cgroup_mutex. This also removes the lockdep warning triggered during > cpu offlining (see 0009). > > Note that this leaves memcg as the only external user of cgroup_mutex. > Michal, Kame, can you guys please convert memcg to use its own locking > too? Not totally. There is still one mention to the cgroup_lock(): static void cpuset_do_move_task(struct task_struct *tsk, struct cgroup_scanner *scan) { struct cgroup *new_cgroup = scan->data; cgroup_lock(); cgroup_attach_task(new_cgroup, tsk); cgroup_unlock(); } And similar problem to this, is the one we have in memcg: We need to somehow guarantee that no tasks will join the cgroup for some time - this is why we hold the lock in memcg. Just calling a function that internally calls the cgroup lock won't do much, since it won't solve any dependencies - where it is called matters little. What I'll try to do, is to come with another specialized lock in cgroup just for this case. So after taking the cgroup lock, we would also take an extra lock if we are adding another entry - be it task or children - to the cgroup. cpuset and memcg could then take that lock as well, explicitly or implicitly. How does it sound? -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>