cgroup: cosmetic update to cgroup_taskset_add()
authorTejun Heo <tj@kernel.org>
Mon, 16 Jan 2017 00:03:40 +0000 (19:03 -0500)
committerTejun Heo <tj@kernel.org>
Mon, 16 Jan 2017 00:03:40 +0000 (19:03 -0500)
cgroup_taskset_add() was using list_add_tail() when for source csets
but list_move_tail() for destination.  As the operations are gated by
list_empty() test, list_move_tail() is equivalent to list_add_tail()
here.  Use list_add_tail() too for destination csets too.

This doesn't cause any functional changes.

Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Zefan Li <lizefan@huawei.com>
kernel/cgroup/cgroup.c

index d9d82e96d67f05f8dbe037b4b0b9a05e77ed8743..aed492e907c1b34823f0131e0936a59b7d62dbc5 100644 (file)
@@ -1980,8 +1980,8 @@ static void cgroup_taskset_add(struct task_struct *task,
        if (list_empty(&cset->mg_node))
                list_add_tail(&cset->mg_node, &tset->src_csets);
        if (list_empty(&cset->mg_dst_cset->mg_node))
-               list_move_tail(&cset->mg_dst_cset->mg_node,
-                              &tset->dst_csets);
+               list_add_tail(&cset->mg_dst_cset->mg_node,
+                             &tset->dst_csets);
 }
 
 /**