mm/memcg: minor cleanup for mc_handle_present_pte()
authorMiaohe Lin <linmiaohe@huawei.com>
Mon, 17 Jul 2023 11:36:44 +0000 (19:36 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 18 Aug 2023 17:12:37 +0000 (10:12 -0700)
commit58f341f772bb48b3d7b13dd6c0f9705ebdd02592
treeb8f81099d3cb655d4c985dc7dc11580b08d91038
parent43b3dfdd04553171488cb11d46d21948b6b90e27
mm/memcg: minor cleanup for mc_handle_present_pte()

When pagetable lock is held, the page will always be page_mapped().  So
remove unneeded page_mapped() check.  Also the page can't be freed from
under us in this case.  So use get_page() to get extra page reference to
simplify the code.  No functional change intended.

Link: https://lkml.kernel.org/r/20230717113644.3026478-1-linmiaohe@huawei.com
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Muchun Song <muchun.song@linux.dev>
Cc: Roman Gushchin <roman.gushchin@linux.dev>
Cc: Shakeel Butt <shakeelb@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/memcontrol.c