mm: memcontrol: replace mem_cgroup_lruvec_online with mem_cgroup_online
mem_cgroup_lruvec_online() takes lruvec, but it only needs memcg. Since get_scan_count(), which is the only user of this function, now possesses pointer to memcg, let's pass memcg directly to mem_cgroup_online() instead of picking it out of lruvec and rename the function accordingly. Signed-off-by: Vladimir Davydov <vdavydov@virtuozzo.com> Acked-by: Johannes Weiner <hannes@cmpxchg.org> Cc: Michal Hocko <mhocko@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
3337767850
commit
eb01aaab43
@@ -1997,7 +1997,7 @@ static void get_scan_count(struct lruvec *lruvec, struct mem_cgroup *memcg,
|
||||
if (current_is_kswapd()) {
|
||||
if (!zone_reclaimable(zone))
|
||||
force_scan = true;
|
||||
if (!mem_cgroup_lruvec_online(lruvec))
|
||||
if (!mem_cgroup_online(memcg))
|
||||
force_scan = true;
|
||||
}
|
||||
if (!global_reclaim(sc))
|
||||
|
Reference in New Issue
Block a user