mm: hwpoison: drop lru_add_drain_all() in __soft_offline_page()
[linux-2.6-block.git] / mm / compaction.c
CommitLineData
748446bb
MG
1/*
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 */
10#include <linux/swap.h>
11#include <linux/migrate.h>
12#include <linux/compaction.h>
13#include <linux/mm_inline.h>
14#include <linux/backing-dev.h>
76ab0f53 15#include <linux/sysctl.h>
ed4a6d7f 16#include <linux/sysfs.h>
bf6bddf1 17#include <linux/balloon_compaction.h>
194159fb 18#include <linux/page-isolation.h>
748446bb
MG
19#include "internal.h"
20
010fc29a
MK
21#ifdef CONFIG_COMPACTION
22static inline void count_compact_event(enum vm_event_item item)
23{
24 count_vm_event(item);
25}
26
27static inline void count_compact_events(enum vm_event_item item, long delta)
28{
29 count_vm_events(item, delta);
30}
31#else
32#define count_compact_event(item) do { } while (0)
33#define count_compact_events(item, delta) do { } while (0)
34#endif
35
ff9543fd 36#if defined CONFIG_COMPACTION || defined CONFIG_CMA
16c4a097
JK
37#ifdef CONFIG_TRACEPOINTS
38static const char *const compaction_status_string[] = {
39 "deferred",
40 "skipped",
41 "continue",
42 "partial",
43 "complete",
837d026d
JK
44 "no_suitable_page",
45 "not_suitable_zone",
16c4a097
JK
46};
47#endif
ff9543fd 48
b7aba698
MG
49#define CREATE_TRACE_POINTS
50#include <trace/events/compaction.h>
51
748446bb
MG
52static unsigned long release_freepages(struct list_head *freelist)
53{
54 struct page *page, *next;
6bace090 55 unsigned long high_pfn = 0;
748446bb
MG
56
57 list_for_each_entry_safe(page, next, freelist, lru) {
6bace090 58 unsigned long pfn = page_to_pfn(page);
748446bb
MG
59 list_del(&page->lru);
60 __free_page(page);
6bace090
VB
61 if (pfn > high_pfn)
62 high_pfn = pfn;
748446bb
MG
63 }
64
6bace090 65 return high_pfn;
748446bb
MG
66}
67
ff9543fd
MN
68static void map_pages(struct list_head *list)
69{
70 struct page *page;
71
72 list_for_each_entry(page, list, lru) {
73 arch_alloc_page(page, 0);
74 kernel_map_pages(page, 1, 1);
75 }
76}
77
47118af0
MN
78static inline bool migrate_async_suitable(int migratetype)
79{
80 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
81}
82
7d49d886
VB
83/*
84 * Check that the whole (or subset of) a pageblock given by the interval of
85 * [start_pfn, end_pfn) is valid and within the same zone, before scanning it
86 * with the migration of free compaction scanner. The scanners then need to
87 * use only pfn_valid_within() check for arches that allow holes within
88 * pageblocks.
89 *
90 * Return struct page pointer of start_pfn, or NULL if checks were not passed.
91 *
92 * It's possible on some configurations to have a setup like node0 node1 node0
93 * i.e. it's possible that all pages within a zones range of pages do not
94 * belong to a single zone. We assume that a border between node0 and node1
95 * can occur within a single pageblock, but not a node0 node1 node0
96 * interleaving within a single pageblock. It is therefore sufficient to check
97 * the first and last page of a pageblock and avoid checking each individual
98 * page in a pageblock.
99 */
100static struct page *pageblock_pfn_to_page(unsigned long start_pfn,
101 unsigned long end_pfn, struct zone *zone)
102{
103 struct page *start_page;
104 struct page *end_page;
105
106 /* end_pfn is one past the range we are checking */
107 end_pfn--;
108
109 if (!pfn_valid(start_pfn) || !pfn_valid(end_pfn))
110 return NULL;
111
112 start_page = pfn_to_page(start_pfn);
113
114 if (page_zone(start_page) != zone)
115 return NULL;
116
117 end_page = pfn_to_page(end_pfn);
118
119 /* This gives a shorter code than deriving page_zone(end_page) */
120 if (page_zone_id(start_page) != page_zone_id(end_page))
121 return NULL;
122
123 return start_page;
124}
125
bb13ffeb 126#ifdef CONFIG_COMPACTION
24e2716f
JK
127
128/* Do not skip compaction more than 64 times */
129#define COMPACT_MAX_DEFER_SHIFT 6
130
131/*
132 * Compaction is deferred when compaction fails to result in a page
133 * allocation success. 1 << compact_defer_limit compactions are skipped up
134 * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT
135 */
136void defer_compaction(struct zone *zone, int order)
137{
138 zone->compact_considered = 0;
139 zone->compact_defer_shift++;
140
141 if (order < zone->compact_order_failed)
142 zone->compact_order_failed = order;
143
144 if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT)
145 zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT;
146
147 trace_mm_compaction_defer_compaction(zone, order);
148}
149
150/* Returns true if compaction should be skipped this time */
151bool compaction_deferred(struct zone *zone, int order)
152{
153 unsigned long defer_limit = 1UL << zone->compact_defer_shift;
154
155 if (order < zone->compact_order_failed)
156 return false;
157
158 /* Avoid possible overflow */
159 if (++zone->compact_considered > defer_limit)
160 zone->compact_considered = defer_limit;
161
162 if (zone->compact_considered >= defer_limit)
163 return false;
164
165 trace_mm_compaction_deferred(zone, order);
166
167 return true;
168}
169
170/*
171 * Update defer tracking counters after successful compaction of given order,
172 * which means an allocation either succeeded (alloc_success == true) or is
173 * expected to succeed.
174 */
175void compaction_defer_reset(struct zone *zone, int order,
176 bool alloc_success)
177{
178 if (alloc_success) {
179 zone->compact_considered = 0;
180 zone->compact_defer_shift = 0;
181 }
182 if (order >= zone->compact_order_failed)
183 zone->compact_order_failed = order + 1;
184
185 trace_mm_compaction_defer_reset(zone, order);
186}
187
188/* Returns true if restarting compaction after many failures */
189bool compaction_restarting(struct zone *zone, int order)
190{
191 if (order < zone->compact_order_failed)
192 return false;
193
194 return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT &&
195 zone->compact_considered >= 1UL << zone->compact_defer_shift;
196}
197
bb13ffeb
MG
198/* Returns true if the pageblock should be scanned for pages to isolate. */
199static inline bool isolation_suitable(struct compact_control *cc,
200 struct page *page)
201{
202 if (cc->ignore_skip_hint)
203 return true;
204
205 return !get_pageblock_skip(page);
206}
207
208/*
209 * This function is called to clear all cached information on pageblocks that
210 * should be skipped for page isolation when the migrate and free page scanner
211 * meet.
212 */
62997027 213static void __reset_isolation_suitable(struct zone *zone)
bb13ffeb
MG
214{
215 unsigned long start_pfn = zone->zone_start_pfn;
108bcc96 216 unsigned long end_pfn = zone_end_pfn(zone);
bb13ffeb
MG
217 unsigned long pfn;
218
35979ef3
DR
219 zone->compact_cached_migrate_pfn[0] = start_pfn;
220 zone->compact_cached_migrate_pfn[1] = start_pfn;
c89511ab 221 zone->compact_cached_free_pfn = end_pfn;
62997027 222 zone->compact_blockskip_flush = false;
bb13ffeb
MG
223
224 /* Walk the zone and mark every pageblock as suitable for isolation */
225 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
226 struct page *page;
227
228 cond_resched();
229
230 if (!pfn_valid(pfn))
231 continue;
232
233 page = pfn_to_page(pfn);
234 if (zone != page_zone(page))
235 continue;
236
237 clear_pageblock_skip(page);
238 }
239}
240
62997027
MG
241void reset_isolation_suitable(pg_data_t *pgdat)
242{
243 int zoneid;
244
245 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
246 struct zone *zone = &pgdat->node_zones[zoneid];
247 if (!populated_zone(zone))
248 continue;
249
250 /* Only flush if a full compaction finished recently */
251 if (zone->compact_blockskip_flush)
252 __reset_isolation_suitable(zone);
253 }
254}
255
bb13ffeb
MG
256/*
257 * If no pages were isolated then mark this pageblock to be skipped in the
62997027 258 * future. The information is later cleared by __reset_isolation_suitable().
bb13ffeb 259 */
c89511ab
MG
260static void update_pageblock_skip(struct compact_control *cc,
261 struct page *page, unsigned long nr_isolated,
edc2ca61 262 bool migrate_scanner)
bb13ffeb 263{
c89511ab 264 struct zone *zone = cc->zone;
35979ef3 265 unsigned long pfn;
6815bf3f
JK
266
267 if (cc->ignore_skip_hint)
268 return;
269
bb13ffeb
MG
270 if (!page)
271 return;
272
35979ef3
DR
273 if (nr_isolated)
274 return;
275
edc2ca61 276 set_pageblock_skip(page);
c89511ab 277
35979ef3
DR
278 pfn = page_to_pfn(page);
279
280 /* Update where async and sync compaction should restart */
281 if (migrate_scanner) {
35979ef3
DR
282 if (pfn > zone->compact_cached_migrate_pfn[0])
283 zone->compact_cached_migrate_pfn[0] = pfn;
e0b9daeb
DR
284 if (cc->mode != MIGRATE_ASYNC &&
285 pfn > zone->compact_cached_migrate_pfn[1])
35979ef3
DR
286 zone->compact_cached_migrate_pfn[1] = pfn;
287 } else {
35979ef3
DR
288 if (pfn < zone->compact_cached_free_pfn)
289 zone->compact_cached_free_pfn = pfn;
c89511ab 290 }
bb13ffeb
MG
291}
292#else
293static inline bool isolation_suitable(struct compact_control *cc,
294 struct page *page)
295{
296 return true;
297}
298
c89511ab
MG
299static void update_pageblock_skip(struct compact_control *cc,
300 struct page *page, unsigned long nr_isolated,
edc2ca61 301 bool migrate_scanner)
bb13ffeb
MG
302{
303}
304#endif /* CONFIG_COMPACTION */
305
8b44d279
VB
306/*
307 * Compaction requires the taking of some coarse locks that are potentially
308 * very heavily contended. For async compaction, back out if the lock cannot
309 * be taken immediately. For sync compaction, spin on the lock if needed.
310 *
311 * Returns true if the lock is held
312 * Returns false if the lock is not held and compaction should abort
313 */
314static bool compact_trylock_irqsave(spinlock_t *lock, unsigned long *flags,
315 struct compact_control *cc)
2a1402aa 316{
8b44d279
VB
317 if (cc->mode == MIGRATE_ASYNC) {
318 if (!spin_trylock_irqsave(lock, *flags)) {
319 cc->contended = COMPACT_CONTENDED_LOCK;
320 return false;
321 }
322 } else {
323 spin_lock_irqsave(lock, *flags);
324 }
1f9efdef 325
8b44d279 326 return true;
2a1402aa
MG
327}
328
c67fe375
MG
329/*
330 * Compaction requires the taking of some coarse locks that are potentially
8b44d279
VB
331 * very heavily contended. The lock should be periodically unlocked to avoid
332 * having disabled IRQs for a long time, even when there is nobody waiting on
333 * the lock. It might also be that allowing the IRQs will result in
334 * need_resched() becoming true. If scheduling is needed, async compaction
335 * aborts. Sync compaction schedules.
336 * Either compaction type will also abort if a fatal signal is pending.
337 * In either case if the lock was locked, it is dropped and not regained.
c67fe375 338 *
8b44d279
VB
339 * Returns true if compaction should abort due to fatal signal pending, or
340 * async compaction due to need_resched()
341 * Returns false when compaction can continue (sync compaction might have
342 * scheduled)
c67fe375 343 */
8b44d279
VB
344static bool compact_unlock_should_abort(spinlock_t *lock,
345 unsigned long flags, bool *locked, struct compact_control *cc)
c67fe375 346{
8b44d279
VB
347 if (*locked) {
348 spin_unlock_irqrestore(lock, flags);
349 *locked = false;
350 }
1f9efdef 351
8b44d279
VB
352 if (fatal_signal_pending(current)) {
353 cc->contended = COMPACT_CONTENDED_SCHED;
354 return true;
355 }
c67fe375 356
8b44d279 357 if (need_resched()) {
e0b9daeb 358 if (cc->mode == MIGRATE_ASYNC) {
8b44d279
VB
359 cc->contended = COMPACT_CONTENDED_SCHED;
360 return true;
c67fe375 361 }
c67fe375 362 cond_resched();
c67fe375
MG
363 }
364
8b44d279 365 return false;
c67fe375
MG
366}
367
be976572
VB
368/*
369 * Aside from avoiding lock contention, compaction also periodically checks
370 * need_resched() and either schedules in sync compaction or aborts async
8b44d279 371 * compaction. This is similar to what compact_unlock_should_abort() does, but
be976572
VB
372 * is used where no lock is concerned.
373 *
374 * Returns false when no scheduling was needed, or sync compaction scheduled.
375 * Returns true when async compaction should abort.
376 */
377static inline bool compact_should_abort(struct compact_control *cc)
378{
379 /* async compaction aborts if contended */
380 if (need_resched()) {
381 if (cc->mode == MIGRATE_ASYNC) {
1f9efdef 382 cc->contended = COMPACT_CONTENDED_SCHED;
be976572
VB
383 return true;
384 }
385
386 cond_resched();
387 }
388
389 return false;
390}
391
f40d1e42
MG
392/* Returns true if the page is within a block suitable for migration to */
393static bool suitable_migration_target(struct page *page)
394{
7d348b9e 395 /* If the page is a large free page, then disallow migration */
99c0fd5e
VB
396 if (PageBuddy(page)) {
397 /*
398 * We are checking page_order without zone->lock taken. But
399 * the only small danger is that we skip a potentially suitable
400 * pageblock, so it's not worth to check order for valid range.
401 */
402 if (page_order_unsafe(page) >= pageblock_order)
403 return false;
404 }
f40d1e42
MG
405
406 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
7d348b9e 407 if (migrate_async_suitable(get_pageblock_migratetype(page)))
f40d1e42
MG
408 return true;
409
410 /* Otherwise skip the block */
411 return false;
412}
413
85aa125f 414/*
9e4be470
JM
415 * Isolate free pages onto a private freelist. If @strict is true, will abort
416 * returning 0 on any invalid PFNs or non-free pages inside of the pageblock
417 * (even though it may still end up isolating some pages).
85aa125f 418 */
f40d1e42 419static unsigned long isolate_freepages_block(struct compact_control *cc,
e14c720e 420 unsigned long *start_pfn,
85aa125f
MN
421 unsigned long end_pfn,
422 struct list_head *freelist,
423 bool strict)
748446bb 424{
b7aba698 425 int nr_scanned = 0, total_isolated = 0;
bb13ffeb 426 struct page *cursor, *valid_page = NULL;
b8b2d825 427 unsigned long flags = 0;
f40d1e42 428 bool locked = false;
e14c720e 429 unsigned long blockpfn = *start_pfn;
748446bb 430
748446bb
MG
431 cursor = pfn_to_page(blockpfn);
432
f40d1e42 433 /* Isolate free pages. */
748446bb
MG
434 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
435 int isolated, i;
436 struct page *page = cursor;
437
8b44d279
VB
438 /*
439 * Periodically drop the lock (if held) regardless of its
440 * contention, to give chance to IRQs. Abort if fatal signal
441 * pending or async compaction detects need_resched()
442 */
443 if (!(blockpfn % SWAP_CLUSTER_MAX)
444 && compact_unlock_should_abort(&cc->zone->lock, flags,
445 &locked, cc))
446 break;
447
b7aba698 448 nr_scanned++;
f40d1e42 449 if (!pfn_valid_within(blockpfn))
2af120bc
LA
450 goto isolate_fail;
451
bb13ffeb
MG
452 if (!valid_page)
453 valid_page = page;
f40d1e42 454 if (!PageBuddy(page))
2af120bc 455 goto isolate_fail;
f40d1e42
MG
456
457 /*
69b7189f
VB
458 * If we already hold the lock, we can skip some rechecking.
459 * Note that if we hold the lock now, checked_pageblock was
460 * already set in some previous iteration (or strict is true),
461 * so it is correct to skip the suitable migration target
462 * recheck as well.
f40d1e42 463 */
69b7189f
VB
464 if (!locked) {
465 /*
466 * The zone lock must be held to isolate freepages.
467 * Unfortunately this is a very coarse lock and can be
468 * heavily contended if there are parallel allocations
469 * or parallel compactions. For async compaction do not
470 * spin on the lock and we acquire the lock as late as
471 * possible.
472 */
8b44d279
VB
473 locked = compact_trylock_irqsave(&cc->zone->lock,
474 &flags, cc);
69b7189f
VB
475 if (!locked)
476 break;
f40d1e42 477
69b7189f
VB
478 /* Recheck this is a buddy page under lock */
479 if (!PageBuddy(page))
480 goto isolate_fail;
481 }
748446bb
MG
482
483 /* Found a free page, break it into order-0 pages */
484 isolated = split_free_page(page);
485 total_isolated += isolated;
486 for (i = 0; i < isolated; i++) {
487 list_add(&page->lru, freelist);
488 page++;
489 }
490
491 /* If a page was split, advance to the end of it */
492 if (isolated) {
932ff6bb
JK
493 cc->nr_freepages += isolated;
494 if (!strict &&
495 cc->nr_migratepages <= cc->nr_freepages) {
496 blockpfn += isolated;
497 break;
498 }
499
748446bb
MG
500 blockpfn += isolated - 1;
501 cursor += isolated - 1;
2af120bc 502 continue;
748446bb 503 }
2af120bc
LA
504
505isolate_fail:
506 if (strict)
507 break;
508 else
509 continue;
510
748446bb
MG
511 }
512
e34d85f0
JK
513 trace_mm_compaction_isolate_freepages(*start_pfn, blockpfn,
514 nr_scanned, total_isolated);
515
e14c720e
VB
516 /* Record how far we have got within the block */
517 *start_pfn = blockpfn;
518
f40d1e42
MG
519 /*
520 * If strict isolation is requested by CMA then check that all the
521 * pages requested were isolated. If there were any failures, 0 is
522 * returned and CMA will fail.
523 */
2af120bc 524 if (strict && blockpfn < end_pfn)
f40d1e42
MG
525 total_isolated = 0;
526
527 if (locked)
528 spin_unlock_irqrestore(&cc->zone->lock, flags);
529
bb13ffeb
MG
530 /* Update the pageblock-skip if the whole pageblock was scanned */
531 if (blockpfn == end_pfn)
edc2ca61 532 update_pageblock_skip(cc, valid_page, total_isolated, false);
bb13ffeb 533
010fc29a 534 count_compact_events(COMPACTFREE_SCANNED, nr_scanned);
397487db 535 if (total_isolated)
010fc29a 536 count_compact_events(COMPACTISOLATED, total_isolated);
748446bb
MG
537 return total_isolated;
538}
539
85aa125f
MN
540/**
541 * isolate_freepages_range() - isolate free pages.
542 * @start_pfn: The first PFN to start isolating.
543 * @end_pfn: The one-past-last PFN.
544 *
545 * Non-free pages, invalid PFNs, or zone boundaries within the
546 * [start_pfn, end_pfn) range are considered errors, cause function to
547 * undo its actions and return zero.
548 *
549 * Otherwise, function returns one-past-the-last PFN of isolated page
550 * (which may be greater then end_pfn if end fell in a middle of
551 * a free page).
552 */
ff9543fd 553unsigned long
bb13ffeb
MG
554isolate_freepages_range(struct compact_control *cc,
555 unsigned long start_pfn, unsigned long end_pfn)
85aa125f 556{
f40d1e42 557 unsigned long isolated, pfn, block_end_pfn;
85aa125f
MN
558 LIST_HEAD(freelist);
559
7d49d886
VB
560 pfn = start_pfn;
561 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
562
563 for (; pfn < end_pfn; pfn += isolated,
564 block_end_pfn += pageblock_nr_pages) {
e14c720e
VB
565 /* Protect pfn from changing by isolate_freepages_block */
566 unsigned long isolate_start_pfn = pfn;
85aa125f 567
85aa125f
MN
568 block_end_pfn = min(block_end_pfn, end_pfn);
569
58420016
JK
570 /*
571 * pfn could pass the block_end_pfn if isolated freepage
572 * is more than pageblock order. In this case, we adjust
573 * scanning range to right one.
574 */
575 if (pfn >= block_end_pfn) {
576 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
577 block_end_pfn = min(block_end_pfn, end_pfn);
578 }
579
7d49d886
VB
580 if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone))
581 break;
582
e14c720e
VB
583 isolated = isolate_freepages_block(cc, &isolate_start_pfn,
584 block_end_pfn, &freelist, true);
85aa125f
MN
585
586 /*
587 * In strict mode, isolate_freepages_block() returns 0 if
588 * there are any holes in the block (ie. invalid PFNs or
589 * non-free pages).
590 */
591 if (!isolated)
592 break;
593
594 /*
595 * If we managed to isolate pages, it is always (1 << n) *
596 * pageblock_nr_pages for some non-negative n. (Max order
597 * page may span two pageblocks).
598 */
599 }
600
601 /* split_free_page does not map the pages */
602 map_pages(&freelist);
603
604 if (pfn < end_pfn) {
605 /* Loop terminated early, cleanup. */
606 release_freepages(&freelist);
607 return 0;
608 }
609
610 /* We don't use freelists for anything. */
611 return pfn;
612}
613
748446bb 614/* Update the number of anon and file isolated pages in the zone */
edc2ca61 615static void acct_isolated(struct zone *zone, struct compact_control *cc)
748446bb
MG
616{
617 struct page *page;
b9e84ac1 618 unsigned int count[2] = { 0, };
748446bb 619
edc2ca61
VB
620 if (list_empty(&cc->migratepages))
621 return;
622
b9e84ac1
MK
623 list_for_each_entry(page, &cc->migratepages, lru)
624 count[!!page_is_file_cache(page)]++;
748446bb 625
edc2ca61
VB
626 mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
627 mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
748446bb
MG
628}
629
630/* Similar to reclaim, but different enough that they don't share logic */
631static bool too_many_isolated(struct zone *zone)
632{
bc693045 633 unsigned long active, inactive, isolated;
748446bb
MG
634
635 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
636 zone_page_state(zone, NR_INACTIVE_ANON);
bc693045
MK
637 active = zone_page_state(zone, NR_ACTIVE_FILE) +
638 zone_page_state(zone, NR_ACTIVE_ANON);
748446bb
MG
639 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
640 zone_page_state(zone, NR_ISOLATED_ANON);
641
bc693045 642 return isolated > (inactive + active) / 2;
748446bb
MG
643}
644
2fe86e00 645/**
edc2ca61
VB
646 * isolate_migratepages_block() - isolate all migrate-able pages within
647 * a single pageblock
2fe86e00 648 * @cc: Compaction control structure.
edc2ca61
VB
649 * @low_pfn: The first PFN to isolate
650 * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock
651 * @isolate_mode: Isolation mode to be used.
2fe86e00
MN
652 *
653 * Isolate all pages that can be migrated from the range specified by
edc2ca61
VB
654 * [low_pfn, end_pfn). The range is expected to be within same pageblock.
655 * Returns zero if there is a fatal signal pending, otherwise PFN of the
656 * first page that was not scanned (which may be both less, equal to or more
657 * than end_pfn).
2fe86e00 658 *
edc2ca61
VB
659 * The pages are isolated on cc->migratepages list (not required to be empty),
660 * and cc->nr_migratepages is updated accordingly. The cc->migrate_pfn field
661 * is neither read nor updated.
748446bb 662 */
edc2ca61
VB
663static unsigned long
664isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn,
665 unsigned long end_pfn, isolate_mode_t isolate_mode)
748446bb 666{
edc2ca61 667 struct zone *zone = cc->zone;
b7aba698 668 unsigned long nr_scanned = 0, nr_isolated = 0;
748446bb 669 struct list_head *migratelist = &cc->migratepages;
fa9add64 670 struct lruvec *lruvec;
b8b2d825 671 unsigned long flags = 0;
2a1402aa 672 bool locked = false;
bb13ffeb 673 struct page *page = NULL, *valid_page = NULL;
e34d85f0 674 unsigned long start_pfn = low_pfn;
748446bb 675
748446bb
MG
676 /*
677 * Ensure that there are not too many pages isolated from the LRU
678 * list by either parallel reclaimers or compaction. If there are,
679 * delay for some time until fewer pages are isolated
680 */
681 while (unlikely(too_many_isolated(zone))) {
f9e35b3b 682 /* async migration should just abort */
e0b9daeb 683 if (cc->mode == MIGRATE_ASYNC)
2fe86e00 684 return 0;
f9e35b3b 685
748446bb
MG
686 congestion_wait(BLK_RW_ASYNC, HZ/10);
687
688 if (fatal_signal_pending(current))
2fe86e00 689 return 0;
748446bb
MG
690 }
691
be976572
VB
692 if (compact_should_abort(cc))
693 return 0;
aeef4b83 694
748446bb 695 /* Time to isolate some pages for migration */
748446bb 696 for (; low_pfn < end_pfn; low_pfn++) {
8b44d279
VB
697 /*
698 * Periodically drop the lock (if held) regardless of its
699 * contention, to give chance to IRQs. Abort async compaction
700 * if contended.
701 */
702 if (!(low_pfn % SWAP_CLUSTER_MAX)
703 && compact_unlock_should_abort(&zone->lru_lock, flags,
704 &locked, cc))
705 break;
c67fe375 706
748446bb
MG
707 if (!pfn_valid_within(low_pfn))
708 continue;
b7aba698 709 nr_scanned++;
748446bb 710
748446bb 711 page = pfn_to_page(low_pfn);
dc908600 712
bb13ffeb
MG
713 if (!valid_page)
714 valid_page = page;
715
6c14466c 716 /*
99c0fd5e
VB
717 * Skip if free. We read page order here without zone lock
718 * which is generally unsafe, but the race window is small and
719 * the worst thing that can happen is that we skip some
720 * potential isolation targets.
6c14466c 721 */
99c0fd5e
VB
722 if (PageBuddy(page)) {
723 unsigned long freepage_order = page_order_unsafe(page);
724
725 /*
726 * Without lock, we cannot be sure that what we got is
727 * a valid page order. Consider only values in the
728 * valid order range to prevent low_pfn overflow.
729 */
730 if (freepage_order > 0 && freepage_order < MAX_ORDER)
731 low_pfn += (1UL << freepage_order) - 1;
748446bb 732 continue;
99c0fd5e 733 }
748446bb 734
bf6bddf1
RA
735 /*
736 * Check may be lockless but that's ok as we recheck later.
737 * It's possible to migrate LRU pages and balloon pages
738 * Skip any other type of page
739 */
740 if (!PageLRU(page)) {
741 if (unlikely(balloon_page_movable(page))) {
d6d86c0a 742 if (balloon_page_isolate(page)) {
bf6bddf1 743 /* Successfully isolated */
b6c75016 744 goto isolate_success;
bf6bddf1
RA
745 }
746 }
bc835011 747 continue;
bf6bddf1 748 }
bc835011
AA
749
750 /*
2a1402aa
MG
751 * PageLRU is set. lru_lock normally excludes isolation
752 * splitting and collapsing (collapsing has already happened
753 * if PageLRU is set) but the lock is not necessarily taken
754 * here and it is wasteful to take it just to check transhuge.
755 * Check TransHuge without lock and skip the whole pageblock if
756 * it's either a transhuge or hugetlbfs page, as calling
757 * compound_order() without preventing THP from splitting the
758 * page underneath us may return surprising results.
bc835011 759 */
2a1402aa
MG
760 if (PageTransHuge(page)) {
761 if (!locked)
edc2ca61
VB
762 low_pfn = ALIGN(low_pfn + 1,
763 pageblock_nr_pages) - 1;
764 else
765 low_pfn += (1 << compound_order(page)) - 1;
766
2a1402aa
MG
767 continue;
768 }
769
119d6d59
DR
770 /*
771 * Migration will fail if an anonymous page is pinned in memory,
772 * so avoid taking lru_lock and isolating it unnecessarily in an
773 * admittedly racy check.
774 */
775 if (!page_mapping(page) &&
776 page_count(page) > page_mapcount(page))
777 continue;
778
69b7189f
VB
779 /* If we already hold the lock, we can skip some rechecking */
780 if (!locked) {
8b44d279
VB
781 locked = compact_trylock_irqsave(&zone->lru_lock,
782 &flags, cc);
69b7189f
VB
783 if (!locked)
784 break;
2a1402aa 785
69b7189f
VB
786 /* Recheck PageLRU and PageTransHuge under lock */
787 if (!PageLRU(page))
788 continue;
789 if (PageTransHuge(page)) {
790 low_pfn += (1 << compound_order(page)) - 1;
791 continue;
792 }
bc835011
AA
793 }
794
fa9add64
HD
795 lruvec = mem_cgroup_page_lruvec(page, zone);
796
748446bb 797 /* Try isolate the page */
edc2ca61 798 if (__isolate_lru_page(page, isolate_mode) != 0)
748446bb
MG
799 continue;
800
309381fe 801 VM_BUG_ON_PAGE(PageTransCompound(page), page);
bc835011 802
748446bb 803 /* Successfully isolated */
fa9add64 804 del_page_from_lru_list(page, lruvec, page_lru(page));
b6c75016
JK
805
806isolate_success:
748446bb 807 list_add(&page->lru, migratelist);
748446bb 808 cc->nr_migratepages++;
b7aba698 809 nr_isolated++;
748446bb
MG
810
811 /* Avoid isolating too much */
31b8384a
HD
812 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
813 ++low_pfn;
748446bb 814 break;
31b8384a 815 }
748446bb
MG
816 }
817
99c0fd5e
VB
818 /*
819 * The PageBuddy() check could have potentially brought us outside
820 * the range to be scanned.
821 */
822 if (unlikely(low_pfn > end_pfn))
823 low_pfn = end_pfn;
824
c67fe375
MG
825 if (locked)
826 spin_unlock_irqrestore(&zone->lru_lock, flags);
748446bb 827
50b5b094
VB
828 /*
829 * Update the pageblock-skip information and cached scanner pfn,
830 * if the whole pageblock was scanned without isolating any page.
50b5b094 831 */
35979ef3 832 if (low_pfn == end_pfn)
edc2ca61 833 update_pageblock_skip(cc, valid_page, nr_isolated, true);
bb13ffeb 834
e34d85f0
JK
835 trace_mm_compaction_isolate_migratepages(start_pfn, low_pfn,
836 nr_scanned, nr_isolated);
b7aba698 837
010fc29a 838 count_compact_events(COMPACTMIGRATE_SCANNED, nr_scanned);
397487db 839 if (nr_isolated)
010fc29a 840 count_compact_events(COMPACTISOLATED, nr_isolated);
397487db 841
2fe86e00
MN
842 return low_pfn;
843}
844
edc2ca61
VB
845/**
846 * isolate_migratepages_range() - isolate migrate-able pages in a PFN range
847 * @cc: Compaction control structure.
848 * @start_pfn: The first PFN to start isolating.
849 * @end_pfn: The one-past-last PFN.
850 *
851 * Returns zero if isolation fails fatally due to e.g. pending signal.
852 * Otherwise, function returns one-past-the-last PFN of isolated page
853 * (which may be greater than end_pfn if end fell in a middle of a THP page).
854 */
855unsigned long
856isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn,
857 unsigned long end_pfn)
858{
859 unsigned long pfn, block_end_pfn;
860
861 /* Scan block by block. First and last block may be incomplete */
862 pfn = start_pfn;
863 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
864
865 for (; pfn < end_pfn; pfn = block_end_pfn,
866 block_end_pfn += pageblock_nr_pages) {
867
868 block_end_pfn = min(block_end_pfn, end_pfn);
869
7d49d886 870 if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone))
edc2ca61
VB
871 continue;
872
873 pfn = isolate_migratepages_block(cc, pfn, block_end_pfn,
874 ISOLATE_UNEVICTABLE);
875
876 /*
877 * In case of fatal failure, release everything that might
878 * have been isolated in the previous iteration, and signal
879 * the failure back to caller.
880 */
881 if (!pfn) {
882 putback_movable_pages(&cc->migratepages);
883 cc->nr_migratepages = 0;
884 break;
885 }
6ea41c0c
JK
886
887 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX)
888 break;
edc2ca61
VB
889 }
890 acct_isolated(cc->zone, cc);
891
892 return pfn;
893}
894
ff9543fd
MN
895#endif /* CONFIG_COMPACTION || CONFIG_CMA */
896#ifdef CONFIG_COMPACTION
2fe86e00 897/*
ff9543fd
MN
898 * Based on information in the current compact_control, find blocks
899 * suitable for isolating free pages from and then isolate them.
2fe86e00 900 */
edc2ca61 901static void isolate_freepages(struct compact_control *cc)
2fe86e00 902{
edc2ca61 903 struct zone *zone = cc->zone;
ff9543fd 904 struct page *page;
c96b9e50 905 unsigned long block_start_pfn; /* start of current pageblock */
e14c720e 906 unsigned long isolate_start_pfn; /* exact pfn we start at */
c96b9e50
VB
907 unsigned long block_end_pfn; /* end of current pageblock */
908 unsigned long low_pfn; /* lowest pfn scanner is able to scan */
ff9543fd 909 struct list_head *freelist = &cc->freepages;
2fe86e00 910
ff9543fd
MN
911 /*
912 * Initialise the free scanner. The starting point is where we last
49e068f0 913 * successfully isolated from, zone-cached value, or the end of the
e14c720e
VB
914 * zone when isolating for the first time. For looping we also need
915 * this pfn aligned down to the pageblock boundary, because we do
c96b9e50
VB
916 * block_start_pfn -= pageblock_nr_pages in the for loop.
917 * For ending point, take care when isolating in last pageblock of a
918 * a zone which ends in the middle of a pageblock.
49e068f0
VB
919 * The low boundary is the end of the pageblock the migration scanner
920 * is using.
ff9543fd 921 */
e14c720e 922 isolate_start_pfn = cc->free_pfn;
c96b9e50
VB
923 block_start_pfn = cc->free_pfn & ~(pageblock_nr_pages-1);
924 block_end_pfn = min(block_start_pfn + pageblock_nr_pages,
925 zone_end_pfn(zone));
7ed695e0 926 low_pfn = ALIGN(cc->migrate_pfn + 1, pageblock_nr_pages);
2fe86e00 927
ff9543fd
MN
928 /*
929 * Isolate free pages until enough are available to migrate the
930 * pages on cc->migratepages. We stop searching if the migrate
931 * and free page scanners meet or enough free pages are isolated.
932 */
932ff6bb
JK
933 for (; block_start_pfn >= low_pfn &&
934 cc->nr_migratepages > cc->nr_freepages;
c96b9e50 935 block_end_pfn = block_start_pfn,
e14c720e
VB
936 block_start_pfn -= pageblock_nr_pages,
937 isolate_start_pfn = block_start_pfn) {
2fe86e00 938
f6ea3adb
DR
939 /*
940 * This can iterate a massively long zone without finding any
941 * suitable migration targets, so periodically check if we need
be976572 942 * to schedule, or even abort async compaction.
f6ea3adb 943 */
be976572
VB
944 if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
945 && compact_should_abort(cc))
946 break;
f6ea3adb 947
7d49d886
VB
948 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
949 zone);
950 if (!page)
ff9543fd
MN
951 continue;
952
953 /* Check the block is suitable for migration */
68e3e926 954 if (!suitable_migration_target(page))
ff9543fd 955 continue;
68e3e926 956
bb13ffeb
MG
957 /* If isolation recently failed, do not retry */
958 if (!isolation_suitable(cc, page))
959 continue;
960
e14c720e 961 /* Found a block suitable for isolating free pages from. */
932ff6bb 962 isolate_freepages_block(cc, &isolate_start_pfn,
c96b9e50 963 block_end_pfn, freelist, false);
ff9543fd 964
e14c720e
VB
965 /*
966 * Remember where the free scanner should restart next time,
967 * which is where isolate_freepages_block() left off.
968 * But if it scanned the whole pageblock, isolate_start_pfn
969 * now points at block_end_pfn, which is the start of the next
970 * pageblock.
971 * In that case we will however want to restart at the start
972 * of the previous pageblock.
973 */
974 cc->free_pfn = (isolate_start_pfn < block_end_pfn) ?
975 isolate_start_pfn :
976 block_start_pfn - pageblock_nr_pages;
977
be976572
VB
978 /*
979 * isolate_freepages_block() might have aborted due to async
980 * compaction being contended
981 */
982 if (cc->contended)
983 break;
ff9543fd
MN
984 }
985
986 /* split_free_page does not map the pages */
987 map_pages(freelist);
988
7ed695e0
VB
989 /*
990 * If we crossed the migrate scanner, we want to keep it that way
991 * so that compact_finished() may detect this
992 */
c96b9e50 993 if (block_start_pfn < low_pfn)
e9ade569 994 cc->free_pfn = cc->migrate_pfn;
748446bb
MG
995}
996
997/*
998 * This is a migrate-callback that "allocates" freepages by taking pages
999 * from the isolated freelists in the block we are migrating to.
1000 */
1001static struct page *compaction_alloc(struct page *migratepage,
1002 unsigned long data,
1003 int **result)
1004{
1005 struct compact_control *cc = (struct compact_control *)data;
1006 struct page *freepage;
1007
be976572
VB
1008 /*
1009 * Isolate free pages if necessary, and if we are not aborting due to
1010 * contention.
1011 */
748446bb 1012 if (list_empty(&cc->freepages)) {
be976572 1013 if (!cc->contended)
edc2ca61 1014 isolate_freepages(cc);
748446bb
MG
1015
1016 if (list_empty(&cc->freepages))
1017 return NULL;
1018 }
1019
1020 freepage = list_entry(cc->freepages.next, struct page, lru);
1021 list_del(&freepage->lru);
1022 cc->nr_freepages--;
1023
1024 return freepage;
1025}
1026
1027/*
d53aea3d
DR
1028 * This is a migrate-callback that "frees" freepages back to the isolated
1029 * freelist. All pages on the freelist are from the same zone, so there is no
1030 * special handling needed for NUMA.
1031 */
1032static void compaction_free(struct page *page, unsigned long data)
1033{
1034 struct compact_control *cc = (struct compact_control *)data;
1035
1036 list_add(&page->lru, &cc->freepages);
1037 cc->nr_freepages++;
1038}
1039
ff9543fd
MN
1040/* possible outcome of isolate_migratepages */
1041typedef enum {
1042 ISOLATE_ABORT, /* Abort compaction now */
1043 ISOLATE_NONE, /* No pages isolated, continue scanning */
1044 ISOLATE_SUCCESS, /* Pages isolated, migrate */
1045} isolate_migrate_t;
1046
1047/*
edc2ca61
VB
1048 * Isolate all pages that can be migrated from the first suitable block,
1049 * starting at the block pointed to by the migrate scanner pfn within
1050 * compact_control.
ff9543fd
MN
1051 */
1052static isolate_migrate_t isolate_migratepages(struct zone *zone,
1053 struct compact_control *cc)
1054{
1055 unsigned long low_pfn, end_pfn;
edc2ca61
VB
1056 struct page *page;
1057 const isolate_mode_t isolate_mode =
1058 (cc->mode == MIGRATE_ASYNC ? ISOLATE_ASYNC_MIGRATE : 0);
ff9543fd 1059
edc2ca61
VB
1060 /*
1061 * Start at where we last stopped, or beginning of the zone as
1062 * initialized by compact_zone()
1063 */
1064 low_pfn = cc->migrate_pfn;
ff9543fd
MN
1065
1066 /* Only scan within a pageblock boundary */
a9aacbcc 1067 end_pfn = ALIGN(low_pfn + 1, pageblock_nr_pages);
ff9543fd 1068
edc2ca61
VB
1069 /*
1070 * Iterate over whole pageblocks until we find the first suitable.
1071 * Do not cross the free scanner.
1072 */
1073 for (; end_pfn <= cc->free_pfn;
1074 low_pfn = end_pfn, end_pfn += pageblock_nr_pages) {
ff9543fd 1075
edc2ca61
VB
1076 /*
1077 * This can potentially iterate a massively long zone with
1078 * many pageblocks unsuitable, so periodically check if we
1079 * need to schedule, or even abort async compaction.
1080 */
1081 if (!(low_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
1082 && compact_should_abort(cc))
1083 break;
ff9543fd 1084
7d49d886
VB
1085 page = pageblock_pfn_to_page(low_pfn, end_pfn, zone);
1086 if (!page)
edc2ca61
VB
1087 continue;
1088
edc2ca61
VB
1089 /* If isolation recently failed, do not retry */
1090 if (!isolation_suitable(cc, page))
1091 continue;
1092
1093 /*
1094 * For async compaction, also only scan in MOVABLE blocks.
1095 * Async compaction is optimistic to see if the minimum amount
1096 * of work satisfies the allocation.
1097 */
1098 if (cc->mode == MIGRATE_ASYNC &&
1099 !migrate_async_suitable(get_pageblock_migratetype(page)))
1100 continue;
1101
1102 /* Perform the isolation */
1103 low_pfn = isolate_migratepages_block(cc, low_pfn, end_pfn,
1104 isolate_mode);
1105
1106 if (!low_pfn || cc->contended)
1107 return ISOLATE_ABORT;
1108
1109 /*
1110 * Either we isolated something and proceed with migration. Or
1111 * we failed and compact_zone should decide if we should
1112 * continue or not.
1113 */
1114 break;
1115 }
1116
1117 acct_isolated(zone, cc);
1d5bfe1f
VB
1118 /*
1119 * Record where migration scanner will be restarted. If we end up in
1120 * the same pageblock as the free scanner, make the scanners fully
1121 * meet so that compact_finished() terminates compaction.
1122 */
1123 cc->migrate_pfn = (end_pfn <= cc->free_pfn) ? low_pfn : cc->free_pfn;
ff9543fd 1124
edc2ca61 1125 return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE;
ff9543fd
MN
1126}
1127
837d026d 1128static int __compact_finished(struct zone *zone, struct compact_control *cc,
6d7ce559 1129 const int migratetype)
748446bb 1130{
8fb74b9f 1131 unsigned int order;
5a03b051 1132 unsigned long watermark;
56de7263 1133
be976572 1134 if (cc->contended || fatal_signal_pending(current))
748446bb
MG
1135 return COMPACT_PARTIAL;
1136
753341a4 1137 /* Compaction run completes if the migrate and free scanner meet */
bb13ffeb 1138 if (cc->free_pfn <= cc->migrate_pfn) {
55b7c4c9 1139 /* Let the next compaction start anew. */
35979ef3
DR
1140 zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn;
1141 zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn;
55b7c4c9
VB
1142 zone->compact_cached_free_pfn = zone_end_pfn(zone);
1143
62997027
MG
1144 /*
1145 * Mark that the PG_migrate_skip information should be cleared
1146 * by kswapd when it goes to sleep. kswapd does not set the
1147 * flag itself as the decision to be clear should be directly
1148 * based on an allocation request.
1149 */
1150 if (!current_is_kswapd())
1151 zone->compact_blockskip_flush = true;
1152
748446bb 1153 return COMPACT_COMPLETE;
bb13ffeb 1154 }
748446bb 1155
82478fb7
JW
1156 /*
1157 * order == -1 is expected when compacting via
1158 * /proc/sys/vm/compact_memory
1159 */
56de7263
MG
1160 if (cc->order == -1)
1161 return COMPACT_CONTINUE;
1162
3957c776
MH
1163 /* Compaction run is not finished if the watermark is not met */
1164 watermark = low_wmark_pages(zone);
3957c776 1165
ebff3980
VB
1166 if (!zone_watermark_ok(zone, cc->order, watermark, cc->classzone_idx,
1167 cc->alloc_flags))
3957c776
MH
1168 return COMPACT_CONTINUE;
1169
56de7263 1170 /* Direct compactor: Is a suitable page free? */
8fb74b9f
MG
1171 for (order = cc->order; order < MAX_ORDER; order++) {
1172 struct free_area *area = &zone->free_area[order];
1173
1174 /* Job done if page is free of the right migratetype */
6d7ce559 1175 if (!list_empty(&area->free_list[migratetype]))
8fb74b9f
MG
1176 return COMPACT_PARTIAL;
1177
1178 /* Job done if allocation would set block type */
372549c2 1179 if (order >= pageblock_order && area->nr_free)
56de7263
MG
1180 return COMPACT_PARTIAL;
1181 }
1182
837d026d
JK
1183 return COMPACT_NO_SUITABLE_PAGE;
1184}
1185
1186static int compact_finished(struct zone *zone, struct compact_control *cc,
1187 const int migratetype)
1188{
1189 int ret;
1190
1191 ret = __compact_finished(zone, cc, migratetype);
1192 trace_mm_compaction_finished(zone, cc->order, ret);
1193 if (ret == COMPACT_NO_SUITABLE_PAGE)
1194 ret = COMPACT_CONTINUE;
1195
1196 return ret;
748446bb
MG
1197}
1198
3e7d3449
MG
1199/*
1200 * compaction_suitable: Is this suitable to run compaction on this zone now?
1201 * Returns
1202 * COMPACT_SKIPPED - If there are too few free pages for compaction
1203 * COMPACT_PARTIAL - If the allocation would succeed without compaction
1204 * COMPACT_CONTINUE - If compaction should run now
1205 */
837d026d 1206static unsigned long __compaction_suitable(struct zone *zone, int order,
ebff3980 1207 int alloc_flags, int classzone_idx)
3e7d3449
MG
1208{
1209 int fragindex;
1210 unsigned long watermark;
1211
3957c776
MH
1212 /*
1213 * order == -1 is expected when compacting via
1214 * /proc/sys/vm/compact_memory
1215 */
1216 if (order == -1)
1217 return COMPACT_CONTINUE;
1218
ebff3980
VB
1219 watermark = low_wmark_pages(zone);
1220 /*
1221 * If watermarks for high-order allocation are already met, there
1222 * should be no need for compaction at all.
1223 */
1224 if (zone_watermark_ok(zone, order, watermark, classzone_idx,
1225 alloc_flags))
1226 return COMPACT_PARTIAL;
1227
3e7d3449
MG
1228 /*
1229 * Watermarks for order-0 must be met for compaction. Note the 2UL.
1230 * This is because during migration, copies of pages need to be
1231 * allocated and for a short time, the footprint is higher
1232 */
ebff3980
VB
1233 watermark += (2UL << order);
1234 if (!zone_watermark_ok(zone, 0, watermark, classzone_idx, alloc_flags))
3e7d3449
MG
1235 return COMPACT_SKIPPED;
1236
1237 /*
1238 * fragmentation index determines if allocation failures are due to
1239 * low memory or external fragmentation
1240 *
ebff3980
VB
1241 * index of -1000 would imply allocations might succeed depending on
1242 * watermarks, but we already failed the high-order watermark check
3e7d3449
MG
1243 * index towards 0 implies failure is due to lack of memory
1244 * index towards 1000 implies failure is due to fragmentation
1245 *
1246 * Only compact if a failure would be due to fragmentation.
1247 */
1248 fragindex = fragmentation_index(zone, order);
1249 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
837d026d 1250 return COMPACT_NOT_SUITABLE_ZONE;
3e7d3449 1251
3e7d3449
MG
1252 return COMPACT_CONTINUE;
1253}
1254
837d026d
JK
1255unsigned long compaction_suitable(struct zone *zone, int order,
1256 int alloc_flags, int classzone_idx)
1257{
1258 unsigned long ret;
1259
1260 ret = __compaction_suitable(zone, order, alloc_flags, classzone_idx);
1261 trace_mm_compaction_suitable(zone, order, ret);
1262 if (ret == COMPACT_NOT_SUITABLE_ZONE)
1263 ret = COMPACT_SKIPPED;
1264
1265 return ret;
1266}
1267
748446bb
MG
1268static int compact_zone(struct zone *zone, struct compact_control *cc)
1269{
1270 int ret;
c89511ab 1271 unsigned long start_pfn = zone->zone_start_pfn;
108bcc96 1272 unsigned long end_pfn = zone_end_pfn(zone);
6d7ce559 1273 const int migratetype = gfpflags_to_migratetype(cc->gfp_mask);
e0b9daeb 1274 const bool sync = cc->mode != MIGRATE_ASYNC;
fdaf7f5c 1275 unsigned long last_migrated_pfn = 0;
748446bb 1276
ebff3980
VB
1277 ret = compaction_suitable(zone, cc->order, cc->alloc_flags,
1278 cc->classzone_idx);
3e7d3449
MG
1279 switch (ret) {
1280 case COMPACT_PARTIAL:
1281 case COMPACT_SKIPPED:
1282 /* Compaction is likely to fail */
1283 return ret;
1284 case COMPACT_CONTINUE:
1285 /* Fall through to compaction */
1286 ;
1287 }
1288
d3132e4b
VB
1289 /*
1290 * Clear pageblock skip if there were failures recently and compaction
1291 * is about to be retried after being deferred. kswapd does not do
1292 * this reset as it'll reset the cached information when going to sleep.
1293 */
1294 if (compaction_restarting(zone, cc->order) && !current_is_kswapd())
1295 __reset_isolation_suitable(zone);
1296
c89511ab
MG
1297 /*
1298 * Setup to move all movable pages to the end of the zone. Used cached
1299 * information on where the scanners should start but check that it
1300 * is initialised by ensuring the values are within zone boundaries.
1301 */
e0b9daeb 1302 cc->migrate_pfn = zone->compact_cached_migrate_pfn[sync];
c89511ab
MG
1303 cc->free_pfn = zone->compact_cached_free_pfn;
1304 if (cc->free_pfn < start_pfn || cc->free_pfn > end_pfn) {
1305 cc->free_pfn = end_pfn & ~(pageblock_nr_pages-1);
1306 zone->compact_cached_free_pfn = cc->free_pfn;
1307 }
1308 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn > end_pfn) {
1309 cc->migrate_pfn = start_pfn;
35979ef3
DR
1310 zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn;
1311 zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn;
c89511ab 1312 }
748446bb 1313
16c4a097
JK
1314 trace_mm_compaction_begin(start_pfn, cc->migrate_pfn,
1315 cc->free_pfn, end_pfn, sync);
0eb927c0 1316
748446bb
MG
1317 migrate_prep_local();
1318
6d7ce559
DR
1319 while ((ret = compact_finished(zone, cc, migratetype)) ==
1320 COMPACT_CONTINUE) {
9d502c1c 1321 int err;
fdaf7f5c 1322 unsigned long isolate_start_pfn = cc->migrate_pfn;
748446bb 1323
f9e35b3b
MG
1324 switch (isolate_migratepages(zone, cc)) {
1325 case ISOLATE_ABORT:
1326 ret = COMPACT_PARTIAL;
5733c7d1 1327 putback_movable_pages(&cc->migratepages);
e64c5237 1328 cc->nr_migratepages = 0;
f9e35b3b
MG
1329 goto out;
1330 case ISOLATE_NONE:
fdaf7f5c
VB
1331 /*
1332 * We haven't isolated and migrated anything, but
1333 * there might still be unflushed migrations from
1334 * previous cc->order aligned block.
1335 */
1336 goto check_drain;
f9e35b3b
MG
1337 case ISOLATE_SUCCESS:
1338 ;
1339 }
748446bb 1340
d53aea3d 1341 err = migrate_pages(&cc->migratepages, compaction_alloc,
e0b9daeb 1342 compaction_free, (unsigned long)cc, cc->mode,
7b2a2d4a 1343 MR_COMPACTION);
748446bb 1344
f8c9301f
VB
1345 trace_mm_compaction_migratepages(cc->nr_migratepages, err,
1346 &cc->migratepages);
748446bb 1347
f8c9301f
VB
1348 /* All pages were either migrated or will be released */
1349 cc->nr_migratepages = 0;
9d502c1c 1350 if (err) {
5733c7d1 1351 putback_movable_pages(&cc->migratepages);
7ed695e0
VB
1352 /*
1353 * migrate_pages() may return -ENOMEM when scanners meet
1354 * and we want compact_finished() to detect it
1355 */
1356 if (err == -ENOMEM && cc->free_pfn > cc->migrate_pfn) {
4bf2bba3
DR
1357 ret = COMPACT_PARTIAL;
1358 goto out;
1359 }
748446bb 1360 }
fdaf7f5c
VB
1361
1362 /*
1363 * Record where we could have freed pages by migration and not
1364 * yet flushed them to buddy allocator. We use the pfn that
1365 * isolate_migratepages() started from in this loop iteration
1366 * - this is the lowest page that could have been isolated and
1367 * then freed by migration.
1368 */
1369 if (!last_migrated_pfn)
1370 last_migrated_pfn = isolate_start_pfn;
1371
1372check_drain:
1373 /*
1374 * Has the migration scanner moved away from the previous
1375 * cc->order aligned block where we migrated from? If yes,
1376 * flush the pages that were freed, so that they can merge and
1377 * compact_finished() can detect immediately if allocation
1378 * would succeed.
1379 */
1380 if (cc->order > 0 && last_migrated_pfn) {
1381 int cpu;
1382 unsigned long current_block_start =
1383 cc->migrate_pfn & ~((1UL << cc->order) - 1);
1384
1385 if (last_migrated_pfn < current_block_start) {
1386 cpu = get_cpu();
1387 lru_add_drain_cpu(cpu);
1388 drain_local_pages(zone);
1389 put_cpu();
1390 /* No more flushing until we migrate again */
1391 last_migrated_pfn = 0;
1392 }
1393 }
1394
748446bb
MG
1395 }
1396
f9e35b3b 1397out:
6bace090
VB
1398 /*
1399 * Release free pages and update where the free scanner should restart,
1400 * so we don't leave any returned pages behind in the next attempt.
1401 */
1402 if (cc->nr_freepages > 0) {
1403 unsigned long free_pfn = release_freepages(&cc->freepages);
1404
1405 cc->nr_freepages = 0;
1406 VM_BUG_ON(free_pfn == 0);
1407 /* The cached pfn is always the first in a pageblock */
1408 free_pfn &= ~(pageblock_nr_pages-1);
1409 /*
1410 * Only go back, not forward. The cached pfn might have been
1411 * already reset to zone end in compact_finished()
1412 */
1413 if (free_pfn > zone->compact_cached_free_pfn)
1414 zone->compact_cached_free_pfn = free_pfn;
1415 }
748446bb 1416
16c4a097
JK
1417 trace_mm_compaction_end(start_pfn, cc->migrate_pfn,
1418 cc->free_pfn, end_pfn, sync, ret);
0eb927c0 1419
748446bb
MG
1420 return ret;
1421}
76ab0f53 1422
e0b9daeb 1423static unsigned long compact_zone_order(struct zone *zone, int order,
ebff3980
VB
1424 gfp_t gfp_mask, enum migrate_mode mode, int *contended,
1425 int alloc_flags, int classzone_idx)
56de7263 1426{
e64c5237 1427 unsigned long ret;
56de7263
MG
1428 struct compact_control cc = {
1429 .nr_freepages = 0,
1430 .nr_migratepages = 0,
1431 .order = order,
6d7ce559 1432 .gfp_mask = gfp_mask,
56de7263 1433 .zone = zone,
e0b9daeb 1434 .mode = mode,
ebff3980
VB
1435 .alloc_flags = alloc_flags,
1436 .classzone_idx = classzone_idx,
56de7263
MG
1437 };
1438 INIT_LIST_HEAD(&cc.freepages);
1439 INIT_LIST_HEAD(&cc.migratepages);
1440
e64c5237
SL
1441 ret = compact_zone(zone, &cc);
1442
1443 VM_BUG_ON(!list_empty(&cc.freepages));
1444 VM_BUG_ON(!list_empty(&cc.migratepages));
1445
1446 *contended = cc.contended;
1447 return ret;
56de7263
MG
1448}
1449
5e771905
MG
1450int sysctl_extfrag_threshold = 500;
1451
56de7263
MG
1452/**
1453 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
56de7263 1454 * @gfp_mask: The GFP mask of the current allocation
1a6d53a1
VB
1455 * @order: The order of the current allocation
1456 * @alloc_flags: The allocation flags of the current allocation
1457 * @ac: The context of current allocation
e0b9daeb 1458 * @mode: The migration mode for async, sync light, or sync migration
1f9efdef
VB
1459 * @contended: Return value that determines if compaction was aborted due to
1460 * need_resched() or lock contention
56de7263
MG
1461 *
1462 * This is the main entry point for direct page compaction.
1463 */
1a6d53a1
VB
1464unsigned long try_to_compact_pages(gfp_t gfp_mask, unsigned int order,
1465 int alloc_flags, const struct alloc_context *ac,
1466 enum migrate_mode mode, int *contended)
56de7263 1467{
56de7263
MG
1468 int may_enter_fs = gfp_mask & __GFP_FS;
1469 int may_perform_io = gfp_mask & __GFP_IO;
56de7263
MG
1470 struct zoneref *z;
1471 struct zone *zone;
53853e2d 1472 int rc = COMPACT_DEFERRED;
1f9efdef
VB
1473 int all_zones_contended = COMPACT_CONTENDED_LOCK; /* init for &= op */
1474
1475 *contended = COMPACT_CONTENDED_NONE;
56de7263 1476
4ffb6335 1477 /* Check if the GFP flags allow compaction */
c5a73c3d 1478 if (!order || !may_enter_fs || !may_perform_io)
53853e2d 1479 return COMPACT_SKIPPED;
56de7263 1480
837d026d
JK
1481 trace_mm_compaction_try_to_compact_pages(order, gfp_mask, mode);
1482
56de7263 1483 /* Compact each zone in the list */
1a6d53a1
VB
1484 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx,
1485 ac->nodemask) {
56de7263 1486 int status;
1f9efdef 1487 int zone_contended;
56de7263 1488
53853e2d
VB
1489 if (compaction_deferred(zone, order))
1490 continue;
1491
e0b9daeb 1492 status = compact_zone_order(zone, order, gfp_mask, mode,
1a6d53a1
VB
1493 &zone_contended, alloc_flags,
1494 ac->classzone_idx);
56de7263 1495 rc = max(status, rc);
1f9efdef
VB
1496 /*
1497 * It takes at least one zone that wasn't lock contended
1498 * to clear all_zones_contended.
1499 */
1500 all_zones_contended &= zone_contended;
56de7263 1501
3e7d3449 1502 /* If a normal allocation would succeed, stop compacting */
ebff3980 1503 if (zone_watermark_ok(zone, order, low_wmark_pages(zone),
1a6d53a1 1504 ac->classzone_idx, alloc_flags)) {
53853e2d
VB
1505 /*
1506 * We think the allocation will succeed in this zone,
1507 * but it is not certain, hence the false. The caller
1508 * will repeat this with true if allocation indeed
1509 * succeeds in this zone.
1510 */
1511 compaction_defer_reset(zone, order, false);
1f9efdef
VB
1512 /*
1513 * It is possible that async compaction aborted due to
1514 * need_resched() and the watermarks were ok thanks to
1515 * somebody else freeing memory. The allocation can
1516 * however still fail so we better signal the
1517 * need_resched() contention anyway (this will not
1518 * prevent the allocation attempt).
1519 */
1520 if (zone_contended == COMPACT_CONTENDED_SCHED)
1521 *contended = COMPACT_CONTENDED_SCHED;
1522
1523 goto break_loop;
1524 }
1525
f8669795 1526 if (mode != MIGRATE_ASYNC && status == COMPACT_COMPLETE) {
53853e2d
VB
1527 /*
1528 * We think that allocation won't succeed in this zone
1529 * so we defer compaction there. If it ends up
1530 * succeeding after all, it will be reset.
1531 */
1532 defer_compaction(zone, order);
1533 }
1f9efdef
VB
1534
1535 /*
1536 * We might have stopped compacting due to need_resched() in
1537 * async compaction, or due to a fatal signal detected. In that
1538 * case do not try further zones and signal need_resched()
1539 * contention.
1540 */
1541 if ((zone_contended == COMPACT_CONTENDED_SCHED)
1542 || fatal_signal_pending(current)) {
1543 *contended = COMPACT_CONTENDED_SCHED;
1544 goto break_loop;
1545 }
1546
1547 continue;
1548break_loop:
1549 /*
1550 * We might not have tried all the zones, so be conservative
1551 * and assume they are not all lock contended.
1552 */
1553 all_zones_contended = 0;
1554 break;
56de7263
MG
1555 }
1556
1f9efdef
VB
1557 /*
1558 * If at least one zone wasn't deferred or skipped, we report if all
1559 * zones that were tried were lock contended.
1560 */
1561 if (rc > COMPACT_SKIPPED && all_zones_contended)
1562 *contended = COMPACT_CONTENDED_LOCK;
1563
56de7263
MG
1564 return rc;
1565}
1566
1567
76ab0f53 1568/* Compact all zones within a node */
7103f16d 1569static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
76ab0f53
MG
1570{
1571 int zoneid;
76ab0f53
MG
1572 struct zone *zone;
1573
76ab0f53 1574 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
76ab0f53
MG
1575
1576 zone = &pgdat->node_zones[zoneid];
1577 if (!populated_zone(zone))
1578 continue;
1579
7be62de9
RR
1580 cc->nr_freepages = 0;
1581 cc->nr_migratepages = 0;
1582 cc->zone = zone;
1583 INIT_LIST_HEAD(&cc->freepages);
1584 INIT_LIST_HEAD(&cc->migratepages);
76ab0f53 1585
aad6ec37 1586 if (cc->order == -1 || !compaction_deferred(zone, cc->order))
7be62de9 1587 compact_zone(zone, cc);
76ab0f53 1588
aff62249 1589 if (cc->order > 0) {
de6c60a6
VB
1590 if (zone_watermark_ok(zone, cc->order,
1591 low_wmark_pages(zone), 0, 0))
1592 compaction_defer_reset(zone, cc->order, false);
aff62249
RR
1593 }
1594
7be62de9
RR
1595 VM_BUG_ON(!list_empty(&cc->freepages));
1596 VM_BUG_ON(!list_empty(&cc->migratepages));
76ab0f53 1597 }
76ab0f53
MG
1598}
1599
7103f16d 1600void compact_pgdat(pg_data_t *pgdat, int order)
7be62de9
RR
1601{
1602 struct compact_control cc = {
1603 .order = order,
e0b9daeb 1604 .mode = MIGRATE_ASYNC,
7be62de9
RR
1605 };
1606
3a7200af
MG
1607 if (!order)
1608 return;
1609
7103f16d 1610 __compact_pgdat(pgdat, &cc);
7be62de9
RR
1611}
1612
7103f16d 1613static void compact_node(int nid)
7be62de9 1614{
7be62de9
RR
1615 struct compact_control cc = {
1616 .order = -1,
e0b9daeb 1617 .mode = MIGRATE_SYNC,
91ca9186 1618 .ignore_skip_hint = true,
7be62de9
RR
1619 };
1620
7103f16d 1621 __compact_pgdat(NODE_DATA(nid), &cc);
7be62de9
RR
1622}
1623
76ab0f53 1624/* Compact all nodes in the system */
7964c06d 1625static void compact_nodes(void)
76ab0f53
MG
1626{
1627 int nid;
1628
8575ec29
HD
1629 /* Flush pending updates to the LRU lists */
1630 lru_add_drain_all();
1631
76ab0f53
MG
1632 for_each_online_node(nid)
1633 compact_node(nid);
76ab0f53
MG
1634}
1635
1636/* The written value is actually unused, all memory is compacted */
1637int sysctl_compact_memory;
1638
1639/* This is the entry point for compacting all nodes via /proc/sys/vm */
1640int sysctl_compaction_handler(struct ctl_table *table, int write,
1641 void __user *buffer, size_t *length, loff_t *ppos)
1642{
1643 if (write)
7964c06d 1644 compact_nodes();
76ab0f53
MG
1645
1646 return 0;
1647}
ed4a6d7f 1648
5e771905
MG
1649int sysctl_extfrag_handler(struct ctl_table *table, int write,
1650 void __user *buffer, size_t *length, loff_t *ppos)
1651{
1652 proc_dointvec_minmax(table, write, buffer, length, ppos);
1653
1654 return 0;
1655}
1656
ed4a6d7f 1657#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
74e77fb9 1658static ssize_t sysfs_compact_node(struct device *dev,
10fbcf4c 1659 struct device_attribute *attr,
ed4a6d7f
MG
1660 const char *buf, size_t count)
1661{
8575ec29
HD
1662 int nid = dev->id;
1663
1664 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
1665 /* Flush pending updates to the LRU lists */
1666 lru_add_drain_all();
1667
1668 compact_node(nid);
1669 }
ed4a6d7f
MG
1670
1671 return count;
1672}
10fbcf4c 1673static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
ed4a6d7f
MG
1674
1675int compaction_register_node(struct node *node)
1676{
10fbcf4c 1677 return device_create_file(&node->dev, &dev_attr_compact);
ed4a6d7f
MG
1678}
1679
1680void compaction_unregister_node(struct node *node)
1681{
10fbcf4c 1682 return device_remove_file(&node->dev, &dev_attr_compact);
ed4a6d7f
MG
1683}
1684#endif /* CONFIG_SYSFS && CONFIG_NUMA */
ff9543fd
MN
1685
1686#endif /* CONFIG_COMPACTION */