mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
cgroup: cosmetic update to cgroup_taskset_add()
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>
This commit is contained in:
parent
20c56e595c
commit
d8ebf5191d
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user