blob: 4af1577adb5c3b33d720403b83d18d7037d45045 [file] [log] [blame]
Mel Gorman748446b2010-05-24 14:32:27 -07001/*
2 * linux/mm/compaction.c
3 *
4 * Memory compaction for the reduction of external fragmentation. Note that
5 * this heavily depends upon page migration to do all the real heavy
6 * lifting
7 *
8 * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie>
9 */
Vlastimil Babka698b1b32016-03-17 14:18:08 -070010#include <linux/cpu.h>
Mel Gorman748446b2010-05-24 14:32:27 -070011#include <linux/swap.h>
12#include <linux/migrate.h>
13#include <linux/compaction.h>
14#include <linux/mm_inline.h>
15#include <linux/backing-dev.h>
Mel Gorman76ab0f52010-05-24 14:32:28 -070016#include <linux/sysctl.h>
Mel Gormaned4a6d72010-05-24 14:32:29 -070017#include <linux/sysfs.h>
Rafael Aquinibf6bddf2012-12-11 16:02:42 -080018#include <linux/balloon_compaction.h>
Minchan Kim194159f2013-02-22 16:33:58 -080019#include <linux/page-isolation.h>
Andrey Ryabininb8c73fc2015-02-13 14:39:28 -080020#include <linux/kasan.h>
Vlastimil Babka698b1b32016-03-17 14:18:08 -070021#include <linux/kthread.h>
22#include <linux/freezer.h>
Mel Gorman748446b2010-05-24 14:32:27 -070023#include "internal.h"
24
Minchan Kim010fc292012-12-20 15:05:06 -080025#ifdef CONFIG_COMPACTION
26static inline void count_compact_event(enum vm_event_item item)
27{
28 count_vm_event(item);
29}
30
31static inline void count_compact_events(enum vm_event_item item, long delta)
32{
33 count_vm_events(item, delta);
34}
35#else
36#define count_compact_event(item) do { } while (0)
37#define count_compact_events(item, delta) do { } while (0)
38#endif
39
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010040#if defined CONFIG_COMPACTION || defined CONFIG_CMA
41
Mel Gormanb7aba692011-01-13 15:45:54 -080042#define CREATE_TRACE_POINTS
43#include <trace/events/compaction.h>
44
Vlastimil Babka06b66402016-05-19 17:11:48 -070045#define block_start_pfn(pfn, order) round_down(pfn, 1UL << (order))
46#define block_end_pfn(pfn, order) ALIGN((pfn) + 1, 1UL << (order))
47#define pageblock_start_pfn(pfn) block_start_pfn(pfn, pageblock_order)
48#define pageblock_end_pfn(pfn) block_end_pfn(pfn, pageblock_order)
49
Mel Gorman748446b2010-05-24 14:32:27 -070050static unsigned long release_freepages(struct list_head *freelist)
51{
52 struct page *page, *next;
Vlastimil Babka6bace092014-12-10 15:43:31 -080053 unsigned long high_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -070054
55 list_for_each_entry_safe(page, next, freelist, lru) {
Vlastimil Babka6bace092014-12-10 15:43:31 -080056 unsigned long pfn = page_to_pfn(page);
Mel Gorman748446b2010-05-24 14:32:27 -070057 list_del(&page->lru);
58 __free_page(page);
Vlastimil Babka6bace092014-12-10 15:43:31 -080059 if (pfn > high_pfn)
60 high_pfn = pfn;
Mel Gorman748446b2010-05-24 14:32:27 -070061 }
62
Vlastimil Babka6bace092014-12-10 15:43:31 -080063 return high_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -070064}
65
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010066static void map_pages(struct list_head *list)
67{
68 struct page *page;
69
70 list_for_each_entry(page, list, lru) {
71 arch_alloc_page(page, 0);
72 kernel_map_pages(page, 1, 1);
Andrey Ryabininb8c73fc2015-02-13 14:39:28 -080073 kasan_alloc_pages(page, 0);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010074 }
75}
76
Michal Nazarewicz47118af2011-12-29 13:09:50 +010077static inline bool migrate_async_suitable(int migratetype)
78{
79 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
80}
81
Mel Gormanbb13ffe2012-10-08 16:32:41 -070082#ifdef CONFIG_COMPACTION
Joonsoo Kim24e27162015-02-11 15:27:09 -080083
84/* Do not skip compaction more than 64 times */
85#define COMPACT_MAX_DEFER_SHIFT 6
86
87/*
88 * Compaction is deferred when compaction fails to result in a page
89 * allocation success. 1 << compact_defer_limit compactions are skipped up
90 * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT
91 */
92void defer_compaction(struct zone *zone, int order)
93{
94 zone->compact_considered = 0;
95 zone->compact_defer_shift++;
96
97 if (order < zone->compact_order_failed)
98 zone->compact_order_failed = order;
99
100 if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT)
101 zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT;
102
103 trace_mm_compaction_defer_compaction(zone, order);
104}
105
106/* Returns true if compaction should be skipped this time */
107bool compaction_deferred(struct zone *zone, int order)
108{
109 unsigned long defer_limit = 1UL << zone->compact_defer_shift;
110
111 if (order < zone->compact_order_failed)
112 return false;
113
114 /* Avoid possible overflow */
115 if (++zone->compact_considered > defer_limit)
116 zone->compact_considered = defer_limit;
117
118 if (zone->compact_considered >= defer_limit)
119 return false;
120
121 trace_mm_compaction_deferred(zone, order);
122
123 return true;
124}
125
126/*
127 * Update defer tracking counters after successful compaction of given order,
128 * which means an allocation either succeeded (alloc_success == true) or is
129 * expected to succeed.
130 */
131void compaction_defer_reset(struct zone *zone, int order,
132 bool alloc_success)
133{
134 if (alloc_success) {
135 zone->compact_considered = 0;
136 zone->compact_defer_shift = 0;
137 }
138 if (order >= zone->compact_order_failed)
139 zone->compact_order_failed = order + 1;
140
141 trace_mm_compaction_defer_reset(zone, order);
142}
143
144/* Returns true if restarting compaction after many failures */
145bool compaction_restarting(struct zone *zone, int order)
146{
147 if (order < zone->compact_order_failed)
148 return false;
149
150 return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT &&
151 zone->compact_considered >= 1UL << zone->compact_defer_shift;
152}
153
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700154/* Returns true if the pageblock should be scanned for pages to isolate. */
155static inline bool isolation_suitable(struct compact_control *cc,
156 struct page *page)
157{
158 if (cc->ignore_skip_hint)
159 return true;
160
161 return !get_pageblock_skip(page);
162}
163
Vlastimil Babka02333642015-09-08 15:02:42 -0700164static void reset_cached_positions(struct zone *zone)
165{
166 zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn;
167 zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn;
Joonsoo Kim623446e2016-03-15 14:57:45 -0700168 zone->compact_cached_free_pfn =
Vlastimil Babka06b66402016-05-19 17:11:48 -0700169 pageblock_start_pfn(zone_end_pfn(zone) - 1);
Vlastimil Babka02333642015-09-08 15:02:42 -0700170}
171
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700172/*
173 * This function is called to clear all cached information on pageblocks that
174 * should be skipped for page isolation when the migrate and free page scanner
175 * meet.
176 */
Mel Gorman62997022012-10-08 16:32:47 -0700177static void __reset_isolation_suitable(struct zone *zone)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700178{
179 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -0800180 unsigned long end_pfn = zone_end_pfn(zone);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700181 unsigned long pfn;
182
Mel Gorman62997022012-10-08 16:32:47 -0700183 zone->compact_blockskip_flush = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700184
185 /* Walk the zone and mark every pageblock as suitable for isolation */
186 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
187 struct page *page;
188
189 cond_resched();
190
191 if (!pfn_valid(pfn))
192 continue;
193
194 page = pfn_to_page(pfn);
195 if (zone != page_zone(page))
196 continue;
197
198 clear_pageblock_skip(page);
199 }
Vlastimil Babka02333642015-09-08 15:02:42 -0700200
201 reset_cached_positions(zone);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700202}
203
Mel Gorman62997022012-10-08 16:32:47 -0700204void reset_isolation_suitable(pg_data_t *pgdat)
205{
206 int zoneid;
207
208 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
209 struct zone *zone = &pgdat->node_zones[zoneid];
210 if (!populated_zone(zone))
211 continue;
212
213 /* Only flush if a full compaction finished recently */
214 if (zone->compact_blockskip_flush)
215 __reset_isolation_suitable(zone);
216 }
217}
218
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700219/*
220 * If no pages were isolated then mark this pageblock to be skipped in the
Mel Gorman62997022012-10-08 16:32:47 -0700221 * future. The information is later cleared by __reset_isolation_suitable().
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700222 */
Mel Gormanc89511a2012-10-08 16:32:45 -0700223static void update_pageblock_skip(struct compact_control *cc,
224 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700225 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700226{
Mel Gormanc89511a2012-10-08 16:32:45 -0700227 struct zone *zone = cc->zone;
David Rientjes35979ef2014-06-04 16:08:27 -0700228 unsigned long pfn;
Joonsoo Kim6815bf32013-12-18 17:08:52 -0800229
230 if (cc->ignore_skip_hint)
231 return;
232
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700233 if (!page)
234 return;
235
David Rientjes35979ef2014-06-04 16:08:27 -0700236 if (nr_isolated)
237 return;
238
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700239 set_pageblock_skip(page);
Mel Gormanc89511a2012-10-08 16:32:45 -0700240
David Rientjes35979ef2014-06-04 16:08:27 -0700241 pfn = page_to_pfn(page);
242
243 /* Update where async and sync compaction should restart */
244 if (migrate_scanner) {
David Rientjes35979ef2014-06-04 16:08:27 -0700245 if (pfn > zone->compact_cached_migrate_pfn[0])
246 zone->compact_cached_migrate_pfn[0] = pfn;
David Rientjese0b9dae2014-06-04 16:08:28 -0700247 if (cc->mode != MIGRATE_ASYNC &&
248 pfn > zone->compact_cached_migrate_pfn[1])
David Rientjes35979ef2014-06-04 16:08:27 -0700249 zone->compact_cached_migrate_pfn[1] = pfn;
250 } else {
David Rientjes35979ef2014-06-04 16:08:27 -0700251 if (pfn < zone->compact_cached_free_pfn)
252 zone->compact_cached_free_pfn = pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -0700253 }
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700254}
255#else
256static inline bool isolation_suitable(struct compact_control *cc,
257 struct page *page)
258{
259 return true;
260}
261
Mel Gormanc89511a2012-10-08 16:32:45 -0700262static void update_pageblock_skip(struct compact_control *cc,
263 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700264 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700265{
266}
267#endif /* CONFIG_COMPACTION */
268
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700269/*
270 * Compaction requires the taking of some coarse locks that are potentially
271 * very heavily contended. For async compaction, back out if the lock cannot
272 * be taken immediately. For sync compaction, spin on the lock if needed.
273 *
274 * Returns true if the lock is held
275 * Returns false if the lock is not held and compaction should abort
276 */
277static bool compact_trylock_irqsave(spinlock_t *lock, unsigned long *flags,
278 struct compact_control *cc)
Mel Gorman2a1402a2012-10-08 16:32:33 -0700279{
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700280 if (cc->mode == MIGRATE_ASYNC) {
281 if (!spin_trylock_irqsave(lock, *flags)) {
282 cc->contended = COMPACT_CONTENDED_LOCK;
283 return false;
284 }
285 } else {
286 spin_lock_irqsave(lock, *flags);
287 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700288
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700289 return true;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700290}
291
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100292/*
Mel Gormanc67fe372012-08-21 16:16:17 -0700293 * Compaction requires the taking of some coarse locks that are potentially
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700294 * very heavily contended. The lock should be periodically unlocked to avoid
295 * having disabled IRQs for a long time, even when there is nobody waiting on
296 * the lock. It might also be that allowing the IRQs will result in
297 * need_resched() becoming true. If scheduling is needed, async compaction
298 * aborts. Sync compaction schedules.
299 * Either compaction type will also abort if a fatal signal is pending.
300 * In either case if the lock was locked, it is dropped and not regained.
Mel Gormanc67fe372012-08-21 16:16:17 -0700301 *
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700302 * Returns true if compaction should abort due to fatal signal pending, or
303 * async compaction due to need_resched()
304 * Returns false when compaction can continue (sync compaction might have
305 * scheduled)
Mel Gormanc67fe372012-08-21 16:16:17 -0700306 */
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700307static bool compact_unlock_should_abort(spinlock_t *lock,
308 unsigned long flags, bool *locked, struct compact_control *cc)
Mel Gormanc67fe372012-08-21 16:16:17 -0700309{
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700310 if (*locked) {
311 spin_unlock_irqrestore(lock, flags);
312 *locked = false;
313 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700314
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700315 if (fatal_signal_pending(current)) {
316 cc->contended = COMPACT_CONTENDED_SCHED;
317 return true;
318 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700319
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700320 if (need_resched()) {
David Rientjese0b9dae2014-06-04 16:08:28 -0700321 if (cc->mode == MIGRATE_ASYNC) {
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700322 cc->contended = COMPACT_CONTENDED_SCHED;
323 return true;
Mel Gormanc67fe372012-08-21 16:16:17 -0700324 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700325 cond_resched();
Mel Gormanc67fe372012-08-21 16:16:17 -0700326 }
327
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700328 return false;
Mel Gormanc67fe372012-08-21 16:16:17 -0700329}
330
Vlastimil Babkabe976572014-06-04 16:10:41 -0700331/*
332 * Aside from avoiding lock contention, compaction also periodically checks
333 * need_resched() and either schedules in sync compaction or aborts async
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700334 * compaction. This is similar to what compact_unlock_should_abort() does, but
Vlastimil Babkabe976572014-06-04 16:10:41 -0700335 * is used where no lock is concerned.
336 *
337 * Returns false when no scheduling was needed, or sync compaction scheduled.
338 * Returns true when async compaction should abort.
339 */
340static inline bool compact_should_abort(struct compact_control *cc)
341{
342 /* async compaction aborts if contended */
343 if (need_resched()) {
344 if (cc->mode == MIGRATE_ASYNC) {
Vlastimil Babka1f9efde2014-10-09 15:27:14 -0700345 cc->contended = COMPACT_CONTENDED_SCHED;
Vlastimil Babkabe976572014-06-04 16:10:41 -0700346 return true;
347 }
348
349 cond_resched();
350 }
351
352 return false;
353}
354
Mel Gormanc67fe372012-08-21 16:16:17 -0700355/*
Jerome Marchand9e4be472013-11-12 15:07:12 -0800356 * Isolate free pages onto a private freelist. If @strict is true, will abort
357 * returning 0 on any invalid PFNs or non-free pages inside of the pageblock
358 * (even though it may still end up isolating some pages).
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100359 */
Mel Gormanf40d1e42012-10-08 16:32:36 -0700360static unsigned long isolate_freepages_block(struct compact_control *cc,
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700361 unsigned long *start_pfn,
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100362 unsigned long end_pfn,
363 struct list_head *freelist,
364 bool strict)
Mel Gorman748446b2010-05-24 14:32:27 -0700365{
Mel Gormanb7aba692011-01-13 15:45:54 -0800366 int nr_scanned = 0, total_isolated = 0;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700367 struct page *cursor, *valid_page = NULL;
Xiubo Lib8b2d822014-10-09 15:28:21 -0700368 unsigned long flags = 0;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700369 bool locked = false;
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700370 unsigned long blockpfn = *start_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700371
Mel Gorman748446b2010-05-24 14:32:27 -0700372 cursor = pfn_to_page(blockpfn);
373
Mel Gormanf40d1e42012-10-08 16:32:36 -0700374 /* Isolate free pages. */
Mel Gorman748446b2010-05-24 14:32:27 -0700375 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
376 int isolated, i;
377 struct page *page = cursor;
378
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700379 /*
380 * Periodically drop the lock (if held) regardless of its
381 * contention, to give chance to IRQs. Abort if fatal signal
382 * pending or async compaction detects need_resched()
383 */
384 if (!(blockpfn % SWAP_CLUSTER_MAX)
385 && compact_unlock_should_abort(&cc->zone->lock, flags,
386 &locked, cc))
387 break;
388
Mel Gormanb7aba692011-01-13 15:45:54 -0800389 nr_scanned++;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700390 if (!pfn_valid_within(blockpfn))
Laura Abbott2af120b2014-03-10 15:49:44 -0700391 goto isolate_fail;
392
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700393 if (!valid_page)
394 valid_page = page;
Vlastimil Babka9fcd6d22015-09-08 15:02:49 -0700395
396 /*
397 * For compound pages such as THP and hugetlbfs, we can save
398 * potentially a lot of iterations if we skip them at once.
399 * The check is racy, but we can consider only valid values
400 * and the only danger is skipping too much.
401 */
402 if (PageCompound(page)) {
403 unsigned int comp_order = compound_order(page);
404
405 if (likely(comp_order < MAX_ORDER)) {
406 blockpfn += (1UL << comp_order) - 1;
407 cursor += (1UL << comp_order) - 1;
408 }
409
410 goto isolate_fail;
411 }
412
Mel Gormanf40d1e42012-10-08 16:32:36 -0700413 if (!PageBuddy(page))
Laura Abbott2af120b2014-03-10 15:49:44 -0700414 goto isolate_fail;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700415
416 /*
Vlastimil Babka69b71892014-10-09 15:27:18 -0700417 * If we already hold the lock, we can skip some rechecking.
418 * Note that if we hold the lock now, checked_pageblock was
419 * already set in some previous iteration (or strict is true),
420 * so it is correct to skip the suitable migration target
421 * recheck as well.
Mel Gormanf40d1e42012-10-08 16:32:36 -0700422 */
Vlastimil Babka69b71892014-10-09 15:27:18 -0700423 if (!locked) {
424 /*
425 * The zone lock must be held to isolate freepages.
426 * Unfortunately this is a very coarse lock and can be
427 * heavily contended if there are parallel allocations
428 * or parallel compactions. For async compaction do not
429 * spin on the lock and we acquire the lock as late as
430 * possible.
431 */
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700432 locked = compact_trylock_irqsave(&cc->zone->lock,
433 &flags, cc);
Vlastimil Babka69b71892014-10-09 15:27:18 -0700434 if (!locked)
435 break;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700436
Vlastimil Babka69b71892014-10-09 15:27:18 -0700437 /* Recheck this is a buddy page under lock */
438 if (!PageBuddy(page))
439 goto isolate_fail;
440 }
Mel Gorman748446b2010-05-24 14:32:27 -0700441
442 /* Found a free page, break it into order-0 pages */
443 isolated = split_free_page(page);
444 total_isolated += isolated;
445 for (i = 0; i < isolated; i++) {
446 list_add(&page->lru, freelist);
447 page++;
448 }
449
450 /* If a page was split, advance to the end of it */
451 if (isolated) {
Joonsoo Kim932ff6b2015-02-12 14:59:53 -0800452 cc->nr_freepages += isolated;
453 if (!strict &&
454 cc->nr_migratepages <= cc->nr_freepages) {
455 blockpfn += isolated;
456 break;
457 }
458
Mel Gorman748446b2010-05-24 14:32:27 -0700459 blockpfn += isolated - 1;
460 cursor += isolated - 1;
Laura Abbott2af120b2014-03-10 15:49:44 -0700461 continue;
Mel Gorman748446b2010-05-24 14:32:27 -0700462 }
Laura Abbott2af120b2014-03-10 15:49:44 -0700463
464isolate_fail:
465 if (strict)
466 break;
467 else
468 continue;
469
Mel Gorman748446b2010-05-24 14:32:27 -0700470 }
471
Vlastimil Babka9fcd6d22015-09-08 15:02:49 -0700472 /*
473 * There is a tiny chance that we have read bogus compound_order(),
474 * so be careful to not go outside of the pageblock.
475 */
476 if (unlikely(blockpfn > end_pfn))
477 blockpfn = end_pfn;
478
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800479 trace_mm_compaction_isolate_freepages(*start_pfn, blockpfn,
480 nr_scanned, total_isolated);
481
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700482 /* Record how far we have got within the block */
483 *start_pfn = blockpfn;
484
Mel Gormanf40d1e42012-10-08 16:32:36 -0700485 /*
486 * If strict isolation is requested by CMA then check that all the
487 * pages requested were isolated. If there were any failures, 0 is
488 * returned and CMA will fail.
489 */
Laura Abbott2af120b2014-03-10 15:49:44 -0700490 if (strict && blockpfn < end_pfn)
Mel Gormanf40d1e42012-10-08 16:32:36 -0700491 total_isolated = 0;
492
493 if (locked)
494 spin_unlock_irqrestore(&cc->zone->lock, flags);
495
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700496 /* Update the pageblock-skip if the whole pageblock was scanned */
497 if (blockpfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700498 update_pageblock_skip(cc, valid_page, total_isolated, false);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700499
Minchan Kim010fc292012-12-20 15:05:06 -0800500 count_compact_events(COMPACTFREE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100501 if (total_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800502 count_compact_events(COMPACTISOLATED, total_isolated);
Mel Gorman748446b2010-05-24 14:32:27 -0700503 return total_isolated;
504}
505
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100506/**
507 * isolate_freepages_range() - isolate free pages.
508 * @start_pfn: The first PFN to start isolating.
509 * @end_pfn: The one-past-last PFN.
510 *
511 * Non-free pages, invalid PFNs, or zone boundaries within the
512 * [start_pfn, end_pfn) range are considered errors, cause function to
513 * undo its actions and return zero.
514 *
515 * Otherwise, function returns one-past-the-last PFN of isolated page
516 * (which may be greater then end_pfn if end fell in a middle of
517 * a free page).
518 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100519unsigned long
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700520isolate_freepages_range(struct compact_control *cc,
521 unsigned long start_pfn, unsigned long end_pfn)
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100522{
Joonsoo Kime1409c32016-03-15 14:57:48 -0700523 unsigned long isolated, pfn, block_start_pfn, block_end_pfn;
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100524 LIST_HEAD(freelist);
525
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700526 pfn = start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700527 block_start_pfn = pageblock_start_pfn(pfn);
Joonsoo Kime1409c32016-03-15 14:57:48 -0700528 if (block_start_pfn < cc->zone->zone_start_pfn)
529 block_start_pfn = cc->zone->zone_start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700530 block_end_pfn = pageblock_end_pfn(pfn);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100531
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700532 for (; pfn < end_pfn; pfn += isolated,
Joonsoo Kime1409c32016-03-15 14:57:48 -0700533 block_start_pfn = block_end_pfn,
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700534 block_end_pfn += pageblock_nr_pages) {
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700535 /* Protect pfn from changing by isolate_freepages_block */
536 unsigned long isolate_start_pfn = pfn;
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700537
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100538 block_end_pfn = min(block_end_pfn, end_pfn);
539
Joonsoo Kim58420012014-11-13 15:19:07 -0800540 /*
541 * pfn could pass the block_end_pfn if isolated freepage
542 * is more than pageblock order. In this case, we adjust
543 * scanning range to right one.
544 */
545 if (pfn >= block_end_pfn) {
Vlastimil Babka06b66402016-05-19 17:11:48 -0700546 block_start_pfn = pageblock_start_pfn(pfn);
547 block_end_pfn = pageblock_end_pfn(pfn);
Joonsoo Kim58420012014-11-13 15:19:07 -0800548 block_end_pfn = min(block_end_pfn, end_pfn);
549 }
550
Joonsoo Kime1409c32016-03-15 14:57:48 -0700551 if (!pageblock_pfn_to_page(block_start_pfn,
552 block_end_pfn, cc->zone))
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700553 break;
554
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700555 isolated = isolate_freepages_block(cc, &isolate_start_pfn,
556 block_end_pfn, &freelist, true);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100557
558 /*
559 * In strict mode, isolate_freepages_block() returns 0 if
560 * there are any holes in the block (ie. invalid PFNs or
561 * non-free pages).
562 */
563 if (!isolated)
564 break;
565
566 /*
567 * If we managed to isolate pages, it is always (1 << n) *
568 * pageblock_nr_pages for some non-negative n. (Max order
569 * page may span two pageblocks).
570 */
571 }
572
573 /* split_free_page does not map the pages */
574 map_pages(&freelist);
575
576 if (pfn < end_pfn) {
577 /* Loop terminated early, cleanup. */
578 release_freepages(&freelist);
579 return 0;
580 }
581
582 /* We don't use freelists for anything. */
583 return pfn;
584}
585
Mel Gorman748446b2010-05-24 14:32:27 -0700586/* Update the number of anon and file isolated pages in the zone */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700587static void acct_isolated(struct zone *zone, struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700588{
589 struct page *page;
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700590 unsigned int count[2] = { 0, };
Mel Gorman748446b2010-05-24 14:32:27 -0700591
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700592 if (list_empty(&cc->migratepages))
593 return;
594
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700595 list_for_each_entry(page, &cc->migratepages, lru)
596 count[!!page_is_file_cache(page)]++;
Mel Gorman748446b2010-05-24 14:32:27 -0700597
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700598 mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
599 mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
Mel Gorman748446b2010-05-24 14:32:27 -0700600}
601
602/* Similar to reclaim, but different enough that they don't share logic */
603static bool too_many_isolated(struct zone *zone)
604{
Minchan Kimbc693042010-09-09 16:38:00 -0700605 unsigned long active, inactive, isolated;
Mel Gorman748446b2010-05-24 14:32:27 -0700606
607 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
608 zone_page_state(zone, NR_INACTIVE_ANON);
Minchan Kimbc693042010-09-09 16:38:00 -0700609 active = zone_page_state(zone, NR_ACTIVE_FILE) +
610 zone_page_state(zone, NR_ACTIVE_ANON);
Mel Gorman748446b2010-05-24 14:32:27 -0700611 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
612 zone_page_state(zone, NR_ISOLATED_ANON);
613
Minchan Kimbc693042010-09-09 16:38:00 -0700614 return isolated > (inactive + active) / 2;
Mel Gorman748446b2010-05-24 14:32:27 -0700615}
616
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100617/**
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700618 * isolate_migratepages_block() - isolate all migrate-able pages within
619 * a single pageblock
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100620 * @cc: Compaction control structure.
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700621 * @low_pfn: The first PFN to isolate
622 * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock
623 * @isolate_mode: Isolation mode to be used.
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100624 *
625 * Isolate all pages that can be migrated from the range specified by
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700626 * [low_pfn, end_pfn). The range is expected to be within same pageblock.
627 * Returns zero if there is a fatal signal pending, otherwise PFN of the
628 * first page that was not scanned (which may be both less, equal to or more
629 * than end_pfn).
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100630 *
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700631 * The pages are isolated on cc->migratepages list (not required to be empty),
632 * and cc->nr_migratepages is updated accordingly. The cc->migrate_pfn field
633 * is neither read nor updated.
Mel Gorman748446b2010-05-24 14:32:27 -0700634 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700635static unsigned long
636isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn,
637 unsigned long end_pfn, isolate_mode_t isolate_mode)
Mel Gorman748446b2010-05-24 14:32:27 -0700638{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700639 struct zone *zone = cc->zone;
Mel Gormanb7aba692011-01-13 15:45:54 -0800640 unsigned long nr_scanned = 0, nr_isolated = 0;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700641 struct lruvec *lruvec;
Xiubo Lib8b2d822014-10-09 15:28:21 -0700642 unsigned long flags = 0;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700643 bool locked = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700644 struct page *page = NULL, *valid_page = NULL;
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800645 unsigned long start_pfn = low_pfn;
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700646 bool skip_on_failure = false;
647 unsigned long next_skip_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700648
Mel Gorman748446b2010-05-24 14:32:27 -0700649 /*
650 * Ensure that there are not too many pages isolated from the LRU
651 * list by either parallel reclaimers or compaction. If there are,
652 * delay for some time until fewer pages are isolated
653 */
654 while (unlikely(too_many_isolated(zone))) {
Mel Gormanf9e35b32011-06-15 15:08:52 -0700655 /* async migration should just abort */
David Rientjese0b9dae2014-06-04 16:08:28 -0700656 if (cc->mode == MIGRATE_ASYNC)
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100657 return 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700658
Mel Gorman748446b2010-05-24 14:32:27 -0700659 congestion_wait(BLK_RW_ASYNC, HZ/10);
660
661 if (fatal_signal_pending(current))
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100662 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700663 }
664
Vlastimil Babkabe976572014-06-04 16:10:41 -0700665 if (compact_should_abort(cc))
666 return 0;
David Rientjesaeef4b82014-06-04 16:08:31 -0700667
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700668 if (cc->direct_compaction && (cc->mode == MIGRATE_ASYNC)) {
669 skip_on_failure = true;
670 next_skip_pfn = block_end_pfn(low_pfn, cc->order);
671 }
672
Mel Gorman748446b2010-05-24 14:32:27 -0700673 /* Time to isolate some pages for migration */
Mel Gorman748446b2010-05-24 14:32:27 -0700674 for (; low_pfn < end_pfn; low_pfn++) {
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700675 bool is_lru;
676
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700677 if (skip_on_failure && low_pfn >= next_skip_pfn) {
678 /*
679 * We have isolated all migration candidates in the
680 * previous order-aligned block, and did not skip it due
681 * to failure. We should migrate the pages now and
682 * hopefully succeed compaction.
683 */
684 if (nr_isolated)
685 break;
686
687 /*
688 * We failed to isolate in the previous order-aligned
689 * block. Set the new boundary to the end of the
690 * current block. Note we can't simply increase
691 * next_skip_pfn by 1 << order, as low_pfn might have
692 * been incremented by a higher number due to skipping
693 * a compound or a high-order buddy page in the
694 * previous loop iteration.
695 */
696 next_skip_pfn = block_end_pfn(low_pfn, cc->order);
697 }
698
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700699 /*
700 * Periodically drop the lock (if held) regardless of its
701 * contention, to give chance to IRQs. Abort async compaction
702 * if contended.
703 */
704 if (!(low_pfn % SWAP_CLUSTER_MAX)
705 && compact_unlock_should_abort(&zone->lru_lock, flags,
706 &locked, cc))
707 break;
Mel Gormanc67fe372012-08-21 16:16:17 -0700708
Mel Gorman748446b2010-05-24 14:32:27 -0700709 if (!pfn_valid_within(low_pfn))
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700710 goto isolate_fail;
Mel Gormanb7aba692011-01-13 15:45:54 -0800711 nr_scanned++;
Mel Gorman748446b2010-05-24 14:32:27 -0700712
Mel Gorman748446b2010-05-24 14:32:27 -0700713 page = pfn_to_page(low_pfn);
Mel Gormandc908602012-02-08 17:13:38 -0800714
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700715 if (!valid_page)
716 valid_page = page;
717
Mel Gorman6c144662014-01-23 15:53:38 -0800718 /*
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700719 * Skip if free. We read page order here without zone lock
720 * which is generally unsafe, but the race window is small and
721 * the worst thing that can happen is that we skip some
722 * potential isolation targets.
Mel Gorman6c144662014-01-23 15:53:38 -0800723 */
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700724 if (PageBuddy(page)) {
725 unsigned long freepage_order = page_order_unsafe(page);
726
727 /*
728 * Without lock, we cannot be sure that what we got is
729 * a valid page order. Consider only values in the
730 * valid order range to prevent low_pfn overflow.
731 */
732 if (freepage_order > 0 && freepage_order < MAX_ORDER)
733 low_pfn += (1UL << freepage_order) - 1;
Mel Gorman748446b2010-05-24 14:32:27 -0700734 continue;
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700735 }
Mel Gorman748446b2010-05-24 14:32:27 -0700736
Mel Gorman9927af742011-01-13 15:45:59 -0800737 /*
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800738 * Check may be lockless but that's ok as we recheck later.
739 * It's possible to migrate LRU pages and balloon pages
740 * Skip any other type of page
741 */
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700742 is_lru = PageLRU(page);
743 if (!is_lru) {
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800744 if (unlikely(balloon_page_movable(page))) {
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700745 if (balloon_page_isolate(page)) {
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800746 /* Successfully isolated */
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700747 goto isolate_success;
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800748 }
749 }
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800750 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800751
752 /*
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700753 * Regardless of being on LRU, compound pages such as THP and
754 * hugetlbfs are not to be compacted. We can potentially save
755 * a lot of iterations if we skip them at once. The check is
756 * racy, but we can consider only valid values and the only
757 * danger is skipping too much.
Andrea Arcangelibc835012011-01-13 15:47:08 -0800758 */
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700759 if (PageCompound(page)) {
760 unsigned int comp_order = compound_order(page);
761
762 if (likely(comp_order < MAX_ORDER))
763 low_pfn += (1UL << comp_order) - 1;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700764
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700765 goto isolate_fail;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700766 }
767
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700768 if (!is_lru)
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700769 goto isolate_fail;
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700770
David Rientjes119d6d52014-04-03 14:48:00 -0700771 /*
772 * Migration will fail if an anonymous page is pinned in memory,
773 * so avoid taking lru_lock and isolating it unnecessarily in an
774 * admittedly racy check.
775 */
776 if (!page_mapping(page) &&
777 page_count(page) > page_mapcount(page))
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700778 goto isolate_fail;
David Rientjes119d6d52014-04-03 14:48:00 -0700779
Vlastimil Babka69b71892014-10-09 15:27:18 -0700780 /* If we already hold the lock, we can skip some rechecking */
781 if (!locked) {
Vlastimil Babka8b44d272014-10-09 15:27:16 -0700782 locked = compact_trylock_irqsave(&zone->lru_lock,
783 &flags, cc);
Vlastimil Babka69b71892014-10-09 15:27:18 -0700784 if (!locked)
785 break;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700786
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700787 /* Recheck PageLRU and PageCompound under lock */
Vlastimil Babka69b71892014-10-09 15:27:18 -0700788 if (!PageLRU(page))
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700789 goto isolate_fail;
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700790
791 /*
792 * Page become compound since the non-locked check,
793 * and it's on LRU. It can only be a THP so the order
794 * is safe to read and it's 0 for tail pages.
795 */
796 if (unlikely(PageCompound(page))) {
797 low_pfn += (1UL << compound_order(page)) - 1;
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700798 goto isolate_fail;
Vlastimil Babka69b71892014-10-09 15:27:18 -0700799 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800800 }
801
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700802 lruvec = mem_cgroup_page_lruvec(page, zone);
803
Mel Gorman748446b2010-05-24 14:32:27 -0700804 /* Try isolate the page */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700805 if (__isolate_lru_page(page, isolate_mode) != 0)
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700806 goto isolate_fail;
Mel Gorman748446b2010-05-24 14:32:27 -0700807
Vlastimil Babka29c0dde2015-09-08 15:02:46 -0700808 VM_BUG_ON_PAGE(PageCompound(page), page);
Andrea Arcangelibc835012011-01-13 15:47:08 -0800809
Mel Gorman748446b2010-05-24 14:32:27 -0700810 /* Successfully isolated */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700811 del_page_from_lru_list(page, lruvec, page_lru(page));
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700812
813isolate_success:
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700814 list_add(&page->lru, &cc->migratepages);
Mel Gorman748446b2010-05-24 14:32:27 -0700815 cc->nr_migratepages++;
Mel Gormanb7aba692011-01-13 15:45:54 -0800816 nr_isolated++;
Mel Gorman748446b2010-05-24 14:32:27 -0700817
Vlastimil Babkaa34753d2016-05-19 17:11:51 -0700818 /*
819 * Record where we could have freed pages by migration and not
820 * yet flushed them to buddy allocator.
821 * - this is the lowest page that was isolated and likely be
822 * then freed by migration.
823 */
824 if (!cc->last_migrated_pfn)
825 cc->last_migrated_pfn = low_pfn;
826
Mel Gorman748446b2010-05-24 14:32:27 -0700827 /* Avoid isolating too much */
Hillf Danton31b83842012-01-10 15:07:59 -0800828 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
829 ++low_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700830 break;
Hillf Danton31b83842012-01-10 15:07:59 -0800831 }
Vlastimil Babkafdd048e2016-05-19 17:11:55 -0700832
833 continue;
834isolate_fail:
835 if (!skip_on_failure)
836 continue;
837
838 /*
839 * We have isolated some pages, but then failed. Release them
840 * instead of migrating, as we cannot form the cc->order buddy
841 * page anyway.
842 */
843 if (nr_isolated) {
844 if (locked) {
845 spin_unlock_irqrestore(&zone->lru_lock, flags);
846 locked = false;
847 }
848 acct_isolated(zone, cc);
849 putback_movable_pages(&cc->migratepages);
850 cc->nr_migratepages = 0;
851 cc->last_migrated_pfn = 0;
852 nr_isolated = 0;
853 }
854
855 if (low_pfn < next_skip_pfn) {
856 low_pfn = next_skip_pfn - 1;
857 /*
858 * The check near the loop beginning would have updated
859 * next_skip_pfn too, but this is a bit simpler.
860 */
861 next_skip_pfn += 1UL << cc->order;
862 }
Mel Gorman748446b2010-05-24 14:32:27 -0700863 }
864
Vlastimil Babka99c0fd52014-10-09 15:27:23 -0700865 /*
866 * The PageBuddy() check could have potentially brought us outside
867 * the range to be scanned.
868 */
869 if (unlikely(low_pfn > end_pfn))
870 low_pfn = end_pfn;
871
Mel Gormanc67fe372012-08-21 16:16:17 -0700872 if (locked)
873 spin_unlock_irqrestore(&zone->lru_lock, flags);
Mel Gorman748446b2010-05-24 14:32:27 -0700874
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800875 /*
876 * Update the pageblock-skip information and cached scanner pfn,
877 * if the whole pageblock was scanned without isolating any page.
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800878 */
David Rientjes35979ef2014-06-04 16:08:27 -0700879 if (low_pfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700880 update_pageblock_skip(cc, valid_page, nr_isolated, true);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700881
Joonsoo Kime34d85f2015-02-11 15:27:04 -0800882 trace_mm_compaction_isolate_migratepages(start_pfn, low_pfn,
883 nr_scanned, nr_isolated);
Mel Gormanb7aba692011-01-13 15:45:54 -0800884
Minchan Kim010fc292012-12-20 15:05:06 -0800885 count_compact_events(COMPACTMIGRATE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100886 if (nr_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800887 count_compact_events(COMPACTISOLATED, nr_isolated);
Mel Gorman397487d2012-10-19 12:00:10 +0100888
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100889 return low_pfn;
890}
891
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700892/**
893 * isolate_migratepages_range() - isolate migrate-able pages in a PFN range
894 * @cc: Compaction control structure.
895 * @start_pfn: The first PFN to start isolating.
896 * @end_pfn: The one-past-last PFN.
897 *
898 * Returns zero if isolation fails fatally due to e.g. pending signal.
899 * Otherwise, function returns one-past-the-last PFN of isolated page
900 * (which may be greater than end_pfn if end fell in a middle of a THP page).
901 */
902unsigned long
903isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn,
904 unsigned long end_pfn)
905{
Joonsoo Kime1409c32016-03-15 14:57:48 -0700906 unsigned long pfn, block_start_pfn, block_end_pfn;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700907
908 /* Scan block by block. First and last block may be incomplete */
909 pfn = start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700910 block_start_pfn = pageblock_start_pfn(pfn);
Joonsoo Kime1409c32016-03-15 14:57:48 -0700911 if (block_start_pfn < cc->zone->zone_start_pfn)
912 block_start_pfn = cc->zone->zone_start_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -0700913 block_end_pfn = pageblock_end_pfn(pfn);
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700914
915 for (; pfn < end_pfn; pfn = block_end_pfn,
Joonsoo Kime1409c32016-03-15 14:57:48 -0700916 block_start_pfn = block_end_pfn,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700917 block_end_pfn += pageblock_nr_pages) {
918
919 block_end_pfn = min(block_end_pfn, end_pfn);
920
Joonsoo Kime1409c32016-03-15 14:57:48 -0700921 if (!pageblock_pfn_to_page(block_start_pfn,
922 block_end_pfn, cc->zone))
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700923 continue;
924
925 pfn = isolate_migratepages_block(cc, pfn, block_end_pfn,
926 ISOLATE_UNEVICTABLE);
927
Hugh Dickins14af4a52016-05-05 16:22:15 -0700928 if (!pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700929 break;
Joonsoo Kim6ea41c02014-10-29 14:50:20 -0700930
931 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX)
932 break;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700933 }
934 acct_isolated(cc->zone, cc);
935
936 return pfn;
937}
938
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100939#endif /* CONFIG_COMPACTION || CONFIG_CMA */
940#ifdef CONFIG_COMPACTION
Andrew Morton018e9a42015-04-15 16:15:20 -0700941
942/* Returns true if the page is within a block suitable for migration to */
943static bool suitable_migration_target(struct page *page)
944{
945 /* If the page is a large free page, then disallow migration */
946 if (PageBuddy(page)) {
947 /*
948 * We are checking page_order without zone->lock taken. But
949 * the only small danger is that we skip a potentially suitable
950 * pageblock, so it's not worth to check order for valid range.
951 */
952 if (page_order_unsafe(page) >= pageblock_order)
953 return false;
954 }
955
956 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
957 if (migrate_async_suitable(get_pageblock_migratetype(page)))
958 return true;
959
960 /* Otherwise skip the block */
961 return false;
962}
963
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100964/*
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -0700965 * Test whether the free scanner has reached the same or lower pageblock than
966 * the migration scanner, and compaction should thus terminate.
967 */
968static inline bool compact_scanners_met(struct compact_control *cc)
969{
970 return (cc->free_pfn >> pageblock_order)
971 <= (cc->migrate_pfn >> pageblock_order);
972}
973
974/*
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100975 * Based on information in the current compact_control, find blocks
976 * suitable for isolating free pages from and then isolate them.
977 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700978static void isolate_freepages(struct compact_control *cc)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100979{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700980 struct zone *zone = cc->zone;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100981 struct page *page;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700982 unsigned long block_start_pfn; /* start of current pageblock */
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700983 unsigned long isolate_start_pfn; /* exact pfn we start at */
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700984 unsigned long block_end_pfn; /* end of current pageblock */
985 unsigned long low_pfn; /* lowest pfn scanner is able to scan */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100986 struct list_head *freelist = &cc->freepages;
987
988 /*
989 * Initialise the free scanner. The starting point is where we last
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700990 * successfully isolated from, zone-cached value, or the end of the
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700991 * zone when isolating for the first time. For looping we also need
992 * this pfn aligned down to the pageblock boundary, because we do
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700993 * block_start_pfn -= pageblock_nr_pages in the for loop.
994 * For ending point, take care when isolating in last pageblock of a
995 * a zone which ends in the middle of a pageblock.
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700996 * The low boundary is the end of the pageblock the migration scanner
997 * is using.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100998 */
Vlastimil Babkae14c7202014-10-09 15:27:20 -0700999 isolate_start_pfn = cc->free_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -07001000 block_start_pfn = pageblock_start_pfn(cc->free_pfn);
Vlastimil Babkac96b9e52014-06-04 16:07:26 -07001001 block_end_pfn = min(block_start_pfn + pageblock_nr_pages,
1002 zone_end_pfn(zone));
Vlastimil Babka06b66402016-05-19 17:11:48 -07001003 low_pfn = pageblock_end_pfn(cc->migrate_pfn);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001004
1005 /*
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001006 * Isolate free pages until enough are available to migrate the
1007 * pages on cc->migratepages. We stop searching if the migrate
1008 * and free page scanners meet or enough free pages are isolated.
1009 */
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001010 for (; block_start_pfn >= low_pfn;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -07001011 block_end_pfn = block_start_pfn,
Vlastimil Babkae14c7202014-10-09 15:27:20 -07001012 block_start_pfn -= pageblock_nr_pages,
1013 isolate_start_pfn = block_start_pfn) {
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001014
David Rientjesf6ea3ad2013-09-30 13:45:03 -07001015 /*
1016 * This can iterate a massively long zone without finding any
1017 * suitable migration targets, so periodically check if we need
Vlastimil Babkabe976572014-06-04 16:10:41 -07001018 * to schedule, or even abort async compaction.
David Rientjesf6ea3ad2013-09-30 13:45:03 -07001019 */
Vlastimil Babkabe976572014-06-04 16:10:41 -07001020 if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
1021 && compact_should_abort(cc))
1022 break;
David Rientjesf6ea3ad2013-09-30 13:45:03 -07001023
Vlastimil Babka7d49d882014-10-09 15:27:11 -07001024 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
1025 zone);
1026 if (!page)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001027 continue;
1028
1029 /* Check the block is suitable for migration */
Linus Torvalds68e3e922012-06-03 20:05:57 -07001030 if (!suitable_migration_target(page))
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001031 continue;
Linus Torvalds68e3e922012-06-03 20:05:57 -07001032
Mel Gormanbb13ffe2012-10-08 16:32:41 -07001033 /* If isolation recently failed, do not retry */
1034 if (!isolation_suitable(cc, page))
1035 continue;
1036
Vlastimil Babkae14c7202014-10-09 15:27:20 -07001037 /* Found a block suitable for isolating free pages from. */
Joonsoo Kim932ff6b2015-02-12 14:59:53 -08001038 isolate_freepages_block(cc, &isolate_start_pfn,
Vlastimil Babkac96b9e52014-06-04 16:07:26 -07001039 block_end_pfn, freelist, false);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001040
1041 /*
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001042 * If we isolated enough freepages, or aborted due to async
1043 * compaction being contended, terminate the loop.
Vlastimil Babkae14c7202014-10-09 15:27:20 -07001044 * Remember where the free scanner should restart next time,
1045 * which is where isolate_freepages_block() left off.
1046 * But if it scanned the whole pageblock, isolate_start_pfn
1047 * now points at block_end_pfn, which is the start of the next
1048 * pageblock.
1049 * In that case we will however want to restart at the start
1050 * of the previous pageblock.
1051 */
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001052 if ((cc->nr_freepages >= cc->nr_migratepages)
1053 || cc->contended) {
1054 if (isolate_start_pfn >= block_end_pfn)
1055 isolate_start_pfn =
1056 block_start_pfn - pageblock_nr_pages;
Vlastimil Babkabe976572014-06-04 16:10:41 -07001057 break;
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001058 } else {
1059 /*
1060 * isolate_freepages_block() should not terminate
1061 * prematurely unless contended, or isolated enough
1062 */
1063 VM_BUG_ON(isolate_start_pfn < block_end_pfn);
1064 }
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +01001065 }
1066
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001067 /* split_free_page does not map the pages */
1068 map_pages(freelist);
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +01001069
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001070 /*
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001071 * Record where the free scanner will restart next time. Either we
1072 * broke from the loop and set isolate_start_pfn based on the last
1073 * call to isolate_freepages_block(), or we met the migration scanner
1074 * and the loop terminated due to isolate_start_pfn < low_pfn
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001075 */
Vlastimil Babkaf5f61a32015-09-08 15:02:39 -07001076 cc->free_pfn = isolate_start_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -07001077}
1078
1079/*
1080 * This is a migrate-callback that "allocates" freepages by taking pages
1081 * from the isolated freelists in the block we are migrating to.
1082 */
1083static struct page *compaction_alloc(struct page *migratepage,
1084 unsigned long data,
1085 int **result)
1086{
1087 struct compact_control *cc = (struct compact_control *)data;
1088 struct page *freepage;
1089
Vlastimil Babkabe976572014-06-04 16:10:41 -07001090 /*
1091 * Isolate free pages if necessary, and if we are not aborting due to
1092 * contention.
1093 */
Mel Gorman748446b2010-05-24 14:32:27 -07001094 if (list_empty(&cc->freepages)) {
Vlastimil Babkabe976572014-06-04 16:10:41 -07001095 if (!cc->contended)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001096 isolate_freepages(cc);
Mel Gorman748446b2010-05-24 14:32:27 -07001097
1098 if (list_empty(&cc->freepages))
1099 return NULL;
1100 }
1101
1102 freepage = list_entry(cc->freepages.next, struct page, lru);
1103 list_del(&freepage->lru);
1104 cc->nr_freepages--;
1105
1106 return freepage;
1107}
1108
1109/*
David Rientjesd53aea32014-06-04 16:08:26 -07001110 * This is a migrate-callback that "frees" freepages back to the isolated
1111 * freelist. All pages on the freelist are from the same zone, so there is no
1112 * special handling needed for NUMA.
1113 */
1114static void compaction_free(struct page *page, unsigned long data)
1115{
1116 struct compact_control *cc = (struct compact_control *)data;
1117
1118 list_add(&page->lru, &cc->freepages);
1119 cc->nr_freepages++;
1120}
1121
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001122/* possible outcome of isolate_migratepages */
1123typedef enum {
1124 ISOLATE_ABORT, /* Abort compaction now */
1125 ISOLATE_NONE, /* No pages isolated, continue scanning */
1126 ISOLATE_SUCCESS, /* Pages isolated, migrate */
1127} isolate_migrate_t;
1128
1129/*
Eric B Munson5bbe3542015-04-15 16:13:20 -07001130 * Allow userspace to control policy on scanning the unevictable LRU for
1131 * compactable pages.
1132 */
1133int sysctl_compact_unevictable_allowed __read_mostly = 1;
1134
1135/*
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001136 * Isolate all pages that can be migrated from the first suitable block,
1137 * starting at the block pointed to by the migrate scanner pfn within
1138 * compact_control.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001139 */
1140static isolate_migrate_t isolate_migratepages(struct zone *zone,
1141 struct compact_control *cc)
1142{
Joonsoo Kime1409c32016-03-15 14:57:48 -07001143 unsigned long block_start_pfn;
1144 unsigned long block_end_pfn;
1145 unsigned long low_pfn;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001146 struct page *page;
1147 const isolate_mode_t isolate_mode =
Eric B Munson5bbe3542015-04-15 16:13:20 -07001148 (sysctl_compact_unevictable_allowed ? ISOLATE_UNEVICTABLE : 0) |
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001149 (cc->mode == MIGRATE_ASYNC ? ISOLATE_ASYNC_MIGRATE : 0);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001150
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001151 /*
1152 * Start at where we last stopped, or beginning of the zone as
1153 * initialized by compact_zone()
1154 */
1155 low_pfn = cc->migrate_pfn;
Vlastimil Babka06b66402016-05-19 17:11:48 -07001156 block_start_pfn = pageblock_start_pfn(low_pfn);
Joonsoo Kime1409c32016-03-15 14:57:48 -07001157 if (block_start_pfn < zone->zone_start_pfn)
1158 block_start_pfn = zone->zone_start_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001159
1160 /* Only scan within a pageblock boundary */
Vlastimil Babka06b66402016-05-19 17:11:48 -07001161 block_end_pfn = pageblock_end_pfn(low_pfn);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001162
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001163 /*
1164 * Iterate over whole pageblocks until we find the first suitable.
1165 * Do not cross the free scanner.
1166 */
Joonsoo Kime1409c32016-03-15 14:57:48 -07001167 for (; block_end_pfn <= cc->free_pfn;
1168 low_pfn = block_end_pfn,
1169 block_start_pfn = block_end_pfn,
1170 block_end_pfn += pageblock_nr_pages) {
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001171
1172 /*
1173 * This can potentially iterate a massively long zone with
1174 * many pageblocks unsuitable, so periodically check if we
1175 * need to schedule, or even abort async compaction.
1176 */
1177 if (!(low_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
1178 && compact_should_abort(cc))
1179 break;
1180
Joonsoo Kime1409c32016-03-15 14:57:48 -07001181 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
1182 zone);
Vlastimil Babka7d49d882014-10-09 15:27:11 -07001183 if (!page)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001184 continue;
1185
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001186 /* If isolation recently failed, do not retry */
1187 if (!isolation_suitable(cc, page))
1188 continue;
1189
1190 /*
1191 * For async compaction, also only scan in MOVABLE blocks.
1192 * Async compaction is optimistic to see if the minimum amount
1193 * of work satisfies the allocation.
1194 */
1195 if (cc->mode == MIGRATE_ASYNC &&
1196 !migrate_async_suitable(get_pageblock_migratetype(page)))
1197 continue;
1198
1199 /* Perform the isolation */
Joonsoo Kime1409c32016-03-15 14:57:48 -07001200 low_pfn = isolate_migratepages_block(cc, low_pfn,
1201 block_end_pfn, isolate_mode);
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001202
Hugh Dickinsff599092015-02-12 15:00:28 -08001203 if (!low_pfn || cc->contended) {
1204 acct_isolated(zone, cc);
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001205 return ISOLATE_ABORT;
Hugh Dickinsff599092015-02-12 15:00:28 -08001206 }
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001207
1208 /*
1209 * Either we isolated something and proceed with migration. Or
1210 * we failed and compact_zone should decide if we should
1211 * continue or not.
1212 */
1213 break;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001214 }
1215
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001216 acct_isolated(zone, cc);
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -07001217 /* Record where migration scanner will be restarted. */
1218 cc->migrate_pfn = low_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001219
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -07001220 return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001221}
1222
Yaowei Bai21c527a2015-11-05 18:47:20 -08001223/*
1224 * order == -1 is expected when compacting via
1225 * /proc/sys/vm/compact_memory
1226 */
1227static inline bool is_via_compact_memory(int order)
1228{
1229 return order == -1;
1230}
1231
Michal Hockoea7ab982016-05-20 16:56:38 -07001232static enum compact_result __compact_finished(struct zone *zone, struct compact_control *cc,
David Rientjes6d7ce552014-10-09 15:27:27 -07001233 const int migratetype)
Mel Gorman748446b2010-05-24 14:32:27 -07001234{
Mel Gorman8fb74b92013-01-11 14:32:16 -08001235 unsigned int order;
Andrea Arcangeli5a03b052011-01-13 15:47:11 -08001236 unsigned long watermark;
Mel Gorman56de7262010-05-24 14:32:30 -07001237
Vlastimil Babkabe976572014-06-04 16:10:41 -07001238 if (cc->contended || fatal_signal_pending(current))
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001239 return COMPACT_CONTENDED;
Mel Gorman748446b2010-05-24 14:32:27 -07001240
Mel Gorman753341a2012-10-08 16:32:40 -07001241 /* Compaction run completes if the migrate and free scanner meet */
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -07001242 if (compact_scanners_met(cc)) {
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -08001243 /* Let the next compaction start anew. */
Vlastimil Babka02333642015-09-08 15:02:42 -07001244 reset_cached_positions(zone);
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -08001245
Mel Gorman62997022012-10-08 16:32:47 -07001246 /*
1247 * Mark that the PG_migrate_skip information should be cleared
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001248 * by kswapd when it goes to sleep. kcompactd does not set the
Mel Gorman62997022012-10-08 16:32:47 -07001249 * flag itself as the decision to be clear should be directly
1250 * based on an allocation request.
1251 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001252 if (cc->direct_compaction)
Mel Gorman62997022012-10-08 16:32:47 -07001253 zone->compact_blockskip_flush = true;
1254
Michal Hockoc8f7de02016-05-20 16:56:47 -07001255 if (cc->whole_zone)
1256 return COMPACT_COMPLETE;
1257 else
1258 return COMPACT_PARTIAL_SKIPPED;
Mel Gormanbb13ffe2012-10-08 16:32:41 -07001259 }
Mel Gorman748446b2010-05-24 14:32:27 -07001260
Yaowei Bai21c527a2015-11-05 18:47:20 -08001261 if (is_via_compact_memory(cc->order))
Mel Gorman56de7262010-05-24 14:32:30 -07001262 return COMPACT_CONTINUE;
1263
Michal Hocko3957c772011-06-15 15:08:25 -07001264 /* Compaction run is not finished if the watermark is not met */
1265 watermark = low_wmark_pages(zone);
Michal Hocko3957c772011-06-15 15:08:25 -07001266
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001267 if (!zone_watermark_ok(zone, cc->order, watermark, cc->classzone_idx,
1268 cc->alloc_flags))
Michal Hocko3957c772011-06-15 15:08:25 -07001269 return COMPACT_CONTINUE;
1270
Mel Gorman56de7262010-05-24 14:32:30 -07001271 /* Direct compactor: Is a suitable page free? */
Mel Gorman8fb74b92013-01-11 14:32:16 -08001272 for (order = cc->order; order < MAX_ORDER; order++) {
1273 struct free_area *area = &zone->free_area[order];
Joonsoo Kim2149cda2015-04-14 15:45:21 -07001274 bool can_steal;
Mel Gorman56de7262010-05-24 14:32:30 -07001275
Mel Gorman8fb74b92013-01-11 14:32:16 -08001276 /* Job done if page is free of the right migratetype */
David Rientjes6d7ce552014-10-09 15:27:27 -07001277 if (!list_empty(&area->free_list[migratetype]))
Mel Gorman8fb74b92013-01-11 14:32:16 -08001278 return COMPACT_PARTIAL;
1279
Joonsoo Kim2149cda2015-04-14 15:45:21 -07001280#ifdef CONFIG_CMA
1281 /* MIGRATE_MOVABLE can fallback on MIGRATE_CMA */
1282 if (migratetype == MIGRATE_MOVABLE &&
1283 !list_empty(&area->free_list[MIGRATE_CMA]))
1284 return COMPACT_PARTIAL;
1285#endif
1286 /*
1287 * Job done if allocation would steal freepages from
1288 * other migratetype buddy lists.
1289 */
1290 if (find_suitable_fallback(area, order, migratetype,
1291 true, &can_steal) != -1)
Mel Gorman8fb74b92013-01-11 14:32:16 -08001292 return COMPACT_PARTIAL;
Mel Gorman56de7262010-05-24 14:32:30 -07001293 }
1294
Joonsoo Kim837d0262015-02-11 15:27:06 -08001295 return COMPACT_NO_SUITABLE_PAGE;
1296}
1297
Michal Hockoea7ab982016-05-20 16:56:38 -07001298static enum compact_result compact_finished(struct zone *zone,
1299 struct compact_control *cc,
1300 const int migratetype)
Joonsoo Kim837d0262015-02-11 15:27:06 -08001301{
1302 int ret;
1303
1304 ret = __compact_finished(zone, cc, migratetype);
1305 trace_mm_compaction_finished(zone, cc->order, ret);
1306 if (ret == COMPACT_NO_SUITABLE_PAGE)
1307 ret = COMPACT_CONTINUE;
1308
1309 return ret;
Mel Gorman748446b2010-05-24 14:32:27 -07001310}
1311
Mel Gorman3e7d3442011-01-13 15:45:56 -08001312/*
1313 * compaction_suitable: Is this suitable to run compaction on this zone now?
1314 * Returns
1315 * COMPACT_SKIPPED - If there are too few free pages for compaction
1316 * COMPACT_PARTIAL - If the allocation would succeed without compaction
1317 * COMPACT_CONTINUE - If compaction should run now
1318 */
Michal Hockoea7ab982016-05-20 16:56:38 -07001319static enum compact_result __compaction_suitable(struct zone *zone, int order,
Mel Gormanc6038442016-05-19 17:13:38 -07001320 unsigned int alloc_flags,
1321 int classzone_idx)
Mel Gorman3e7d3442011-01-13 15:45:56 -08001322{
1323 int fragindex;
1324 unsigned long watermark;
1325
Yaowei Bai21c527a2015-11-05 18:47:20 -08001326 if (is_via_compact_memory(order))
Michal Hocko3957c772011-06-15 15:08:25 -07001327 return COMPACT_CONTINUE;
1328
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001329 watermark = low_wmark_pages(zone);
1330 /*
1331 * If watermarks for high-order allocation are already met, there
1332 * should be no need for compaction at all.
1333 */
1334 if (zone_watermark_ok(zone, order, watermark, classzone_idx,
1335 alloc_flags))
1336 return COMPACT_PARTIAL;
1337
Michal Hocko3957c772011-06-15 15:08:25 -07001338 /*
Mel Gorman3e7d3442011-01-13 15:45:56 -08001339 * Watermarks for order-0 must be met for compaction. Note the 2UL.
1340 * This is because during migration, copies of pages need to be
1341 * allocated and for a short time, the footprint is higher
1342 */
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001343 watermark += (2UL << order);
1344 if (!zone_watermark_ok(zone, 0, watermark, classzone_idx, alloc_flags))
Mel Gorman3e7d3442011-01-13 15:45:56 -08001345 return COMPACT_SKIPPED;
1346
1347 /*
1348 * fragmentation index determines if allocation failures are due to
1349 * low memory or external fragmentation
1350 *
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001351 * index of -1000 would imply allocations might succeed depending on
1352 * watermarks, but we already failed the high-order watermark check
Mel Gorman3e7d3442011-01-13 15:45:56 -08001353 * index towards 0 implies failure is due to lack of memory
1354 * index towards 1000 implies failure is due to fragmentation
1355 *
1356 * Only compact if a failure would be due to fragmentation.
1357 */
1358 fragindex = fragmentation_index(zone, order);
1359 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
Joonsoo Kim837d0262015-02-11 15:27:06 -08001360 return COMPACT_NOT_SUITABLE_ZONE;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001361
Mel Gorman3e7d3442011-01-13 15:45:56 -08001362 return COMPACT_CONTINUE;
1363}
1364
Michal Hockoea7ab982016-05-20 16:56:38 -07001365enum compact_result compaction_suitable(struct zone *zone, int order,
Mel Gormanc6038442016-05-19 17:13:38 -07001366 unsigned int alloc_flags,
1367 int classzone_idx)
Joonsoo Kim837d0262015-02-11 15:27:06 -08001368{
Michal Hockoea7ab982016-05-20 16:56:38 -07001369 enum compact_result ret;
Joonsoo Kim837d0262015-02-11 15:27:06 -08001370
1371 ret = __compaction_suitable(zone, order, alloc_flags, classzone_idx);
1372 trace_mm_compaction_suitable(zone, order, ret);
1373 if (ret == COMPACT_NOT_SUITABLE_ZONE)
1374 ret = COMPACT_SKIPPED;
1375
1376 return ret;
1377}
1378
Michal Hockoea7ab982016-05-20 16:56:38 -07001379static enum compact_result compact_zone(struct zone *zone, struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -07001380{
Michal Hockoea7ab982016-05-20 16:56:38 -07001381 enum compact_result ret;
Mel Gormanc89511a2012-10-08 16:32:45 -07001382 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -08001383 unsigned long end_pfn = zone_end_pfn(zone);
David Rientjes6d7ce552014-10-09 15:27:27 -07001384 const int migratetype = gfpflags_to_migratetype(cc->gfp_mask);
David Rientjese0b9dae2014-06-04 16:08:28 -07001385 const bool sync = cc->mode != MIGRATE_ASYNC;
Mel Gorman748446b2010-05-24 14:32:27 -07001386
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001387 ret = compaction_suitable(zone, cc->order, cc->alloc_flags,
1388 cc->classzone_idx);
Michal Hockoc46649d2016-05-20 16:56:41 -07001389 /* Compaction is likely to fail */
1390 if (ret == COMPACT_PARTIAL || ret == COMPACT_SKIPPED)
Mel Gorman3e7d3442011-01-13 15:45:56 -08001391 return ret;
Michal Hockoc46649d2016-05-20 16:56:41 -07001392
1393 /* huh, compaction_suitable is returning something unexpected */
1394 VM_BUG_ON(ret != COMPACT_CONTINUE);
Mel Gorman3e7d3442011-01-13 15:45:56 -08001395
Mel Gormanc89511a2012-10-08 16:32:45 -07001396 /*
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001397 * Clear pageblock skip if there were failures recently and compaction
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001398 * is about to be retried after being deferred.
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001399 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001400 if (compaction_restarting(zone, cc->order))
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001401 __reset_isolation_suitable(zone);
1402
1403 /*
Mel Gormanc89511a2012-10-08 16:32:45 -07001404 * Setup to move all movable pages to the end of the zone. Used cached
1405 * information on where the scanners should start but check that it
1406 * is initialised by ensuring the values are within zone boundaries.
1407 */
David Rientjese0b9dae2014-06-04 16:08:28 -07001408 cc->migrate_pfn = zone->compact_cached_migrate_pfn[sync];
Mel Gormanc89511a2012-10-08 16:32:45 -07001409 cc->free_pfn = zone->compact_cached_free_pfn;
Joonsoo Kim623446e2016-03-15 14:57:45 -07001410 if (cc->free_pfn < start_pfn || cc->free_pfn >= end_pfn) {
Vlastimil Babka06b66402016-05-19 17:11:48 -07001411 cc->free_pfn = pageblock_start_pfn(end_pfn - 1);
Mel Gormanc89511a2012-10-08 16:32:45 -07001412 zone->compact_cached_free_pfn = cc->free_pfn;
1413 }
Joonsoo Kim623446e2016-03-15 14:57:45 -07001414 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn >= end_pfn) {
Mel Gormanc89511a2012-10-08 16:32:45 -07001415 cc->migrate_pfn = start_pfn;
David Rientjes35979ef2014-06-04 16:08:27 -07001416 zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn;
1417 zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -07001418 }
Michal Hockoc8f7de02016-05-20 16:56:47 -07001419
1420 if (cc->migrate_pfn == start_pfn)
1421 cc->whole_zone = true;
1422
Joonsoo Kim1a167182015-09-08 15:03:59 -07001423 cc->last_migrated_pfn = 0;
Mel Gorman748446b2010-05-24 14:32:27 -07001424
Joonsoo Kim16c4a092015-02-11 15:27:01 -08001425 trace_mm_compaction_begin(start_pfn, cc->migrate_pfn,
1426 cc->free_pfn, end_pfn, sync);
Mel Gorman0eb927c2014-01-21 15:51:05 -08001427
Mel Gorman748446b2010-05-24 14:32:27 -07001428 migrate_prep_local();
1429
David Rientjes6d7ce552014-10-09 15:27:27 -07001430 while ((ret = compact_finished(zone, cc, migratetype)) ==
1431 COMPACT_CONTINUE) {
Minchan Kim9d502c12011-03-22 16:30:39 -07001432 int err;
Mel Gorman748446b2010-05-24 14:32:27 -07001433
Mel Gormanf9e35b32011-06-15 15:08:52 -07001434 switch (isolate_migratepages(zone, cc)) {
1435 case ISOLATE_ABORT:
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001436 ret = COMPACT_CONTENDED;
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001437 putback_movable_pages(&cc->migratepages);
Shaohua Lie64c5232012-10-08 16:32:27 -07001438 cc->nr_migratepages = 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001439 goto out;
1440 case ISOLATE_NONE:
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001441 /*
1442 * We haven't isolated and migrated anything, but
1443 * there might still be unflushed migrations from
1444 * previous cc->order aligned block.
1445 */
1446 goto check_drain;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001447 case ISOLATE_SUCCESS:
1448 ;
1449 }
Mel Gorman748446b2010-05-24 14:32:27 -07001450
David Rientjesd53aea32014-06-04 16:08:26 -07001451 err = migrate_pages(&cc->migratepages, compaction_alloc,
David Rientjese0b9dae2014-06-04 16:08:28 -07001452 compaction_free, (unsigned long)cc, cc->mode,
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001453 MR_COMPACTION);
Mel Gorman748446b2010-05-24 14:32:27 -07001454
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001455 trace_mm_compaction_migratepages(cc->nr_migratepages, err,
1456 &cc->migratepages);
Mel Gorman748446b2010-05-24 14:32:27 -07001457
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001458 /* All pages were either migrated or will be released */
1459 cc->nr_migratepages = 0;
Minchan Kim9d502c12011-03-22 16:30:39 -07001460 if (err) {
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001461 putback_movable_pages(&cc->migratepages);
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001462 /*
1463 * migrate_pages() may return -ENOMEM when scanners meet
1464 * and we want compact_finished() to detect it
1465 */
Vlastimil Babkaf2849aa2015-09-08 15:02:36 -07001466 if (err == -ENOMEM && !compact_scanners_met(cc)) {
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001467 ret = COMPACT_CONTENDED;
David Rientjes4bf2bba2012-07-11 14:02:13 -07001468 goto out;
1469 }
Vlastimil Babkafdd048e2016-05-19 17:11:55 -07001470 /*
1471 * We failed to migrate at least one page in the current
1472 * order-aligned block, so skip the rest of it.
1473 */
1474 if (cc->direct_compaction &&
1475 (cc->mode == MIGRATE_ASYNC)) {
1476 cc->migrate_pfn = block_end_pfn(
1477 cc->migrate_pfn - 1, cc->order);
1478 /* Draining pcplists is useless in this case */
1479 cc->last_migrated_pfn = 0;
1480
1481 }
Mel Gorman748446b2010-05-24 14:32:27 -07001482 }
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001483
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001484check_drain:
1485 /*
1486 * Has the migration scanner moved away from the previous
1487 * cc->order aligned block where we migrated from? If yes,
1488 * flush the pages that were freed, so that they can merge and
1489 * compact_finished() can detect immediately if allocation
1490 * would succeed.
1491 */
Joonsoo Kim1a167182015-09-08 15:03:59 -07001492 if (cc->order > 0 && cc->last_migrated_pfn) {
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001493 int cpu;
1494 unsigned long current_block_start =
Vlastimil Babka06b66402016-05-19 17:11:48 -07001495 block_start_pfn(cc->migrate_pfn, cc->order);
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001496
Joonsoo Kim1a167182015-09-08 15:03:59 -07001497 if (cc->last_migrated_pfn < current_block_start) {
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001498 cpu = get_cpu();
1499 lru_add_drain_cpu(cpu);
1500 drain_local_pages(zone);
1501 put_cpu();
1502 /* No more flushing until we migrate again */
Joonsoo Kim1a167182015-09-08 15:03:59 -07001503 cc->last_migrated_pfn = 0;
Vlastimil Babkafdaf7f52014-12-10 15:43:34 -08001504 }
1505 }
1506
Mel Gorman748446b2010-05-24 14:32:27 -07001507 }
1508
Mel Gormanf9e35b32011-06-15 15:08:52 -07001509out:
Vlastimil Babka6bace092014-12-10 15:43:31 -08001510 /*
1511 * Release free pages and update where the free scanner should restart,
1512 * so we don't leave any returned pages behind in the next attempt.
1513 */
1514 if (cc->nr_freepages > 0) {
1515 unsigned long free_pfn = release_freepages(&cc->freepages);
1516
1517 cc->nr_freepages = 0;
1518 VM_BUG_ON(free_pfn == 0);
1519 /* The cached pfn is always the first in a pageblock */
Vlastimil Babka06b66402016-05-19 17:11:48 -07001520 free_pfn = pageblock_start_pfn(free_pfn);
Vlastimil Babka6bace092014-12-10 15:43:31 -08001521 /*
1522 * Only go back, not forward. The cached pfn might have been
1523 * already reset to zone end in compact_finished()
1524 */
1525 if (free_pfn > zone->compact_cached_free_pfn)
1526 zone->compact_cached_free_pfn = free_pfn;
1527 }
Mel Gorman748446b2010-05-24 14:32:27 -07001528
Joonsoo Kim16c4a092015-02-11 15:27:01 -08001529 trace_mm_compaction_end(start_pfn, cc->migrate_pfn,
1530 cc->free_pfn, end_pfn, sync, ret);
Mel Gorman0eb927c2014-01-21 15:51:05 -08001531
Vlastimil Babka2d1e1042015-11-05 18:48:02 -08001532 if (ret == COMPACT_CONTENDED)
1533 ret = COMPACT_PARTIAL;
1534
Mel Gorman748446b2010-05-24 14:32:27 -07001535 return ret;
1536}
Mel Gorman76ab0f52010-05-24 14:32:28 -07001537
Michal Hockoea7ab982016-05-20 16:56:38 -07001538static enum compact_result compact_zone_order(struct zone *zone, int order,
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001539 gfp_t gfp_mask, enum migrate_mode mode, int *contended,
Mel Gormanc6038442016-05-19 17:13:38 -07001540 unsigned int alloc_flags, int classzone_idx)
Mel Gorman56de7262010-05-24 14:32:30 -07001541{
Michal Hockoea7ab982016-05-20 16:56:38 -07001542 enum compact_result ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001543 struct compact_control cc = {
1544 .nr_freepages = 0,
1545 .nr_migratepages = 0,
1546 .order = order,
David Rientjes6d7ce552014-10-09 15:27:27 -07001547 .gfp_mask = gfp_mask,
Mel Gorman56de7262010-05-24 14:32:30 -07001548 .zone = zone,
David Rientjese0b9dae2014-06-04 16:08:28 -07001549 .mode = mode,
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001550 .alloc_flags = alloc_flags,
1551 .classzone_idx = classzone_idx,
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07001552 .direct_compaction = true,
Mel Gorman56de7262010-05-24 14:32:30 -07001553 };
1554 INIT_LIST_HEAD(&cc.freepages);
1555 INIT_LIST_HEAD(&cc.migratepages);
1556
Shaohua Lie64c5232012-10-08 16:32:27 -07001557 ret = compact_zone(zone, &cc);
1558
1559 VM_BUG_ON(!list_empty(&cc.freepages));
1560 VM_BUG_ON(!list_empty(&cc.migratepages));
1561
1562 *contended = cc.contended;
1563 return ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001564}
1565
Mel Gorman5e771902010-05-24 14:32:31 -07001566int sysctl_extfrag_threshold = 500;
1567
Mel Gorman56de7262010-05-24 14:32:30 -07001568/**
1569 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
Mel Gorman56de7262010-05-24 14:32:30 -07001570 * @gfp_mask: The GFP mask of the current allocation
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001571 * @order: The order of the current allocation
1572 * @alloc_flags: The allocation flags of the current allocation
1573 * @ac: The context of current allocation
David Rientjese0b9dae2014-06-04 16:08:28 -07001574 * @mode: The migration mode for async, sync light, or sync migration
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001575 * @contended: Return value that determines if compaction was aborted due to
1576 * need_resched() or lock contention
Mel Gorman56de7262010-05-24 14:32:30 -07001577 *
1578 * This is the main entry point for direct page compaction.
1579 */
Michal Hockoea7ab982016-05-20 16:56:38 -07001580enum compact_result try_to_compact_pages(gfp_t gfp_mask, unsigned int order,
Mel Gormanc6038442016-05-19 17:13:38 -07001581 unsigned int alloc_flags, const struct alloc_context *ac,
1582 enum migrate_mode mode, int *contended)
Mel Gorman56de7262010-05-24 14:32:30 -07001583{
Mel Gorman56de7262010-05-24 14:32:30 -07001584 int may_enter_fs = gfp_mask & __GFP_FS;
1585 int may_perform_io = gfp_mask & __GFP_IO;
Mel Gorman56de7262010-05-24 14:32:30 -07001586 struct zoneref *z;
1587 struct zone *zone;
Michal Hocko1d4746d2016-05-20 16:56:44 -07001588 enum compact_result rc = COMPACT_SKIPPED;
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001589 int all_zones_contended = COMPACT_CONTENDED_LOCK; /* init for &= op */
1590
1591 *contended = COMPACT_CONTENDED_NONE;
Mel Gorman56de7262010-05-24 14:32:30 -07001592
Mel Gorman4ffb6332012-10-08 16:29:09 -07001593 /* Check if the GFP flags allow compaction */
Andrea Arcangelic5a73c32011-01-13 15:47:11 -08001594 if (!order || !may_enter_fs || !may_perform_io)
Vlastimil Babka53853e22014-10-09 15:27:02 -07001595 return COMPACT_SKIPPED;
Mel Gorman56de7262010-05-24 14:32:30 -07001596
Joonsoo Kim837d0262015-02-11 15:27:06 -08001597 trace_mm_compaction_try_to_compact_pages(order, gfp_mask, mode);
1598
Mel Gorman56de7262010-05-24 14:32:30 -07001599 /* Compact each zone in the list */
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001600 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx,
1601 ac->nodemask) {
Michal Hockoea7ab982016-05-20 16:56:38 -07001602 enum compact_result status;
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001603 int zone_contended;
Mel Gorman56de7262010-05-24 14:32:30 -07001604
Michal Hocko1d4746d2016-05-20 16:56:44 -07001605 if (compaction_deferred(zone, order)) {
1606 rc = max_t(enum compact_result, COMPACT_DEFERRED, rc);
Vlastimil Babka53853e22014-10-09 15:27:02 -07001607 continue;
Michal Hocko1d4746d2016-05-20 16:56:44 -07001608 }
Vlastimil Babka53853e22014-10-09 15:27:02 -07001609
David Rientjese0b9dae2014-06-04 16:08:28 -07001610 status = compact_zone_order(zone, order, gfp_mask, mode,
Vlastimil Babka1a6d53a2015-02-11 15:25:44 -08001611 &zone_contended, alloc_flags,
Mel Gorman93ea9962016-05-19 17:14:13 -07001612 ac_classzone_idx(ac));
Mel Gorman56de7262010-05-24 14:32:30 -07001613 rc = max(status, rc);
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001614 /*
1615 * It takes at least one zone that wasn't lock contended
1616 * to clear all_zones_contended.
1617 */
1618 all_zones_contended &= zone_contended;
Mel Gorman56de7262010-05-24 14:32:30 -07001619
Mel Gorman3e7d3442011-01-13 15:45:56 -08001620 /* If a normal allocation would succeed, stop compacting */
Vlastimil Babkaebff3982014-12-10 15:43:22 -08001621 if (zone_watermark_ok(zone, order, low_wmark_pages(zone),
Mel Gorman93ea9962016-05-19 17:14:13 -07001622 ac_classzone_idx(ac), alloc_flags)) {
Vlastimil Babka53853e22014-10-09 15:27:02 -07001623 /*
1624 * We think the allocation will succeed in this zone,
1625 * but it is not certain, hence the false. The caller
1626 * will repeat this with true if allocation indeed
1627 * succeeds in this zone.
1628 */
1629 compaction_defer_reset(zone, order, false);
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001630 /*
1631 * It is possible that async compaction aborted due to
1632 * need_resched() and the watermarks were ok thanks to
1633 * somebody else freeing memory. The allocation can
1634 * however still fail so we better signal the
1635 * need_resched() contention anyway (this will not
1636 * prevent the allocation attempt).
1637 */
1638 if (zone_contended == COMPACT_CONTENDED_SCHED)
1639 *contended = COMPACT_CONTENDED_SCHED;
1640
1641 goto break_loop;
1642 }
1643
Michal Hockoc8f7de02016-05-20 16:56:47 -07001644 if (mode != MIGRATE_ASYNC && (status == COMPACT_COMPLETE ||
1645 status == COMPACT_PARTIAL_SKIPPED)) {
Vlastimil Babka53853e22014-10-09 15:27:02 -07001646 /*
1647 * We think that allocation won't succeed in this zone
1648 * so we defer compaction there. If it ends up
1649 * succeeding after all, it will be reset.
1650 */
1651 defer_compaction(zone, order);
1652 }
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001653
1654 /*
1655 * We might have stopped compacting due to need_resched() in
1656 * async compaction, or due to a fatal signal detected. In that
1657 * case do not try further zones and signal need_resched()
1658 * contention.
1659 */
1660 if ((zone_contended == COMPACT_CONTENDED_SCHED)
1661 || fatal_signal_pending(current)) {
1662 *contended = COMPACT_CONTENDED_SCHED;
1663 goto break_loop;
1664 }
1665
1666 continue;
1667break_loop:
1668 /*
1669 * We might not have tried all the zones, so be conservative
1670 * and assume they are not all lock contended.
1671 */
1672 all_zones_contended = 0;
1673 break;
Mel Gorman56de7262010-05-24 14:32:30 -07001674 }
1675
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001676 /*
1677 * If at least one zone wasn't deferred or skipped, we report if all
1678 * zones that were tried were lock contended.
1679 */
Michal Hocko1d4746d2016-05-20 16:56:44 -07001680 if (rc > COMPACT_INACTIVE && all_zones_contended)
Vlastimil Babka1f9efde2014-10-09 15:27:14 -07001681 *contended = COMPACT_CONTENDED_LOCK;
1682
Mel Gorman56de7262010-05-24 14:32:30 -07001683 return rc;
1684}
1685
1686
Mel Gorman76ab0f52010-05-24 14:32:28 -07001687/* Compact all zones within a node */
Andrew Morton7103f162013-02-22 16:32:33 -08001688static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001689{
1690 int zoneid;
Mel Gorman76ab0f52010-05-24 14:32:28 -07001691 struct zone *zone;
1692
Mel Gorman76ab0f52010-05-24 14:32:28 -07001693 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
Mel Gorman76ab0f52010-05-24 14:32:28 -07001694
1695 zone = &pgdat->node_zones[zoneid];
1696 if (!populated_zone(zone))
1697 continue;
1698
Rik van Riel7be62de2012-03-21 16:33:52 -07001699 cc->nr_freepages = 0;
1700 cc->nr_migratepages = 0;
1701 cc->zone = zone;
1702 INIT_LIST_HEAD(&cc->freepages);
1703 INIT_LIST_HEAD(&cc->migratepages);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001704
Gioh Kim195b0c62015-04-15 16:13:33 -07001705 /*
1706 * When called via /proc/sys/vm/compact_memory
1707 * this makes sure we compact the whole zone regardless of
1708 * cached scanner positions.
1709 */
Yaowei Bai21c527a2015-11-05 18:47:20 -08001710 if (is_via_compact_memory(cc->order))
Gioh Kim195b0c62015-04-15 16:13:33 -07001711 __reset_isolation_suitable(zone);
1712
Yaowei Bai21c527a2015-11-05 18:47:20 -08001713 if (is_via_compact_memory(cc->order) ||
1714 !compaction_deferred(zone, cc->order))
Rik van Riel7be62de2012-03-21 16:33:52 -07001715 compact_zone(zone, cc);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001716
Rik van Riel7be62de2012-03-21 16:33:52 -07001717 VM_BUG_ON(!list_empty(&cc->freepages));
1718 VM_BUG_ON(!list_empty(&cc->migratepages));
Joonsoo Kim75469342016-01-14 15:20:48 -08001719
1720 if (is_via_compact_memory(cc->order))
1721 continue;
1722
1723 if (zone_watermark_ok(zone, cc->order,
1724 low_wmark_pages(zone), 0, 0))
1725 compaction_defer_reset(zone, cc->order, false);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001726 }
Mel Gorman76ab0f52010-05-24 14:32:28 -07001727}
1728
Andrew Morton7103f162013-02-22 16:32:33 -08001729void compact_pgdat(pg_data_t *pgdat, int order)
Rik van Riel7be62de2012-03-21 16:33:52 -07001730{
1731 struct compact_control cc = {
1732 .order = order,
David Rientjese0b9dae2014-06-04 16:08:28 -07001733 .mode = MIGRATE_ASYNC,
Rik van Riel7be62de2012-03-21 16:33:52 -07001734 };
1735
Mel Gorman3a7200a2013-09-11 14:22:19 -07001736 if (!order)
1737 return;
1738
Andrew Morton7103f162013-02-22 16:32:33 -08001739 __compact_pgdat(pgdat, &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001740}
1741
Andrew Morton7103f162013-02-22 16:32:33 -08001742static void compact_node(int nid)
Rik van Riel7be62de2012-03-21 16:33:52 -07001743{
Rik van Riel7be62de2012-03-21 16:33:52 -07001744 struct compact_control cc = {
1745 .order = -1,
David Rientjese0b9dae2014-06-04 16:08:28 -07001746 .mode = MIGRATE_SYNC,
David Rientjes91ca9182014-04-03 14:47:23 -07001747 .ignore_skip_hint = true,
Rik van Riel7be62de2012-03-21 16:33:52 -07001748 };
1749
Andrew Morton7103f162013-02-22 16:32:33 -08001750 __compact_pgdat(NODE_DATA(nid), &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001751}
1752
Mel Gorman76ab0f52010-05-24 14:32:28 -07001753/* Compact all nodes in the system */
Jason Liu7964c062013-01-11 14:31:47 -08001754static void compact_nodes(void)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001755{
1756 int nid;
1757
Hugh Dickins8575ec22012-03-21 16:33:53 -07001758 /* Flush pending updates to the LRU lists */
1759 lru_add_drain_all();
1760
Mel Gorman76ab0f52010-05-24 14:32:28 -07001761 for_each_online_node(nid)
1762 compact_node(nid);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001763}
1764
1765/* The written value is actually unused, all memory is compacted */
1766int sysctl_compact_memory;
1767
Yaowei Baifec4eb22016-01-14 15:20:09 -08001768/*
1769 * This is the entry point for compacting all nodes via
1770 * /proc/sys/vm/compact_memory
1771 */
Mel Gorman76ab0f52010-05-24 14:32:28 -07001772int sysctl_compaction_handler(struct ctl_table *table, int write,
1773 void __user *buffer, size_t *length, loff_t *ppos)
1774{
1775 if (write)
Jason Liu7964c062013-01-11 14:31:47 -08001776 compact_nodes();
Mel Gorman76ab0f52010-05-24 14:32:28 -07001777
1778 return 0;
1779}
Mel Gormaned4a6d72010-05-24 14:32:29 -07001780
Mel Gorman5e771902010-05-24 14:32:31 -07001781int sysctl_extfrag_handler(struct ctl_table *table, int write,
1782 void __user *buffer, size_t *length, loff_t *ppos)
1783{
1784 proc_dointvec_minmax(table, write, buffer, length, ppos);
1785
1786 return 0;
1787}
1788
Mel Gormaned4a6d72010-05-24 14:32:29 -07001789#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
Rashika Kheria74e77fb2014-04-03 14:48:01 -07001790static ssize_t sysfs_compact_node(struct device *dev,
Kay Sievers10fbcf42011-12-21 14:48:43 -08001791 struct device_attribute *attr,
Mel Gormaned4a6d72010-05-24 14:32:29 -07001792 const char *buf, size_t count)
1793{
Hugh Dickins8575ec22012-03-21 16:33:53 -07001794 int nid = dev->id;
1795
1796 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
1797 /* Flush pending updates to the LRU lists */
1798 lru_add_drain_all();
1799
1800 compact_node(nid);
1801 }
Mel Gormaned4a6d72010-05-24 14:32:29 -07001802
1803 return count;
1804}
Kay Sievers10fbcf42011-12-21 14:48:43 -08001805static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001806
1807int compaction_register_node(struct node *node)
1808{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001809 return device_create_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001810}
1811
1812void compaction_unregister_node(struct node *node)
1813{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001814 return device_remove_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001815}
1816#endif /* CONFIG_SYSFS && CONFIG_NUMA */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001817
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001818static inline bool kcompactd_work_requested(pg_data_t *pgdat)
1819{
Vlastimil Babka172400c2016-05-05 16:22:32 -07001820 return pgdat->kcompactd_max_order > 0 || kthread_should_stop();
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001821}
1822
1823static bool kcompactd_node_suitable(pg_data_t *pgdat)
1824{
1825 int zoneid;
1826 struct zone *zone;
1827 enum zone_type classzone_idx = pgdat->kcompactd_classzone_idx;
1828
1829 for (zoneid = 0; zoneid < classzone_idx; zoneid++) {
1830 zone = &pgdat->node_zones[zoneid];
1831
1832 if (!populated_zone(zone))
1833 continue;
1834
1835 if (compaction_suitable(zone, pgdat->kcompactd_max_order, 0,
1836 classzone_idx) == COMPACT_CONTINUE)
1837 return true;
1838 }
1839
1840 return false;
1841}
1842
1843static void kcompactd_do_work(pg_data_t *pgdat)
1844{
1845 /*
1846 * With no special task, compact all zones so that a page of requested
1847 * order is allocatable.
1848 */
1849 int zoneid;
1850 struct zone *zone;
1851 struct compact_control cc = {
1852 .order = pgdat->kcompactd_max_order,
1853 .classzone_idx = pgdat->kcompactd_classzone_idx,
1854 .mode = MIGRATE_SYNC_LIGHT,
1855 .ignore_skip_hint = true,
1856
1857 };
1858 bool success = false;
1859
1860 trace_mm_compaction_kcompactd_wake(pgdat->node_id, cc.order,
1861 cc.classzone_idx);
1862 count_vm_event(KCOMPACTD_WAKE);
1863
1864 for (zoneid = 0; zoneid < cc.classzone_idx; zoneid++) {
1865 int status;
1866
1867 zone = &pgdat->node_zones[zoneid];
1868 if (!populated_zone(zone))
1869 continue;
1870
1871 if (compaction_deferred(zone, cc.order))
1872 continue;
1873
1874 if (compaction_suitable(zone, cc.order, 0, zoneid) !=
1875 COMPACT_CONTINUE)
1876 continue;
1877
1878 cc.nr_freepages = 0;
1879 cc.nr_migratepages = 0;
1880 cc.zone = zone;
1881 INIT_LIST_HEAD(&cc.freepages);
1882 INIT_LIST_HEAD(&cc.migratepages);
1883
Vlastimil Babka172400c2016-05-05 16:22:32 -07001884 if (kthread_should_stop())
1885 return;
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001886 status = compact_zone(zone, &cc);
1887
1888 if (zone_watermark_ok(zone, cc.order, low_wmark_pages(zone),
1889 cc.classzone_idx, 0)) {
1890 success = true;
1891 compaction_defer_reset(zone, cc.order, false);
Michal Hockoc8f7de02016-05-20 16:56:47 -07001892 } else if (status == COMPACT_PARTIAL_SKIPPED || status == COMPACT_COMPLETE) {
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001893 /*
1894 * We use sync migration mode here, so we defer like
1895 * sync direct compaction does.
1896 */
1897 defer_compaction(zone, cc.order);
1898 }
1899
1900 VM_BUG_ON(!list_empty(&cc.freepages));
1901 VM_BUG_ON(!list_empty(&cc.migratepages));
1902 }
1903
1904 /*
1905 * Regardless of success, we are done until woken up next. But remember
1906 * the requested order/classzone_idx in case it was higher/tighter than
1907 * our current ones
1908 */
1909 if (pgdat->kcompactd_max_order <= cc.order)
1910 pgdat->kcompactd_max_order = 0;
1911 if (pgdat->kcompactd_classzone_idx >= cc.classzone_idx)
1912 pgdat->kcompactd_classzone_idx = pgdat->nr_zones - 1;
1913}
1914
1915void wakeup_kcompactd(pg_data_t *pgdat, int order, int classzone_idx)
1916{
1917 if (!order)
1918 return;
1919
1920 if (pgdat->kcompactd_max_order < order)
1921 pgdat->kcompactd_max_order = order;
1922
1923 if (pgdat->kcompactd_classzone_idx > classzone_idx)
1924 pgdat->kcompactd_classzone_idx = classzone_idx;
1925
1926 if (!waitqueue_active(&pgdat->kcompactd_wait))
1927 return;
1928
1929 if (!kcompactd_node_suitable(pgdat))
1930 return;
1931
1932 trace_mm_compaction_wakeup_kcompactd(pgdat->node_id, order,
1933 classzone_idx);
1934 wake_up_interruptible(&pgdat->kcompactd_wait);
1935}
1936
1937/*
1938 * The background compaction daemon, started as a kernel thread
1939 * from the init process.
1940 */
1941static int kcompactd(void *p)
1942{
1943 pg_data_t *pgdat = (pg_data_t*)p;
1944 struct task_struct *tsk = current;
1945
1946 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
1947
1948 if (!cpumask_empty(cpumask))
1949 set_cpus_allowed_ptr(tsk, cpumask);
1950
1951 set_freezable();
1952
1953 pgdat->kcompactd_max_order = 0;
1954 pgdat->kcompactd_classzone_idx = pgdat->nr_zones - 1;
1955
1956 while (!kthread_should_stop()) {
1957 trace_mm_compaction_kcompactd_sleep(pgdat->node_id);
1958 wait_event_freezable(pgdat->kcompactd_wait,
1959 kcompactd_work_requested(pgdat));
1960
1961 kcompactd_do_work(pgdat);
1962 }
1963
1964 return 0;
1965}
1966
1967/*
1968 * This kcompactd start function will be called by init and node-hot-add.
1969 * On node-hot-add, kcompactd will moved to proper cpus if cpus are hot-added.
1970 */
1971int kcompactd_run(int nid)
1972{
1973 pg_data_t *pgdat = NODE_DATA(nid);
1974 int ret = 0;
1975
1976 if (pgdat->kcompactd)
1977 return 0;
1978
1979 pgdat->kcompactd = kthread_run(kcompactd, pgdat, "kcompactd%d", nid);
1980 if (IS_ERR(pgdat->kcompactd)) {
1981 pr_err("Failed to start kcompactd on node %d\n", nid);
1982 ret = PTR_ERR(pgdat->kcompactd);
1983 pgdat->kcompactd = NULL;
1984 }
1985 return ret;
1986}
1987
1988/*
1989 * Called by memory hotplug when all memory in a node is offlined. Caller must
1990 * hold mem_hotplug_begin/end().
1991 */
1992void kcompactd_stop(int nid)
1993{
1994 struct task_struct *kcompactd = NODE_DATA(nid)->kcompactd;
1995
1996 if (kcompactd) {
1997 kthread_stop(kcompactd);
1998 NODE_DATA(nid)->kcompactd = NULL;
1999 }
2000}
2001
2002/*
2003 * It's optimal to keep kcompactd on the same CPUs as their memory, but
2004 * not required for correctness. So if the last cpu in a node goes
2005 * away, we get changed to run anywhere: as the first one comes back,
2006 * restore their cpu bindings.
2007 */
2008static int cpu_callback(struct notifier_block *nfb, unsigned long action,
2009 void *hcpu)
2010{
2011 int nid;
2012
2013 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
2014 for_each_node_state(nid, N_MEMORY) {
2015 pg_data_t *pgdat = NODE_DATA(nid);
2016 const struct cpumask *mask;
2017
2018 mask = cpumask_of_node(pgdat->node_id);
2019
2020 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
2021 /* One of our CPUs online: restore mask */
2022 set_cpus_allowed_ptr(pgdat->kcompactd, mask);
2023 }
2024 }
2025 return NOTIFY_OK;
2026}
2027
2028static int __init kcompactd_init(void)
2029{
2030 int nid;
2031
2032 for_each_node_state(nid, N_MEMORY)
2033 kcompactd_run(nid);
2034 hotcpu_notifier(cpu_callback, 0);
2035 return 0;
2036}
2037subsys_initcall(kcompactd_init)
2038
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01002039#endif /* CONFIG_COMPACTION */