[PATCH] mm, compaction: prevent infinite loop in compact_zone

From: Vlastimil Babka
Date: Mon Nov 10 2014 - 03:39:14 EST


Several people have reported occasionally seeing processes stuck in
compact_zone(), even triggering soft lockups, in 3.18-rc2+. Testing revert of
e14c720efdd7 ("mm, compaction: remember position within pageblock in free
pages scanner") fixed the issue, although the stuck processes do not appear
to involve the free scanner. Finally, by code inspection, the bug was found
in isolate_migratepages() which uses a slightly different condition to detect
if the migration and free scanners have met, than compact_finished(). That has
not been a problem until commit e14c720efdd7 allowed the free scanner position
between individual invocations to be in the middle of a pageblock. In an
relatively rare case, the migration scanner position can end up at the
beginning of a pageblock, with the free scanner position in the middle of the
same pageblock. If it's the migration scanner's turn, isolate_migratepages()
exits immediately (without updating the position), while compact_finished()
decides to continue compaction, resulting in a potentially infinite loop. The
system can recover only if another process creates enough high-order pages to
make the watermark checks in compact_finished() pass.

This patch fixes the immediate problem by bumping the migration scanner's
position to meet the free scanner in isolate_migratepages(), when both are
within the same pageblock. This causes compact_finished() to terminate
properly. A more robust check in compact_finished() is planned as a cleanup
for better future maintainability.

Fixes: e14c720efdd73c6d69cd8d07fa894bcd11fe1973
Reported-and-tested-by: P. Christeas <xrg@xxxxxxxx>
Link: http://marc.info/?l=linux-mm&m=141508604232522&w=2
Reported-and-tested-by: Norbert Preining <preining@xxxxxxxx>
Link: https://lkml.org/lkml/2014/11/4/904
Reported-by: Pavel Machek <pavel@xxxxxx>
Link: https://lkml.org/lkml/2014/11/7/164
Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx>
Cc: David Rientjes <rientjes@xxxxxxxxxx>
Signed-off-by: Vlastimil Babka <vbabka@xxxxxxx>
---
mm/compaction.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/mm/compaction.c b/mm/compaction.c
index ec74cf0..1b7a1be 100644
--- a/mm/compaction.c
+++ b/mm/compaction.c
@@ -1029,8 +1029,12 @@ static isolate_migrate_t isolate_migratepages(struct zone *zone,
}

acct_isolated(zone, cc);
- /* Record where migration scanner will be restarted */
- cc->migrate_pfn = low_pfn;
+ /*
+ * Record where migration scanner will be restarted. If we end up in
+ * the same pageblock as the free scanner, make the scanners fully
+ * meet so that compact_finished() terminates compaction.
+ */
+ cc->migrate_pfn = (end_pfn <= cc->free_pfn) ? low_pfn : cc->free_pfn;

return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE;
}
--
2.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/