The quilt patch titled Subject: mm: compaction: push watermark into compaction_suitable() callers fix has been removed from the -mm tree. Its filename was mm-compaction-push-watermark-into-compaction_suitable-callers-fix.patch This patch was dropped because it was folded into mm-compaction-push-watermark-into-compaction_suitable-callers.patch ------------------------------------------------------ From: Hugh Dickins <hughd@xxxxxxxxxx> Subject: mm: compaction: push watermark into compaction_suitable() callers fix Date: Sat, 15 Mar 2025 21:28:16 -0700 (PDT) Stop oops on out-of-range highest_zoneidx: compaction_suitable() pass args to __compaction_suitable() in the order which it is expecting. Link: https://lkml.kernel.org/r/005ace8b-07fa-01d4-b54b-394a3e029c07@xxxxxxxxxx Signed-off-by: Hugh Dickins <hughd@xxxxxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Cc: Zi Yan <ziy@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/compaction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/compaction.c~mm-compaction-push-watermark-into-compaction_suitable-callers-fix +++ a/mm/compaction.c @@ -2416,7 +2416,7 @@ bool compaction_suitable(struct zone *zo enum compact_result compact_result; bool suitable; - suitable = __compaction_suitable(zone, order, highest_zoneidx, watermark, + suitable = __compaction_suitable(zone, order, watermark, highest_zoneidx, zone_page_state(zone, NR_FREE_PAGES)); /* * fragmentation index determines if allocation failures are due to _ Patches currently in -mm which might be from hughd@xxxxxxxxxx are mm-compaction-push-watermark-into-compaction_suitable-callers.patch