]> git.baikalelectronics.ru Git - kernel.git/commit
mm: memcontrol: replace the loop with a list_for_each_entry()
authorMuchun Song <songmuchun@bytedance.com>
Wed, 24 Feb 2021 20:04:08 +0000 (12:04 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 24 Feb 2021 21:38:30 +0000 (13:38 -0800)
commitda4542ff39440187c2e0a5dd0049541abf119dde
tree146bb31545ac3fd6040b60881dafc4eb80937fa5
parent302c98d8c5c23a587190f31f20d6e279b3344961
mm: memcontrol: replace the loop with a list_for_each_entry()

The rule of list walk has gone since commit 301cf26d6261
("mm/memcontrol: allow to uncharge page without using page->lru field")

So remove the strange comment and replace the loop with a
list_for_each_entry().

There is only one caller of the uncharge_list().  So just fold it into
mem_cgroup_uncharge_list() and remove it.

Link: https://lkml.kernel.org/r/20210204163055.56080-1-songmuchun@bytedance.com
Signed-off-by: Muchun Song <songmuchun@bytedance.com>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Acked-by: Roman Gushchin <guro@fb.com>
Reviewed-by: Miaohe Lin <linmiaohe@huawei.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/memcontrol.c