The patch titled Subject: mmpage_alloccma-conditionally-prefer-cma-pageblocks-for-movable-allocations-fix has been removed from the -mm tree. Its filename was mmpage_alloccma-conditionally-prefer-cma-pageblocks-for-movable-allocations-fix.patch This patch was dropped because it was folded into mmpage_alloccma-conditionally-prefer-cma-pageblocks-for-movable-allocations.patch ------------------------------------------------------ From: Roman Gushchin <guro@xxxxxx> Subject: mmpage_alloccma-conditionally-prefer-cma-pageblocks-for-movable-allocations-fix ifdef the cma-specific code. Link: http://lkml.kernel.org/r/20200311225832.GA178154@xxxxxxxxxxxxxxxxxxxxxxxxxxx Cc: Anshuman Khandual <anshuman.khandual@xxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Qian Cai <cai@xxxxxx> Cc: Rik van Riel <riel@xxxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Joonsoo Kim <js1304@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 2 ++ 1 file changed, 2 insertions(+) --- a/mm/page_alloc.c~mmpage_alloccma-conditionally-prefer-cma-pageblocks-for-movable-allocations-fix +++ a/mm/page_alloc.c @@ -2752,6 +2752,7 @@ __rmqueue(struct zone *zone, unsigned in { struct page *page; +#ifdef CONFIG_CMA /* * Balance movable allocations between regular and CMA areas by * allocating from CMA when over half of the zone's free memory @@ -2764,6 +2765,7 @@ __rmqueue(struct zone *zone, unsigned in if (page) return page; } +#endif retry: page = __rmqueue_smallest(zone, order, migratetype); if (unlikely(!page)) { _ Patches currently in -mm which might be from guro@xxxxxx are mmpage_alloccma-conditionally-prefer-cma-pageblocks-for-movable-allocations.patch