提交 aeef4b83 编写于 作者: D David Rientjes 提交者: Linus Torvalds

mm, compaction: terminate async compaction when rescheduling

Async compaction terminates prematurely when need_resched(), see
compact_checklock_irqsave().  This can never trigger, however, if the
cond_resched() in isolate_migratepages_range() always takes care of the
scheduling.

If the cond_resched() actually triggers, then terminate this pageblock
scan for async compaction as well.
Signed-off-by: NDavid Rientjes <rientjes@google.com>
Acked-by: NMel Gorman <mgorman@suse.de>
Acked-by: NVlastimil Babka <vbabka@suse.cz>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Vlastimil Babka <vbabka@suse.cz>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 75f30861
...@@ -494,8 +494,13 @@ isolate_migratepages_range(struct zone *zone, struct compact_control *cc, ...@@ -494,8 +494,13 @@ isolate_migratepages_range(struct zone *zone, struct compact_control *cc,
return 0; return 0;
} }
if (cond_resched()) {
/* Async terminates prematurely on need_resched() */
if (cc->mode == MIGRATE_ASYNC)
return 0;
}
/* Time to isolate some pages for migration */ /* Time to isolate some pages for migration */
cond_resched();
for (; low_pfn < end_pfn; low_pfn++) { for (; low_pfn < end_pfn; low_pfn++) {
/* give a chance to irqs before checking need_resched() */ /* give a chance to irqs before checking need_resched() */
if (locked && !(low_pfn % SWAP_CLUSTER_MAX)) { if (locked && !(low_pfn % SWAP_CLUSTER_MAX)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册