The patch titled Subject: mm-vmscan-consider-anonymous-pages-without-swap-v11 has been added to the -mm tree. Its filename is mm-vmscan-consider-anonymous-pages-without-swap-v11.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-vmscan-consider-anonymous-pages-without-swap-v11.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-vmscan-consider-anonymous-pages-without-swap-v11.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Keith Busch <kbusch@xxxxxxxxxx> Subject: mm-vmscan-consider-anonymous-pages-without-swap-v11 Rename can_demote_anon_pages() to can_demote() to reflect the fact that the function is for anon and file pages. Link: https://lkml.kernel.org/r/20210715055145.195411-8-ying.huang@xxxxxxxxx Link: https://lkml.kernel.org/r/20210721063926.3024591-7-ying.huang@xxxxxxxxx Cc: Keith Busch <kbusch@xxxxxxxxxx> Signed-off-by: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx> Signed-off-by: "Huang, Ying" <ying.huang@xxxxxxxxx> Reviewed-by: Yang Shi <shy828301@xxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Zi Yan <ziy@xxxxxxxxxx> Cc: Wei Xu <weixugc@xxxxxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: David Hildenbrand <david@xxxxxxxxxx> Cc: Greg Thelen <gthelen@xxxxxxxxxx> Cc: Oscar Salvador <osalvador@xxxxxxx> Cc: Yang Shi <yang.shi@xxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/vmscan.c~mm-vmscan-consider-anonymous-pages-without-swap-v11 +++ a/mm/vmscan.c @@ -552,7 +552,7 @@ static inline bool can_reclaim_anon_page * * Can it be reclaimed from this node via demotion? */ - return can_demote_anon_pages(nid, sc); + return can_demote(nid, sc); } /* _ Patches currently in -mm which might be from kbusch@xxxxxxxxxx are mm-vmscan-consider-anonymous-pages-without-swap.patch mm-vmscan-consider-anonymous-pages-without-swap-v11.patch