The patch titled Subject: Revert "mm/page_isolation: unset migratetype directly for non Buddy page" has been added to the -mm tree. Its filename is revert-mm-page_isolation-unset-migratetype-directly-for-non-buddy-page.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/revert-mm-page_isolation-unset-migratetype-directly-for-non-buddy-page.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/revert-mm-page_isolation-unset-migratetype-directly-for-non-buddy-page.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: Chen Wandun <chenwandun@xxxxxxxxxx> Subject: Revert "mm/page_isolation: unset migratetype directly for non Buddy page" This reverts commit 721fb891ad0b3956d5c168b2931e3e5e4fb7ca40. commit 721fb891ad0b ("mm/page_isolation: unset migratetype directly for non Buddy page") will result memory that should in buddy disappear by mistake. move_freepages_block move all pages in pageblock instead of pages indicated by input parameter, so if input pages is not in buddy but other pages in pageblock is in buddy, it will result in page out of control. Link: https://lkml.kernel.org/r/20220126024436.13921-1-chenwandun@xxxxxxxxxx Fixes: 721fb891ad0b ("mm/page_isolation: unset migratetype directly for non Buddy page") Signed-off-by: Chen Wandun <chenwandun@xxxxxxxxxx> Reported-by: "kernelci.org bot" <bot@xxxxxxxxxxxx> Acked-by: David Hildenbrand <david@xxxxxxxxxx> Tested-by: Dong Aisheng <aisheng.dong@xxxxxxx> Tested-by: Francesco Dolcini <francesco.dolcini@xxxxxxxxxxx> Acked-by: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_isolation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/page_isolation.c~revert-mm-page_isolation-unset-migratetype-directly-for-non-buddy-page +++ a/mm/page_isolation.c @@ -115,7 +115,7 @@ static void unset_migratetype_isolate(st * onlining - just onlined memory won't immediately be considered for * allocation. */ - if (!isolated_page && PageBuddy(page)) { + if (!isolated_page) { nr_pages = move_freepages_block(zone, page, migratetype, NULL); __mod_zone_freepage_state(zone, nr_pages, migratetype); } _ Patches currently in -mm which might be from chenwandun@xxxxxxxxxx are revert-mm-page_isolation-unset-migratetype-directly-for-non-buddy-page.patch