The patch titled Subject: mm/vmscan: use folio_migratetype() instead of get_pageblock_migratetype() has been added to the -mm mm-unstable branch. Its filename is mm-vmscan-use-folio_migratetype-instead-of-get_pageblock_migratetype.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-vmscan-use-folio_migratetype-instead-of-get_pageblock_migratetype.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Vern Hao <vernhao@xxxxxxxxxxx> Subject: mm/vmscan: use folio_migratetype() instead of get_pageblock_migratetype() Date: Fri, 25 Aug 2023 15:57:34 +0800 In skip_cma(), we can use folio_migratetype() to replace get_pageblock_migratetype(). Link: https://lkml.kernel.org/r/20230825075735.52436-1-user@VERNHAO-MC1 Signed-off-by: Vern Hao <vernhao@xxxxxxxxxxx> Reviewed-by: David Hildenbrand <david@xxxxxxxxxx> Cc: Zhaoyang Huang <zhaoyang.huang@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/vmscan.c~mm-vmscan-use-folio_migratetype-instead-of-get_pageblock_migratetype +++ a/mm/vmscan.c @@ -2284,7 +2284,7 @@ static bool skip_cma(struct folio *folio { return !current_is_kswapd() && gfp_migratetype(sc->gfp_mask) != MIGRATE_MOVABLE && - get_pageblock_migratetype(&folio->page) == MIGRATE_CMA; + folio_migratetype(folio) == MIGRATE_CMA; } #else static bool skip_cma(struct folio *folio, struct scan_control *sc) _ Patches currently in -mm which might be from vernhao@xxxxxxxxxxx are mm-vmscan-use-folio_migratetype-instead-of-get_pageblock_migratetype.patch