The patch titled Subject: mm/compaction: split freepages without holding the zone lock fix has been removed from the -mm tree. Its filename was mm-compaction-split-freepages-without-holding-the-zone-lock-fix.patch This patch was dropped because it was folded into mm-compaction-split-freepages-without-holding-the-zone-lock.patch ------------------------------------------------------ From: David Rientjes <rientjes@xxxxxxxxxx> Subject: mm/compaction: split freepages without holding the zone lock fix If __isolate_free_page() fails, avoid adding to freelist so we don't call map_pages() with it. Link: http://lkml.kernel.org/r/alpine.DEB.2.10.1606211447001.43430@xxxxxxxxxxxxxxxxxxxxxxxxx Signed-off-by: David Rientjes <rientjes@xxxxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Cc: Alexander Potapenko <glider@xxxxxxxxxx> Cc: Hugh Dickins <hughd@xxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/compaction.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff -puN mm/compaction.c~mm-compaction-split-freepages-without-holding-the-zone-lock-fix mm/compaction.c --- a/mm/compaction.c~mm-compaction-split-freepages-without-holding-the-zone-lock-fix +++ a/mm/compaction.c @@ -497,13 +497,11 @@ static unsigned long isolate_freepages_b /* Found a free page, will break it into order-0 pages */ order = page_order(page); - isolated = __isolate_free_page(page, page_order(page)); + isolated = __isolate_free_page(page, order); set_page_private(page, order); - total_isolated += isolated; - cc->nr_freepages += isolated; list_add_tail(&page->lru, freelist); - + cc->nr_freepages += isolated; if (!strict && cc->nr_migratepages <= cc->nr_freepages) { blockpfn += isolated; break; @@ -622,7 +620,7 @@ isolate_freepages_range(struct compact_c */ } - /* split_free_page does not map the pages */ + /* __isolate_free_page() does not map the pages */ map_pages(&freelist); if (pfn < end_pfn) { @@ -1119,7 +1117,7 @@ static void isolate_freepages(struct com } } - /* split_free_page does not map the pages */ + /* __isolate_free_page() does not map the pages */ map_pages(freelist); /* _ Patches currently in -mm which might be from rientjes@xxxxxxxxxx are mm-compaction-split-freepages-without-holding-the-zone-lock.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html