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