selftests: mm: ksm: fix incorrect evaluation of parameter
[linux-2.6-block.git] / mm / compaction.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
748446bb
MG
2/*
3 * linux/mm/compaction.c
4 *
5 * Memory compaction for the reduction of external fragmentation. Note that
6 * this heavily depends upon page migration to do all the real heavy
7 * lifting
8 *
9 * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie>
10 */
698b1b30 11#include <linux/cpu.h>
748446bb
MG
12#include <linux/swap.h>
13#include <linux/migrate.h>
14#include <linux/compaction.h>
15#include <linux/mm_inline.h>
174cd4b1 16#include <linux/sched/signal.h>
748446bb 17#include <linux/backing-dev.h>
76ab0f53 18#include <linux/sysctl.h>
ed4a6d7f 19#include <linux/sysfs.h>
194159fb 20#include <linux/page-isolation.h>
b8c73fc2 21#include <linux/kasan.h>
698b1b30
VB
22#include <linux/kthread.h>
23#include <linux/freezer.h>
83358ece 24#include <linux/page_owner.h>
eb414681 25#include <linux/psi.h>
748446bb
MG
26#include "internal.h"
27
010fc29a 28#ifdef CONFIG_COMPACTION
31ca72fa
CTK
29/*
30 * Fragmentation score check interval for proactive compaction purposes.
31 */
32#define HPAGE_FRAG_CHECK_INTERVAL_MSEC (500)
33
010fc29a
MK
34static inline void count_compact_event(enum vm_event_item item)
35{
36 count_vm_event(item);
37}
38
39static inline void count_compact_events(enum vm_event_item item, long delta)
40{
41 count_vm_events(item, delta);
42}
43#else
44#define count_compact_event(item) do { } while (0)
45#define count_compact_events(item, delta) do { } while (0)
46#endif
47
ff9543fd
MN
48#if defined CONFIG_COMPACTION || defined CONFIG_CMA
49
b7aba698
MG
50#define CREATE_TRACE_POINTS
51#include <trace/events/compaction.h>
52
06b6640a
VB
53#define block_start_pfn(pfn, order) round_down(pfn, 1UL << (order))
54#define block_end_pfn(pfn, order) ALIGN((pfn) + 1, 1UL << (order))
06b6640a 55
facdaa91
NG
56/*
57 * Page order with-respect-to which proactive compaction
58 * calculates external fragmentation, which is used as
59 * the "fragmentation score" of a node/zone.
60 */
61#if defined CONFIG_TRANSPARENT_HUGEPAGE
62#define COMPACTION_HPAGE_ORDER HPAGE_PMD_ORDER
25788738 63#elif defined CONFIG_HUGETLBFS
facdaa91
NG
64#define COMPACTION_HPAGE_ORDER HUGETLB_PAGE_ORDER
65#else
66#define COMPACTION_HPAGE_ORDER (PMD_SHIFT - PAGE_SHIFT)
67#endif
68
748446bb
MG
69static unsigned long release_freepages(struct list_head *freelist)
70{
71 struct page *page, *next;
6bace090 72 unsigned long high_pfn = 0;
748446bb
MG
73
74 list_for_each_entry_safe(page, next, freelist, lru) {
6bace090 75 unsigned long pfn = page_to_pfn(page);
748446bb
MG
76 list_del(&page->lru);
77 __free_page(page);
6bace090
VB
78 if (pfn > high_pfn)
79 high_pfn = pfn;
748446bb
MG
80 }
81
6bace090 82 return high_pfn;
748446bb
MG
83}
84
4469ab98 85static void split_map_pages(struct list_head *list)
ff9543fd 86{
66c64223
JK
87 unsigned int i, order, nr_pages;
88 struct page *page, *next;
89 LIST_HEAD(tmp_list);
90
91 list_for_each_entry_safe(page, next, list, lru) {
92 list_del(&page->lru);
93
94 order = page_private(page);
95 nr_pages = 1 << order;
66c64223 96
46f24fd8 97 post_alloc_hook(page, order, __GFP_MOVABLE);
66c64223
JK
98 if (order)
99 split_page(page, order);
ff9543fd 100
66c64223
JK
101 for (i = 0; i < nr_pages; i++) {
102 list_add(&page->lru, &tmp_list);
103 page++;
104 }
ff9543fd 105 }
66c64223
JK
106
107 list_splice(&tmp_list, list);
ff9543fd
MN
108}
109
bb13ffeb 110#ifdef CONFIG_COMPACTION
68f2736a 111bool PageMovable(struct page *page)
bda807d4 112{
68f2736a 113 const struct movable_operations *mops;
bda807d4
MK
114
115 VM_BUG_ON_PAGE(!PageLocked(page), page);
116 if (!__PageMovable(page))
68f2736a 117 return false;
bda807d4 118
68f2736a
MWO
119 mops = page_movable_ops(page);
120 if (mops)
121 return true;
bda807d4 122
68f2736a 123 return false;
bda807d4 124}
bda807d4 125
68f2736a 126void __SetPageMovable(struct page *page, const struct movable_operations *mops)
bda807d4
MK
127{
128 VM_BUG_ON_PAGE(!PageLocked(page), page);
68f2736a
MWO
129 VM_BUG_ON_PAGE((unsigned long)mops & PAGE_MAPPING_MOVABLE, page);
130 page->mapping = (void *)((unsigned long)mops | PAGE_MAPPING_MOVABLE);
bda807d4
MK
131}
132EXPORT_SYMBOL(__SetPageMovable);
133
134void __ClearPageMovable(struct page *page)
135{
bda807d4
MK
136 VM_BUG_ON_PAGE(!PageMovable(page), page);
137 /*
68f2736a
MWO
138 * This page still has the type of a movable page, but it's
139 * actually not movable any more.
bda807d4 140 */
68f2736a 141 page->mapping = (void *)PAGE_MAPPING_MOVABLE;
bda807d4
MK
142}
143EXPORT_SYMBOL(__ClearPageMovable);
144
24e2716f
JK
145/* Do not skip compaction more than 64 times */
146#define COMPACT_MAX_DEFER_SHIFT 6
147
148/*
149 * Compaction is deferred when compaction fails to result in a page
860b3272 150 * allocation success. 1 << compact_defer_shift, compactions are skipped up
24e2716f
JK
151 * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT
152 */
2271b016 153static void defer_compaction(struct zone *zone, int order)
24e2716f
JK
154{
155 zone->compact_considered = 0;
156 zone->compact_defer_shift++;
157
158 if (order < zone->compact_order_failed)
159 zone->compact_order_failed = order;
160
161 if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT)
162 zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT;
163
164 trace_mm_compaction_defer_compaction(zone, order);
165}
166
167/* Returns true if compaction should be skipped this time */
2271b016 168static bool compaction_deferred(struct zone *zone, int order)
24e2716f
JK
169{
170 unsigned long defer_limit = 1UL << zone->compact_defer_shift;
171
172 if (order < zone->compact_order_failed)
173 return false;
174
175 /* Avoid possible overflow */
62b35fe0 176 if (++zone->compact_considered >= defer_limit) {
24e2716f 177 zone->compact_considered = defer_limit;
24e2716f 178 return false;
62b35fe0 179 }
24e2716f
JK
180
181 trace_mm_compaction_deferred(zone, order);
182
183 return true;
184}
185
186/*
187 * Update defer tracking counters after successful compaction of given order,
188 * which means an allocation either succeeded (alloc_success == true) or is
189 * expected to succeed.
190 */
191void compaction_defer_reset(struct zone *zone, int order,
192 bool alloc_success)
193{
194 if (alloc_success) {
195 zone->compact_considered = 0;
196 zone->compact_defer_shift = 0;
197 }
198 if (order >= zone->compact_order_failed)
199 zone->compact_order_failed = order + 1;
200
201 trace_mm_compaction_defer_reset(zone, order);
202}
203
204/* Returns true if restarting compaction after many failures */
2271b016 205static bool compaction_restarting(struct zone *zone, int order)
24e2716f
JK
206{
207 if (order < zone->compact_order_failed)
208 return false;
209
210 return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT &&
211 zone->compact_considered >= 1UL << zone->compact_defer_shift;
212}
213
bb13ffeb
MG
214/* Returns true if the pageblock should be scanned for pages to isolate. */
215static inline bool isolation_suitable(struct compact_control *cc,
216 struct page *page)
217{
218 if (cc->ignore_skip_hint)
219 return true;
220
221 return !get_pageblock_skip(page);
222}
223
02333641
VB
224static void reset_cached_positions(struct zone *zone)
225{
226 zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn;
227 zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn;
623446e4 228 zone->compact_cached_free_pfn =
06b6640a 229 pageblock_start_pfn(zone_end_pfn(zone) - 1);
02333641
VB
230}
231
9721fd82
BW
232#ifdef CONFIG_SPARSEMEM
233/*
234 * If the PFN falls into an offline section, return the start PFN of the
235 * next online section. If the PFN falls into an online section or if
236 * there is no next online section, return 0.
237 */
238static unsigned long skip_offline_sections(unsigned long start_pfn)
239{
240 unsigned long start_nr = pfn_to_section_nr(start_pfn);
241
242 if (online_section_nr(start_nr))
243 return 0;
244
245 while (++start_nr <= __highest_present_section_nr) {
246 if (online_section_nr(start_nr))
247 return section_nr_to_pfn(start_nr);
248 }
249
250 return 0;
251}
252#else
253static unsigned long skip_offline_sections(unsigned long start_pfn)
254{
255 return 0;
256}
257#endif
258
21dc7e02 259/*
2271b016 260 * Compound pages of >= pageblock_order should consistently be skipped until
b527cfe5
VB
261 * released. It is always pointless to compact pages of such order (if they are
262 * migratable), and the pageblocks they occupy cannot contain any free pages.
21dc7e02 263 */
b527cfe5 264static bool pageblock_skip_persistent(struct page *page)
21dc7e02 265{
b527cfe5 266 if (!PageCompound(page))
21dc7e02 267 return false;
b527cfe5
VB
268
269 page = compound_head(page);
270
271 if (compound_order(page) >= pageblock_order)
272 return true;
273
274 return false;
21dc7e02
DR
275}
276
e332f741
MG
277static bool
278__reset_isolation_pfn(struct zone *zone, unsigned long pfn, bool check_source,
279 bool check_target)
280{
281 struct page *page = pfn_to_online_page(pfn);
6b0868c8 282 struct page *block_page;
e332f741
MG
283 struct page *end_page;
284 unsigned long block_pfn;
285
286 if (!page)
287 return false;
288 if (zone != page_zone(page))
289 return false;
290 if (pageblock_skip_persistent(page))
291 return false;
292
293 /*
294 * If skip is already cleared do no further checking once the
295 * restart points have been set.
296 */
297 if (check_source && check_target && !get_pageblock_skip(page))
298 return true;
299
300 /*
301 * If clearing skip for the target scanner, do not select a
302 * non-movable pageblock as the starting point.
303 */
304 if (!check_source && check_target &&
305 get_pageblock_migratetype(page) != MIGRATE_MOVABLE)
306 return false;
307
6b0868c8
MG
308 /* Ensure the start of the pageblock or zone is online and valid */
309 block_pfn = pageblock_start_pfn(pfn);
a2e9a5af
VB
310 block_pfn = max(block_pfn, zone->zone_start_pfn);
311 block_page = pfn_to_online_page(block_pfn);
6b0868c8
MG
312 if (block_page) {
313 page = block_page;
314 pfn = block_pfn;
315 }
316
317 /* Ensure the end of the pageblock or zone is online and valid */
a2e9a5af 318 block_pfn = pageblock_end_pfn(pfn) - 1;
6b0868c8
MG
319 block_pfn = min(block_pfn, zone_end_pfn(zone) - 1);
320 end_page = pfn_to_online_page(block_pfn);
321 if (!end_page)
322 return false;
323
e332f741
MG
324 /*
325 * Only clear the hint if a sample indicates there is either a
326 * free page or an LRU page in the block. One or other condition
327 * is necessary for the block to be a migration source/target.
328 */
e332f741 329 do {
859a85dd
MR
330 if (check_source && PageLRU(page)) {
331 clear_pageblock_skip(page);
332 return true;
333 }
e332f741 334
859a85dd
MR
335 if (check_target && PageBuddy(page)) {
336 clear_pageblock_skip(page);
337 return true;
e332f741
MG
338 }
339
340 page += (1 << PAGE_ALLOC_COSTLY_ORDER);
a2e9a5af 341 } while (page <= end_page);
e332f741
MG
342
343 return false;
344}
345
bb13ffeb
MG
346/*
347 * This function is called to clear all cached information on pageblocks that
348 * should be skipped for page isolation when the migrate and free page scanner
349 * meet.
350 */
62997027 351static void __reset_isolation_suitable(struct zone *zone)
bb13ffeb 352{
e332f741 353 unsigned long migrate_pfn = zone->zone_start_pfn;
6b0868c8 354 unsigned long free_pfn = zone_end_pfn(zone) - 1;
e332f741
MG
355 unsigned long reset_migrate = free_pfn;
356 unsigned long reset_free = migrate_pfn;
357 bool source_set = false;
358 bool free_set = false;
359
360 if (!zone->compact_blockskip_flush)
361 return;
bb13ffeb 362
62997027 363 zone->compact_blockskip_flush = false;
bb13ffeb 364
e332f741
MG
365 /*
366 * Walk the zone and update pageblock skip information. Source looks
367 * for PageLRU while target looks for PageBuddy. When the scanner
368 * is found, both PageBuddy and PageLRU are checked as the pageblock
369 * is suitable as both source and target.
370 */
371 for (; migrate_pfn < free_pfn; migrate_pfn += pageblock_nr_pages,
372 free_pfn -= pageblock_nr_pages) {
bb13ffeb
MG
373 cond_resched();
374
e332f741
MG
375 /* Update the migrate PFN */
376 if (__reset_isolation_pfn(zone, migrate_pfn, true, source_set) &&
377 migrate_pfn < reset_migrate) {
378 source_set = true;
379 reset_migrate = migrate_pfn;
380 zone->compact_init_migrate_pfn = reset_migrate;
381 zone->compact_cached_migrate_pfn[0] = reset_migrate;
382 zone->compact_cached_migrate_pfn[1] = reset_migrate;
383 }
bb13ffeb 384
e332f741
MG
385 /* Update the free PFN */
386 if (__reset_isolation_pfn(zone, free_pfn, free_set, true) &&
387 free_pfn > reset_free) {
388 free_set = true;
389 reset_free = free_pfn;
390 zone->compact_init_free_pfn = reset_free;
391 zone->compact_cached_free_pfn = reset_free;
392 }
bb13ffeb 393 }
02333641 394
e332f741
MG
395 /* Leave no distance if no suitable block was reset */
396 if (reset_migrate >= reset_free) {
397 zone->compact_cached_migrate_pfn[0] = migrate_pfn;
398 zone->compact_cached_migrate_pfn[1] = migrate_pfn;
399 zone->compact_cached_free_pfn = free_pfn;
400 }
bb13ffeb
MG
401}
402
62997027
MG
403void reset_isolation_suitable(pg_data_t *pgdat)
404{
405 int zoneid;
406
407 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
408 struct zone *zone = &pgdat->node_zones[zoneid];
409 if (!populated_zone(zone))
410 continue;
411
412 /* Only flush if a full compaction finished recently */
413 if (zone->compact_blockskip_flush)
414 __reset_isolation_suitable(zone);
415 }
416}
417
e380bebe
MG
418/*
419 * Sets the pageblock skip bit if it was clear. Note that this is a hint as
420 * locks are not required for read/writers. Returns true if it was already set.
421 */
590ccea8 422static bool test_and_set_skip(struct compact_control *cc, struct page *page)
e380bebe
MG
423{
424 bool skip;
425
590ccea8 426 /* Do not update if skip hint is being ignored */
e380bebe
MG
427 if (cc->ignore_skip_hint)
428 return false;
429
e380bebe
MG
430 skip = get_pageblock_skip(page);
431 if (!skip && !cc->no_set_skip_hint)
432 set_pageblock_skip(page);
433
434 return skip;
435}
436
437static void update_cached_migrate(struct compact_control *cc, unsigned long pfn)
438{
439 struct zone *zone = cc->zone;
440
441 pfn = pageblock_end_pfn(pfn);
442
443 /* Set for isolation rather than compaction */
444 if (cc->no_set_skip_hint)
445 return;
446
447 if (pfn > zone->compact_cached_migrate_pfn[0])
448 zone->compact_cached_migrate_pfn[0] = pfn;
449 if (cc->mode != MIGRATE_ASYNC &&
450 pfn > zone->compact_cached_migrate_pfn[1])
451 zone->compact_cached_migrate_pfn[1] = pfn;
452}
453
bb13ffeb
MG
454/*
455 * If no pages were isolated then mark this pageblock to be skipped in the
62997027 456 * future. The information is later cleared by __reset_isolation_suitable().
bb13ffeb 457 */
c89511ab 458static void update_pageblock_skip(struct compact_control *cc,
d097a6f6 459 struct page *page, unsigned long pfn)
bb13ffeb 460{
c89511ab 461 struct zone *zone = cc->zone;
6815bf3f 462
2583d671 463 if (cc->no_set_skip_hint)
6815bf3f
JK
464 return;
465
edc2ca61 466 set_pageblock_skip(page);
c89511ab 467
35979ef3 468 /* Update where async and sync compaction should restart */
e380bebe
MG
469 if (pfn < zone->compact_cached_free_pfn)
470 zone->compact_cached_free_pfn = pfn;
bb13ffeb
MG
471}
472#else
473static inline bool isolation_suitable(struct compact_control *cc,
474 struct page *page)
475{
476 return true;
477}
478
b527cfe5 479static inline bool pageblock_skip_persistent(struct page *page)
21dc7e02
DR
480{
481 return false;
482}
483
484static inline void update_pageblock_skip(struct compact_control *cc,
d097a6f6 485 struct page *page, unsigned long pfn)
bb13ffeb
MG
486{
487}
e380bebe
MG
488
489static void update_cached_migrate(struct compact_control *cc, unsigned long pfn)
490{
491}
492
590ccea8 493static bool test_and_set_skip(struct compact_control *cc, struct page *page)
e380bebe
MG
494{
495 return false;
496}
bb13ffeb
MG
497#endif /* CONFIG_COMPACTION */
498
8b44d279
VB
499/*
500 * Compaction requires the taking of some coarse locks that are potentially
cb2dcaf0
MG
501 * very heavily contended. For async compaction, trylock and record if the
502 * lock is contended. The lock will still be acquired but compaction will
503 * abort when the current block is finished regardless of success rate.
504 * Sync compaction acquires the lock.
8b44d279 505 *
cb2dcaf0 506 * Always returns true which makes it easier to track lock state in callers.
8b44d279 507 */
cb2dcaf0 508static bool compact_lock_irqsave(spinlock_t *lock, unsigned long *flags,
8b44d279 509 struct compact_control *cc)
77337ede 510 __acquires(lock)
2a1402aa 511{
cb2dcaf0
MG
512 /* Track if the lock is contended in async mode */
513 if (cc->mode == MIGRATE_ASYNC && !cc->contended) {
514 if (spin_trylock_irqsave(lock, *flags))
515 return true;
516
517 cc->contended = true;
8b44d279 518 }
1f9efdef 519
cb2dcaf0 520 spin_lock_irqsave(lock, *flags);
8b44d279 521 return true;
2a1402aa
MG
522}
523
c67fe375
MG
524/*
525 * Compaction requires the taking of some coarse locks that are potentially
8b44d279
VB
526 * very heavily contended. The lock should be periodically unlocked to avoid
527 * having disabled IRQs for a long time, even when there is nobody waiting on
528 * the lock. It might also be that allowing the IRQs will result in
d56c1584 529 * need_resched() becoming true. If scheduling is needed, compaction schedules.
8b44d279
VB
530 * Either compaction type will also abort if a fatal signal is pending.
531 * In either case if the lock was locked, it is dropped and not regained.
c67fe375 532 *
d56c1584
ML
533 * Returns true if compaction should abort due to fatal signal pending.
534 * Returns false when compaction can continue.
c67fe375 535 */
8b44d279
VB
536static bool compact_unlock_should_abort(spinlock_t *lock,
537 unsigned long flags, bool *locked, struct compact_control *cc)
c67fe375 538{
8b44d279
VB
539 if (*locked) {
540 spin_unlock_irqrestore(lock, flags);
541 *locked = false;
542 }
1f9efdef 543
8b44d279 544 if (fatal_signal_pending(current)) {
c3486f53 545 cc->contended = true;
8b44d279
VB
546 return true;
547 }
c67fe375 548
cf66f070 549 cond_resched();
be976572
VB
550
551 return false;
552}
553
85aa125f 554/*
9e4be470
JM
555 * Isolate free pages onto a private freelist. If @strict is true, will abort
556 * returning 0 on any invalid PFNs or non-free pages inside of the pageblock
557 * (even though it may still end up isolating some pages).
85aa125f 558 */
f40d1e42 559static unsigned long isolate_freepages_block(struct compact_control *cc,
e14c720e 560 unsigned long *start_pfn,
85aa125f
MN
561 unsigned long end_pfn,
562 struct list_head *freelist,
4fca9730 563 unsigned int stride,
85aa125f 564 bool strict)
748446bb 565{
b7aba698 566 int nr_scanned = 0, total_isolated = 0;
d097a6f6 567 struct page *cursor;
b8b2d825 568 unsigned long flags = 0;
f40d1e42 569 bool locked = false;
e14c720e 570 unsigned long blockpfn = *start_pfn;
66c64223 571 unsigned int order;
748446bb 572
4fca9730
MG
573 /* Strict mode is for isolation, speed is secondary */
574 if (strict)
575 stride = 1;
576
748446bb
MG
577 cursor = pfn_to_page(blockpfn);
578
f40d1e42 579 /* Isolate free pages. */
4fca9730 580 for (; blockpfn < end_pfn; blockpfn += stride, cursor += stride) {
66c64223 581 int isolated;
748446bb
MG
582 struct page *page = cursor;
583
8b44d279
VB
584 /*
585 * Periodically drop the lock (if held) regardless of its
586 * contention, to give chance to IRQs. Abort if fatal signal
d56c1584 587 * pending.
8b44d279 588 */
c036ddff 589 if (!(blockpfn % COMPACT_CLUSTER_MAX)
8b44d279
VB
590 && compact_unlock_should_abort(&cc->zone->lock, flags,
591 &locked, cc))
592 break;
593
b7aba698 594 nr_scanned++;
2af120bc 595
9fcd6d2e
VB
596 /*
597 * For compound pages such as THP and hugetlbfs, we can save
598 * potentially a lot of iterations if we skip them at once.
599 * The check is racy, but we can consider only valid values
600 * and the only danger is skipping too much.
601 */
602 if (PageCompound(page)) {
21dc7e02
DR
603 const unsigned int order = compound_order(page);
604
23baf831 605 if (likely(order <= MAX_ORDER)) {
21dc7e02
DR
606 blockpfn += (1UL << order) - 1;
607 cursor += (1UL << order) - 1;
56d48d8d 608 nr_scanned += (1UL << order) - 1;
9fcd6d2e 609 }
9fcd6d2e
VB
610 goto isolate_fail;
611 }
612
f40d1e42 613 if (!PageBuddy(page))
2af120bc 614 goto isolate_fail;
f40d1e42 615
85f73e6d 616 /* If we already hold the lock, we can skip some rechecking. */
69b7189f 617 if (!locked) {
cb2dcaf0 618 locked = compact_lock_irqsave(&cc->zone->lock,
8b44d279 619 &flags, cc);
f40d1e42 620
69b7189f
VB
621 /* Recheck this is a buddy page under lock */
622 if (!PageBuddy(page))
623 goto isolate_fail;
624 }
748446bb 625
66c64223 626 /* Found a free page, will break it into order-0 pages */
ab130f91 627 order = buddy_order(page);
66c64223 628 isolated = __isolate_free_page(page, order);
a4f04f2c
DR
629 if (!isolated)
630 break;
66c64223 631 set_page_private(page, order);
a4f04f2c 632
b717d6b9 633 nr_scanned += isolated - 1;
748446bb 634 total_isolated += isolated;
a4f04f2c 635 cc->nr_freepages += isolated;
66c64223
JK
636 list_add_tail(&page->lru, freelist);
637
a4f04f2c
DR
638 if (!strict && cc->nr_migratepages <= cc->nr_freepages) {
639 blockpfn += isolated;
640 break;
748446bb 641 }
a4f04f2c
DR
642 /* Advance to the end of split page */
643 blockpfn += isolated - 1;
644 cursor += isolated - 1;
645 continue;
2af120bc
LA
646
647isolate_fail:
648 if (strict)
649 break;
650 else
651 continue;
652
748446bb
MG
653 }
654
a4f04f2c
DR
655 if (locked)
656 spin_unlock_irqrestore(&cc->zone->lock, flags);
657
9fcd6d2e
VB
658 /*
659 * There is a tiny chance that we have read bogus compound_order(),
660 * so be careful to not go outside of the pageblock.
661 */
662 if (unlikely(blockpfn > end_pfn))
663 blockpfn = end_pfn;
664
e34d85f0
JK
665 trace_mm_compaction_isolate_freepages(*start_pfn, blockpfn,
666 nr_scanned, total_isolated);
667
e14c720e
VB
668 /* Record how far we have got within the block */
669 *start_pfn = blockpfn;
670
f40d1e42
MG
671 /*
672 * If strict isolation is requested by CMA then check that all the
673 * pages requested were isolated. If there were any failures, 0 is
674 * returned and CMA will fail.
675 */
2af120bc 676 if (strict && blockpfn < end_pfn)
f40d1e42
MG
677 total_isolated = 0;
678
7f354a54 679 cc->total_free_scanned += nr_scanned;
397487db 680 if (total_isolated)
010fc29a 681 count_compact_events(COMPACTISOLATED, total_isolated);
748446bb
MG
682 return total_isolated;
683}
684
85aa125f
MN
685/**
686 * isolate_freepages_range() - isolate free pages.
e8b098fc 687 * @cc: Compaction control structure.
85aa125f
MN
688 * @start_pfn: The first PFN to start isolating.
689 * @end_pfn: The one-past-last PFN.
690 *
691 * Non-free pages, invalid PFNs, or zone boundaries within the
692 * [start_pfn, end_pfn) range are considered errors, cause function to
693 * undo its actions and return zero.
694 *
695 * Otherwise, function returns one-past-the-last PFN of isolated page
696 * (which may be greater then end_pfn if end fell in a middle of
697 * a free page).
698 */
ff9543fd 699unsigned long
bb13ffeb
MG
700isolate_freepages_range(struct compact_control *cc,
701 unsigned long start_pfn, unsigned long end_pfn)
85aa125f 702{
e1409c32 703 unsigned long isolated, pfn, block_start_pfn, block_end_pfn;
85aa125f
MN
704 LIST_HEAD(freelist);
705
7d49d886 706 pfn = start_pfn;
06b6640a 707 block_start_pfn = pageblock_start_pfn(pfn);
e1409c32
JK
708 if (block_start_pfn < cc->zone->zone_start_pfn)
709 block_start_pfn = cc->zone->zone_start_pfn;
06b6640a 710 block_end_pfn = pageblock_end_pfn(pfn);
7d49d886
VB
711
712 for (; pfn < end_pfn; pfn += isolated,
e1409c32 713 block_start_pfn = block_end_pfn,
7d49d886 714 block_end_pfn += pageblock_nr_pages) {
e14c720e
VB
715 /* Protect pfn from changing by isolate_freepages_block */
716 unsigned long isolate_start_pfn = pfn;
85aa125f 717
85aa125f
MN
718 block_end_pfn = min(block_end_pfn, end_pfn);
719
58420016
JK
720 /*
721 * pfn could pass the block_end_pfn if isolated freepage
722 * is more than pageblock order. In this case, we adjust
723 * scanning range to right one.
724 */
725 if (pfn >= block_end_pfn) {
06b6640a
VB
726 block_start_pfn = pageblock_start_pfn(pfn);
727 block_end_pfn = pageblock_end_pfn(pfn);
58420016
JK
728 block_end_pfn = min(block_end_pfn, end_pfn);
729 }
730
e1409c32
JK
731 if (!pageblock_pfn_to_page(block_start_pfn,
732 block_end_pfn, cc->zone))
7d49d886
VB
733 break;
734
e14c720e 735 isolated = isolate_freepages_block(cc, &isolate_start_pfn,
4fca9730 736 block_end_pfn, &freelist, 0, true);
85aa125f
MN
737
738 /*
739 * In strict mode, isolate_freepages_block() returns 0 if
740 * there are any holes in the block (ie. invalid PFNs or
741 * non-free pages).
742 */
743 if (!isolated)
744 break;
745
746 /*
747 * If we managed to isolate pages, it is always (1 << n) *
748 * pageblock_nr_pages for some non-negative n. (Max order
749 * page may span two pageblocks).
750 */
751 }
752
66c64223 753 /* __isolate_free_page() does not map the pages */
4469ab98 754 split_map_pages(&freelist);
85aa125f
MN
755
756 if (pfn < end_pfn) {
757 /* Loop terminated early, cleanup. */
758 release_freepages(&freelist);
759 return 0;
760 }
761
762 /* We don't use freelists for anything. */
763 return pfn;
764}
765
748446bb 766/* Similar to reclaim, but different enough that they don't share logic */
4fbbb3fd 767static bool too_many_isolated(struct compact_control *cc)
748446bb 768{
4fbbb3fd 769 pg_data_t *pgdat = cc->zone->zone_pgdat;
d818fca1
MG
770 bool too_many;
771
bc693045 772 unsigned long active, inactive, isolated;
748446bb 773
5f438eee
AR
774 inactive = node_page_state(pgdat, NR_INACTIVE_FILE) +
775 node_page_state(pgdat, NR_INACTIVE_ANON);
776 active = node_page_state(pgdat, NR_ACTIVE_FILE) +
777 node_page_state(pgdat, NR_ACTIVE_ANON);
778 isolated = node_page_state(pgdat, NR_ISOLATED_FILE) +
779 node_page_state(pgdat, NR_ISOLATED_ANON);
748446bb 780
4fbbb3fd
JW
781 /*
782 * Allow GFP_NOFS to isolate past the limit set for regular
783 * compaction runs. This prevents an ABBA deadlock when other
784 * compactors have already isolated to the limit, but are
785 * blocked on filesystem locks held by the GFP_NOFS thread.
786 */
787 if (cc->gfp_mask & __GFP_FS) {
788 inactive >>= 3;
789 active >>= 3;
790 }
791
d818fca1
MG
792 too_many = isolated > (inactive + active) / 2;
793 if (!too_many)
794 wake_throttle_isolated(pgdat);
795
796 return too_many;
748446bb
MG
797}
798
2fe86e00 799/**
edc2ca61
VB
800 * isolate_migratepages_block() - isolate all migrate-able pages within
801 * a single pageblock
2fe86e00 802 * @cc: Compaction control structure.
edc2ca61
VB
803 * @low_pfn: The first PFN to isolate
804 * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock
89f6c88a 805 * @mode: Isolation mode to be used.
2fe86e00
MN
806 *
807 * Isolate all pages that can be migrated from the range specified by
edc2ca61 808 * [low_pfn, end_pfn). The range is expected to be within same pageblock.
c2ad7a1f 809 * Returns errno, like -EAGAIN or -EINTR in case e.g signal pending or congestion,
369fa227 810 * -ENOMEM in case we could not allocate a page, or 0.
c2ad7a1f 811 * cc->migrate_pfn will contain the next pfn to scan.
2fe86e00 812 *
edc2ca61 813 * The pages are isolated on cc->migratepages list (not required to be empty),
c2ad7a1f 814 * and cc->nr_migratepages is updated accordingly.
748446bb 815 */
c2ad7a1f 816static int
edc2ca61 817isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn,
89f6c88a 818 unsigned long end_pfn, isolate_mode_t mode)
748446bb 819{
5f438eee 820 pg_data_t *pgdat = cc->zone->zone_pgdat;
b7aba698 821 unsigned long nr_scanned = 0, nr_isolated = 0;
fa9add64 822 struct lruvec *lruvec;
b8b2d825 823 unsigned long flags = 0;
6168d0da 824 struct lruvec *locked = NULL;
56ae0bb3 825 struct folio *folio = NULL;
bb13ffeb 826 struct page *page = NULL, *valid_page = NULL;
89f6c88a 827 struct address_space *mapping;
e34d85f0 828 unsigned long start_pfn = low_pfn;
fdd048e1
VB
829 bool skip_on_failure = false;
830 unsigned long next_skip_pfn = 0;
e380bebe 831 bool skip_updated = false;
c2ad7a1f
OS
832 int ret = 0;
833
834 cc->migrate_pfn = low_pfn;
748446bb 835
748446bb
MG
836 /*
837 * Ensure that there are not too many pages isolated from the LRU
838 * list by either parallel reclaimers or compaction. If there are,
839 * delay for some time until fewer pages are isolated
840 */
4fbbb3fd 841 while (unlikely(too_many_isolated(cc))) {
d20bdd57
ZY
842 /* stop isolation if there are still pages not migrated */
843 if (cc->nr_migratepages)
c2ad7a1f 844 return -EAGAIN;
d20bdd57 845
f9e35b3b 846 /* async migration should just abort */
e0b9daeb 847 if (cc->mode == MIGRATE_ASYNC)
c2ad7a1f 848 return -EAGAIN;
f9e35b3b 849
c3f4a9a2 850 reclaim_throttle(pgdat, VMSCAN_THROTTLE_ISOLATED);
748446bb
MG
851
852 if (fatal_signal_pending(current))
c2ad7a1f 853 return -EINTR;
748446bb
MG
854 }
855
cf66f070 856 cond_resched();
aeef4b83 857
fdd048e1
VB
858 if (cc->direct_compaction && (cc->mode == MIGRATE_ASYNC)) {
859 skip_on_failure = true;
860 next_skip_pfn = block_end_pfn(low_pfn, cc->order);
861 }
862
748446bb 863 /* Time to isolate some pages for migration */
748446bb 864 for (; low_pfn < end_pfn; low_pfn++) {
29c0dde8 865
fdd048e1
VB
866 if (skip_on_failure && low_pfn >= next_skip_pfn) {
867 /*
868 * We have isolated all migration candidates in the
869 * previous order-aligned block, and did not skip it due
870 * to failure. We should migrate the pages now and
871 * hopefully succeed compaction.
872 */
873 if (nr_isolated)
874 break;
875
876 /*
877 * We failed to isolate in the previous order-aligned
878 * block. Set the new boundary to the end of the
879 * current block. Note we can't simply increase
880 * next_skip_pfn by 1 << order, as low_pfn might have
881 * been incremented by a higher number due to skipping
882 * a compound or a high-order buddy page in the
883 * previous loop iteration.
884 */
885 next_skip_pfn = block_end_pfn(low_pfn, cc->order);
886 }
887
8b44d279
VB
888 /*
889 * Periodically drop the lock (if held) regardless of its
670105a2
MG
890 * contention, to give chance to IRQs. Abort completely if
891 * a fatal signal is pending.
8b44d279 892 */
c036ddff 893 if (!(low_pfn % COMPACT_CLUSTER_MAX)) {
6168d0da
AS
894 if (locked) {
895 unlock_page_lruvec_irqrestore(locked, flags);
896 locked = NULL;
897 }
898
899 if (fatal_signal_pending(current)) {
900 cc->contended = true;
c2ad7a1f 901 ret = -EINTR;
6168d0da 902
6168d0da
AS
903 goto fatal_pending;
904 }
905
906 cond_resched();
670105a2 907 }
c67fe375 908
b7aba698 909 nr_scanned++;
748446bb 910
748446bb 911 page = pfn_to_page(low_pfn);
dc908600 912
e380bebe
MG
913 /*
914 * Check if the pageblock has already been marked skipped.
915 * Only the aligned PFN is checked as the caller isolates
916 * COMPACT_CLUSTER_MAX at a time so the second call must
917 * not falsely conclude that the block should be skipped.
918 */
ee0913c4 919 if (!valid_page && pageblock_aligned(low_pfn)) {
4af12d04 920 if (!isolation_suitable(cc, page)) {
e380bebe 921 low_pfn = end_pfn;
56ae0bb3 922 folio = NULL;
e380bebe
MG
923 goto isolate_abort;
924 }
bb13ffeb 925 valid_page = page;
e380bebe 926 }
bb13ffeb 927
369fa227 928 if (PageHuge(page) && cc->alloc_contig) {
1c06b6a5
BW
929 if (locked) {
930 unlock_page_lruvec_irqrestore(locked, flags);
931 locked = NULL;
932 }
933
ae37c7ff 934 ret = isolate_or_dissolve_huge_page(page, &cc->migratepages);
369fa227
OS
935
936 /*
937 * Fail isolation in case isolate_or_dissolve_huge_page()
938 * reports an error. In case of -ENOMEM, abort right away.
939 */
940 if (ret < 0) {
941 /* Do not report -EBUSY down the chain */
942 if (ret == -EBUSY)
943 ret = 0;
66fe1cf7 944 low_pfn += compound_nr(page) - 1;
56d48d8d 945 nr_scanned += compound_nr(page) - 1;
369fa227
OS
946 goto isolate_fail;
947 }
948
ae37c7ff
OS
949 if (PageHuge(page)) {
950 /*
951 * Hugepage was successfully isolated and placed
952 * on the cc->migratepages list.
953 */
56ae0bb3
KW
954 folio = page_folio(page);
955 low_pfn += folio_nr_pages(folio) - 1;
ae37c7ff
OS
956 goto isolate_success_no_list;
957 }
958
369fa227
OS
959 /*
960 * Ok, the hugepage was dissolved. Now these pages are
961 * Buddy and cannot be re-allocated because they are
962 * isolated. Fall-through as the check below handles
963 * Buddy pages.
964 */
965 }
966
6c14466c 967 /*
99c0fd5e
VB
968 * Skip if free. We read page order here without zone lock
969 * which is generally unsafe, but the race window is small and
970 * the worst thing that can happen is that we skip some
971 * potential isolation targets.
6c14466c 972 */
99c0fd5e 973 if (PageBuddy(page)) {
ab130f91 974 unsigned long freepage_order = buddy_order_unsafe(page);
99c0fd5e
VB
975
976 /*
977 * Without lock, we cannot be sure that what we got is
978 * a valid page order. Consider only values in the
979 * valid order range to prevent low_pfn overflow.
980 */
56d48d8d 981 if (freepage_order > 0 && freepage_order <= MAX_ORDER) {
99c0fd5e 982 low_pfn += (1UL << freepage_order) - 1;
56d48d8d
BW
983 nr_scanned += (1UL << freepage_order) - 1;
984 }
748446bb 985 continue;
99c0fd5e 986 }
748446bb 987
bc835011 988 /*
29c0dde8 989 * Regardless of being on LRU, compound pages such as THP and
1da2f328
RR
990 * hugetlbfs are not to be compacted unless we are attempting
991 * an allocation much larger than the huge page size (eg CMA).
992 * We can potentially save a lot of iterations if we skip them
993 * at once. The check is racy, but we can consider only valid
994 * values and the only danger is skipping too much.
bc835011 995 */
1da2f328 996 if (PageCompound(page) && !cc->alloc_contig) {
21dc7e02 997 const unsigned int order = compound_order(page);
edc2ca61 998
56d48d8d 999 if (likely(order <= MAX_ORDER)) {
21dc7e02 1000 low_pfn += (1UL << order) - 1;
56d48d8d
BW
1001 nr_scanned += (1UL << order) - 1;
1002 }
fdd048e1 1003 goto isolate_fail;
2a1402aa
MG
1004 }
1005
bda807d4
MK
1006 /*
1007 * Check may be lockless but that's ok as we recheck later.
1008 * It's possible to migrate LRU and non-lru movable pages.
1009 * Skip any other type of page
1010 */
1011 if (!PageLRU(page)) {
bda807d4
MK
1012 /*
1013 * __PageMovable can return false positive so we need
1014 * to verify it under page_lock.
1015 */
1016 if (unlikely(__PageMovable(page)) &&
1017 !PageIsolated(page)) {
1018 if (locked) {
6168d0da
AS
1019 unlock_page_lruvec_irqrestore(locked, flags);
1020 locked = NULL;
bda807d4
MK
1021 }
1022
56ae0bb3
KW
1023 if (isolate_movable_page(page, mode)) {
1024 folio = page_folio(page);
bda807d4 1025 goto isolate_success;
56ae0bb3 1026 }
bda807d4
MK
1027 }
1028
fdd048e1 1029 goto isolate_fail;
bda807d4 1030 }
29c0dde8 1031
829ae0f8
GS
1032 /*
1033 * Be careful not to clear PageLRU until after we're
1034 * sure the page is not being freed elsewhere -- the
1035 * page release code relies on it.
1036 */
56ae0bb3
KW
1037 folio = folio_get_nontail_page(page);
1038 if (unlikely(!folio))
829ae0f8
GS
1039 goto isolate_fail;
1040
119d6d59
DR
1041 /*
1042 * Migration will fail if an anonymous page is pinned in memory,
1043 * so avoid taking lru_lock and isolating it unnecessarily in an
1044 * admittedly racy check.
1045 */
56ae0bb3
KW
1046 mapping = folio_mapping(folio);
1047 if (!mapping && (folio_ref_count(folio) - 1) > folio_mapcount(folio))
829ae0f8 1048 goto isolate_fail_put;
119d6d59 1049
73e64c51
MH
1050 /*
1051 * Only allow to migrate anonymous pages in GFP_NOFS context
1052 * because those do not depend on fs locks.
1053 */
89f6c88a 1054 if (!(cc->gfp_mask & __GFP_FS) && mapping)
829ae0f8 1055 goto isolate_fail_put;
9df41314 1056
89f6c88a 1057 /* Only take pages on LRU: a check now makes later tests safe */
56ae0bb3 1058 if (!folio_test_lru(folio))
89f6c88a
HD
1059 goto isolate_fail_put;
1060
1061 /* Compaction might skip unevictable pages but CMA takes them */
56ae0bb3 1062 if (!(mode & ISOLATE_UNEVICTABLE) && folio_test_unevictable(folio))
89f6c88a
HD
1063 goto isolate_fail_put;
1064
1065 /*
1066 * To minimise LRU disruption, the caller can indicate with
1067 * ISOLATE_ASYNC_MIGRATE that it only wants to isolate pages
1068 * it will be able to migrate without blocking - clean pages
1069 * for the most part. PageWriteback would require blocking.
1070 */
56ae0bb3 1071 if ((mode & ISOLATE_ASYNC_MIGRATE) && folio_test_writeback(folio))
9df41314
AS
1072 goto isolate_fail_put;
1073
56ae0bb3 1074 if ((mode & ISOLATE_ASYNC_MIGRATE) && folio_test_dirty(folio)) {
89f6c88a
HD
1075 bool migrate_dirty;
1076
1077 /*
1078 * Only pages without mappings or that have a
9d0ddc0c 1079 * ->migrate_folio callback are possible to migrate
89f6c88a
HD
1080 * without blocking. However, we can be racing with
1081 * truncation so it's necessary to lock the page
1082 * to stabilise the mapping as truncation holds
1083 * the page lock until after the page is removed
1084 * from the page cache.
1085 */
56ae0bb3 1086 if (!folio_trylock(folio))
89f6c88a
HD
1087 goto isolate_fail_put;
1088
56ae0bb3 1089 mapping = folio_mapping(folio);
5490da4f 1090 migrate_dirty = !mapping ||
9d0ddc0c 1091 mapping->a_ops->migrate_folio;
56ae0bb3 1092 folio_unlock(folio);
89f6c88a
HD
1093 if (!migrate_dirty)
1094 goto isolate_fail_put;
1095 }
1096
56ae0bb3
KW
1097 /* Try isolate the folio */
1098 if (!folio_test_clear_lru(folio))
9df41314
AS
1099 goto isolate_fail_put;
1100
56ae0bb3 1101 lruvec = folio_lruvec(folio);
6168d0da 1102
69b7189f 1103 /* If we already hold the lock, we can skip some rechecking */
6168d0da
AS
1104 if (lruvec != locked) {
1105 if (locked)
1106 unlock_page_lruvec_irqrestore(locked, flags);
1107
1108 compact_lock_irqsave(&lruvec->lru_lock, &flags, cc);
1109 locked = lruvec;
6168d0da 1110
56ae0bb3 1111 lruvec_memcg_debug(lruvec, folio);
e380bebe 1112
590ccea8
MG
1113 /*
1114 * Try get exclusive access under lock. If marked for
1115 * skip, the scan is aborted unless the current context
1116 * is a rescan to reach the end of the pageblock.
1117 */
1118 if (!skip_updated && valid_page) {
e380bebe 1119 skip_updated = true;
590ccea8
MG
1120 if (test_and_set_skip(cc, valid_page) &&
1121 !cc->finish_pageblock) {
e380bebe 1122 goto isolate_abort;
590ccea8 1123 }
e380bebe 1124 }
2a1402aa 1125
29c0dde8 1126 /*
56ae0bb3
KW
1127 * folio become large since the non-locked check,
1128 * and it's on LRU.
29c0dde8 1129 */
56ae0bb3
KW
1130 if (unlikely(folio_test_large(folio) && !cc->alloc_contig)) {
1131 low_pfn += folio_nr_pages(folio) - 1;
1132 nr_scanned += folio_nr_pages(folio) - 1;
1133 folio_set_lru(folio);
9df41314 1134 goto isolate_fail_put;
69b7189f 1135 }
d99fd5fe 1136 }
fa9add64 1137
56ae0bb3
KW
1138 /* The folio is taken off the LRU */
1139 if (folio_test_large(folio))
1140 low_pfn += folio_nr_pages(folio) - 1;
bc835011 1141
748446bb 1142 /* Successfully isolated */
56ae0bb3
KW
1143 lruvec_del_folio(lruvec, folio);
1144 node_stat_mod_folio(folio,
1145 NR_ISOLATED_ANON + folio_is_file_lru(folio),
1146 folio_nr_pages(folio));
b6c75016
JK
1147
1148isolate_success:
56ae0bb3 1149 list_add(&folio->lru, &cc->migratepages);
ae37c7ff 1150isolate_success_no_list:
56ae0bb3
KW
1151 cc->nr_migratepages += folio_nr_pages(folio);
1152 nr_isolated += folio_nr_pages(folio);
1153 nr_scanned += folio_nr_pages(folio) - 1;
748446bb 1154
804d3121
MG
1155 /*
1156 * Avoid isolating too much unless this block is being
48731c84 1157 * fully scanned (e.g. dirty/writeback pages, parallel allocation)
cb2dcaf0
MG
1158 * or a lock is contended. For contention, isolate quickly to
1159 * potentially remove one source of contention.
804d3121 1160 */
38935861 1161 if (cc->nr_migratepages >= COMPACT_CLUSTER_MAX &&
48731c84 1162 !cc->finish_pageblock && !cc->contended) {
31b8384a 1163 ++low_pfn;
748446bb 1164 break;
31b8384a 1165 }
fdd048e1
VB
1166
1167 continue;
9df41314
AS
1168
1169isolate_fail_put:
1170 /* Avoid potential deadlock in freeing page under lru_lock */
1171 if (locked) {
6168d0da
AS
1172 unlock_page_lruvec_irqrestore(locked, flags);
1173 locked = NULL;
9df41314 1174 }
56ae0bb3 1175 folio_put(folio);
9df41314 1176
fdd048e1 1177isolate_fail:
369fa227 1178 if (!skip_on_failure && ret != -ENOMEM)
fdd048e1
VB
1179 continue;
1180
1181 /*
1182 * We have isolated some pages, but then failed. Release them
1183 * instead of migrating, as we cannot form the cc->order buddy
1184 * page anyway.
1185 */
1186 if (nr_isolated) {
1187 if (locked) {
6168d0da
AS
1188 unlock_page_lruvec_irqrestore(locked, flags);
1189 locked = NULL;
fdd048e1 1190 }
fdd048e1
VB
1191 putback_movable_pages(&cc->migratepages);
1192 cc->nr_migratepages = 0;
fdd048e1
VB
1193 nr_isolated = 0;
1194 }
1195
1196 if (low_pfn < next_skip_pfn) {
1197 low_pfn = next_skip_pfn - 1;
1198 /*
1199 * The check near the loop beginning would have updated
1200 * next_skip_pfn too, but this is a bit simpler.
1201 */
1202 next_skip_pfn += 1UL << cc->order;
1203 }
369fa227
OS
1204
1205 if (ret == -ENOMEM)
1206 break;
748446bb
MG
1207 }
1208
99c0fd5e
VB
1209 /*
1210 * The PageBuddy() check could have potentially brought us outside
1211 * the range to be scanned.
1212 */
1213 if (unlikely(low_pfn > end_pfn))
1214 low_pfn = end_pfn;
1215
56ae0bb3 1216 folio = NULL;
9df41314 1217
e380bebe 1218isolate_abort:
c67fe375 1219 if (locked)
6168d0da 1220 unlock_page_lruvec_irqrestore(locked, flags);
56ae0bb3
KW
1221 if (folio) {
1222 folio_set_lru(folio);
1223 folio_put(folio);
9df41314 1224 }
748446bb 1225
50b5b094 1226 /*
48731c84 1227 * Update the cached scanner pfn once the pageblock has been scanned.
804d3121
MG
1228 * Pages will either be migrated in which case there is no point
1229 * scanning in the near future or migration failed in which case the
1230 * failure reason may persist. The block is marked for skipping if
1231 * there were no pages isolated in the block or if the block is
1232 * rescanned twice in a row.
50b5b094 1233 */
48731c84 1234 if (low_pfn == end_pfn && (!nr_isolated || cc->finish_pageblock)) {
8b71b499 1235 if (!cc->no_set_skip_hint && valid_page && !skip_updated)
e380bebe
MG
1236 set_pageblock_skip(valid_page);
1237 update_cached_migrate(cc, low_pfn);
1238 }
bb13ffeb 1239
e34d85f0
JK
1240 trace_mm_compaction_isolate_migratepages(start_pfn, low_pfn,
1241 nr_scanned, nr_isolated);
b7aba698 1242
670105a2 1243fatal_pending:
7f354a54 1244 cc->total_migrate_scanned += nr_scanned;
397487db 1245 if (nr_isolated)
010fc29a 1246 count_compact_events(COMPACTISOLATED, nr_isolated);
397487db 1247
c2ad7a1f
OS
1248 cc->migrate_pfn = low_pfn;
1249
1250 return ret;
2fe86e00
MN
1251}
1252
edc2ca61
VB
1253/**
1254 * isolate_migratepages_range() - isolate migrate-able pages in a PFN range
1255 * @cc: Compaction control structure.
1256 * @start_pfn: The first PFN to start isolating.
1257 * @end_pfn: The one-past-last PFN.
1258 *
369fa227
OS
1259 * Returns -EAGAIN when contented, -EINTR in case of a signal pending, -ENOMEM
1260 * in case we could not allocate a page, or 0.
edc2ca61 1261 */
c2ad7a1f 1262int
edc2ca61
VB
1263isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn,
1264 unsigned long end_pfn)
1265{
e1409c32 1266 unsigned long pfn, block_start_pfn, block_end_pfn;
c2ad7a1f 1267 int ret = 0;
edc2ca61
VB
1268
1269 /* Scan block by block. First and last block may be incomplete */
1270 pfn = start_pfn;
06b6640a 1271 block_start_pfn = pageblock_start_pfn(pfn);
e1409c32
JK
1272 if (block_start_pfn < cc->zone->zone_start_pfn)
1273 block_start_pfn = cc->zone->zone_start_pfn;
06b6640a 1274 block_end_pfn = pageblock_end_pfn(pfn);
edc2ca61
VB
1275
1276 for (; pfn < end_pfn; pfn = block_end_pfn,
e1409c32 1277 block_start_pfn = block_end_pfn,
edc2ca61
VB
1278 block_end_pfn += pageblock_nr_pages) {
1279
1280 block_end_pfn = min(block_end_pfn, end_pfn);
1281
e1409c32
JK
1282 if (!pageblock_pfn_to_page(block_start_pfn,
1283 block_end_pfn, cc->zone))
edc2ca61
VB
1284 continue;
1285
c2ad7a1f
OS
1286 ret = isolate_migratepages_block(cc, pfn, block_end_pfn,
1287 ISOLATE_UNEVICTABLE);
edc2ca61 1288
c2ad7a1f 1289 if (ret)
edc2ca61 1290 break;
6ea41c0c 1291
38935861 1292 if (cc->nr_migratepages >= COMPACT_CLUSTER_MAX)
6ea41c0c 1293 break;
edc2ca61 1294 }
edc2ca61 1295
c2ad7a1f 1296 return ret;
edc2ca61
VB
1297}
1298
ff9543fd
MN
1299#endif /* CONFIG_COMPACTION || CONFIG_CMA */
1300#ifdef CONFIG_COMPACTION
018e9a49 1301
b682debd
VB
1302static bool suitable_migration_source(struct compact_control *cc,
1303 struct page *page)
1304{
282722b0
VB
1305 int block_mt;
1306
9bebefd5
MG
1307 if (pageblock_skip_persistent(page))
1308 return false;
1309
282722b0 1310 if ((cc->mode != MIGRATE_ASYNC) || !cc->direct_compaction)
b682debd
VB
1311 return true;
1312
282722b0
VB
1313 block_mt = get_pageblock_migratetype(page);
1314
1315 if (cc->migratetype == MIGRATE_MOVABLE)
1316 return is_migrate_movable(block_mt);
1317 else
1318 return block_mt == cc->migratetype;
b682debd
VB
1319}
1320
018e9a49 1321/* Returns true if the page is within a block suitable for migration to */
9f7e3387
VB
1322static bool suitable_migration_target(struct compact_control *cc,
1323 struct page *page)
018e9a49
AM
1324{
1325 /* If the page is a large free page, then disallow migration */
1326 if (PageBuddy(page)) {
1327 /*
1328 * We are checking page_order without zone->lock taken. But
1329 * the only small danger is that we skip a potentially suitable
1330 * pageblock, so it's not worth to check order for valid range.
1331 */
ab130f91 1332 if (buddy_order_unsafe(page) >= pageblock_order)
018e9a49
AM
1333 return false;
1334 }
1335
1ef36db2
YX
1336 if (cc->ignore_block_suitable)
1337 return true;
1338
018e9a49 1339 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
b682debd 1340 if (is_migrate_movable(get_pageblock_migratetype(page)))
018e9a49
AM
1341 return true;
1342
1343 /* Otherwise skip the block */
1344 return false;
1345}
1346
70b44595
MG
1347static inline unsigned int
1348freelist_scan_limit(struct compact_control *cc)
1349{
dd7ef7bd
QC
1350 unsigned short shift = BITS_PER_LONG - 1;
1351
1352 return (COMPACT_CLUSTER_MAX >> min(shift, cc->fast_search_fail)) + 1;
70b44595
MG
1353}
1354
f2849aa0
VB
1355/*
1356 * Test whether the free scanner has reached the same or lower pageblock than
1357 * the migration scanner, and compaction should thus terminate.
1358 */
1359static inline bool compact_scanners_met(struct compact_control *cc)
1360{
1361 return (cc->free_pfn >> pageblock_order)
1362 <= (cc->migrate_pfn >> pageblock_order);
1363}
1364
5a811889
MG
1365/*
1366 * Used when scanning for a suitable migration target which scans freelists
1367 * in reverse. Reorders the list such as the unscanned pages are scanned
1368 * first on the next iteration of the free scanner
1369 */
1370static void
1371move_freelist_head(struct list_head *freelist, struct page *freepage)
1372{
1373 LIST_HEAD(sublist);
1374
1375 if (!list_is_last(freelist, &freepage->lru)) {
1376 list_cut_before(&sublist, freelist, &freepage->lru);
d2155fe5 1377 list_splice_tail(&sublist, freelist);
5a811889
MG
1378 }
1379}
1380
1381/*
1382 * Similar to move_freelist_head except used by the migration scanner
1383 * when scanning forward. It's possible for these list operations to
1384 * move against each other if they search the free list exactly in
1385 * lockstep.
1386 */
70b44595
MG
1387static void
1388move_freelist_tail(struct list_head *freelist, struct page *freepage)
1389{
1390 LIST_HEAD(sublist);
1391
1392 if (!list_is_first(freelist, &freepage->lru)) {
1393 list_cut_position(&sublist, freelist, &freepage->lru);
d2155fe5 1394 list_splice_tail(&sublist, freelist);
70b44595
MG
1395 }
1396}
1397
5a811889 1398static void
be21b32a 1399fast_isolate_around(struct compact_control *cc, unsigned long pfn)
5a811889
MG
1400{
1401 unsigned long start_pfn, end_pfn;
6e2b7044 1402 struct page *page;
5a811889
MG
1403
1404 /* Do not search around if there are enough pages already */
1405 if (cc->nr_freepages >= cc->nr_migratepages)
1406 return;
1407
1408 /* Minimise scanning during async compaction */
1409 if (cc->direct_compaction && cc->mode == MIGRATE_ASYNC)
1410 return;
1411
1412 /* Pageblock boundaries */
6e2b7044
VB
1413 start_pfn = max(pageblock_start_pfn(pfn), cc->zone->zone_start_pfn);
1414 end_pfn = min(pageblock_end_pfn(pfn), zone_end_pfn(cc->zone));
1415
1416 page = pageblock_pfn_to_page(start_pfn, end_pfn, cc->zone);
1417 if (!page)
1418 return;
5a811889 1419
be21b32a 1420 isolate_freepages_block(cc, &start_pfn, end_pfn, &cc->freepages, 1, false);
5a811889
MG
1421
1422 /* Skip this pageblock in the future as it's full or nearly full */
cf650342 1423 if (start_pfn == end_pfn)
5a811889 1424 set_pageblock_skip(page);
be21b32a
NA
1425
1426 return;
5a811889
MG
1427}
1428
dbe2d4e4
MG
1429/* Search orders in round-robin fashion */
1430static int next_search_order(struct compact_control *cc, int order)
1431{
1432 order--;
1433 if (order < 0)
1434 order = cc->order - 1;
1435
1436 /* Search wrapped around? */
1437 if (order == cc->search_order) {
1438 cc->search_order--;
1439 if (cc->search_order < 0)
1440 cc->search_order = cc->order - 1;
1441 return -1;
1442 }
1443
1444 return order;
1445}
1446
2dbd9005 1447static void fast_isolate_freepages(struct compact_control *cc)
5a811889 1448{
b55ca526 1449 unsigned int limit = max(1U, freelist_scan_limit(cc) >> 1);
447ba886 1450 unsigned int nr_scanned = 0, total_isolated = 0;
74e21484 1451 unsigned long low_pfn, min_pfn, highest = 0;
5a811889
MG
1452 unsigned long nr_isolated = 0;
1453 unsigned long distance;
1454 struct page *page = NULL;
1455 bool scan_start = false;
1456 int order;
1457
1458 /* Full compaction passes in a negative order */
1459 if (cc->order <= 0)
2dbd9005 1460 return;
5a811889
MG
1461
1462 /*
1463 * If starting the scan, use a deeper search and use the highest
1464 * PFN found if a suitable one is not found.
1465 */
e332f741 1466 if (cc->free_pfn >= cc->zone->compact_init_free_pfn) {
5a811889
MG
1467 limit = pageblock_nr_pages >> 1;
1468 scan_start = true;
1469 }
1470
1471 /*
1472 * Preferred point is in the top quarter of the scan space but take
1473 * a pfn from the top half if the search is problematic.
1474 */
1475 distance = (cc->free_pfn - cc->migrate_pfn);
1476 low_pfn = pageblock_start_pfn(cc->free_pfn - (distance >> 2));
1477 min_pfn = pageblock_start_pfn(cc->free_pfn - (distance >> 1));
1478
1479 if (WARN_ON_ONCE(min_pfn > low_pfn))
1480 low_pfn = min_pfn;
1481
dbe2d4e4
MG
1482 /*
1483 * Search starts from the last successful isolation order or the next
1484 * order to search after a previous failure
1485 */
1486 cc->search_order = min_t(unsigned int, cc->order - 1, cc->search_order);
1487
1488 for (order = cc->search_order;
1489 !page && order >= 0;
1490 order = next_search_order(cc, order)) {
5a811889
MG
1491 struct free_area *area = &cc->zone->free_area[order];
1492 struct list_head *freelist;
1493 struct page *freepage;
1494 unsigned long flags;
1495 unsigned int order_scanned = 0;
74e21484 1496 unsigned long high_pfn = 0;
5a811889
MG
1497
1498 if (!area->nr_free)
1499 continue;
1500
1501 spin_lock_irqsave(&cc->zone->lock, flags);
1502 freelist = &area->free_list[MIGRATE_MOVABLE];
1503 list_for_each_entry_reverse(freepage, freelist, lru) {
1504 unsigned long pfn;
1505
1506 order_scanned++;
1507 nr_scanned++;
1508 pfn = page_to_pfn(freepage);
1509
1510 if (pfn >= highest)
6e2b7044
VB
1511 highest = max(pageblock_start_pfn(pfn),
1512 cc->zone->zone_start_pfn);
5a811889
MG
1513
1514 if (pfn >= low_pfn) {
1515 cc->fast_search_fail = 0;
dbe2d4e4 1516 cc->search_order = order;
5a811889
MG
1517 page = freepage;
1518 break;
1519 }
1520
1521 if (pfn >= min_pfn && pfn > high_pfn) {
1522 high_pfn = pfn;
1523
1524 /* Shorten the scan if a candidate is found */
1525 limit >>= 1;
1526 }
1527
1528 if (order_scanned >= limit)
1529 break;
1530 }
1531
1532 /* Use a minimum pfn if a preferred one was not found */
1533 if (!page && high_pfn) {
1534 page = pfn_to_page(high_pfn);
1535
1536 /* Update freepage for the list reorder below */
1537 freepage = page;
1538 }
1539
1540 /* Reorder to so a future search skips recent pages */
1541 move_freelist_head(freelist, freepage);
1542
1543 /* Isolate the page if available */
1544 if (page) {
1545 if (__isolate_free_page(page, order)) {
1546 set_page_private(page, order);
1547 nr_isolated = 1 << order;
b717d6b9 1548 nr_scanned += nr_isolated - 1;
447ba886 1549 total_isolated += nr_isolated;
5a811889
MG
1550 cc->nr_freepages += nr_isolated;
1551 list_add_tail(&page->lru, &cc->freepages);
1552 count_compact_events(COMPACTISOLATED, nr_isolated);
1553 } else {
1554 /* If isolation fails, abort the search */
5b56d996 1555 order = cc->search_order + 1;
5a811889
MG
1556 page = NULL;
1557 }
1558 }
1559
1560 spin_unlock_irqrestore(&cc->zone->lock, flags);
1561
a8d13355
BW
1562 /* Skip fast search if enough freepages isolated */
1563 if (cc->nr_freepages >= cc->nr_migratepages)
1564 break;
1565
5a811889 1566 /*
b55ca526 1567 * Smaller scan on next order so the total scan is related
5a811889
MG
1568 * to freelist_scan_limit.
1569 */
1570 if (order_scanned >= limit)
b55ca526 1571 limit = max(1U, limit >> 1);
5a811889
MG
1572 }
1573
447ba886
BW
1574 trace_mm_compaction_fast_isolate_freepages(min_pfn, cc->free_pfn,
1575 nr_scanned, total_isolated);
1576
5a811889
MG
1577 if (!page) {
1578 cc->fast_search_fail++;
1579 if (scan_start) {
1580 /*
1581 * Use the highest PFN found above min. If one was
f3867755 1582 * not found, be pessimistic for direct compaction
5a811889
MG
1583 * and use the min mark.
1584 */
ca2864e5 1585 if (highest >= min_pfn) {
5a811889
MG
1586 page = pfn_to_page(highest);
1587 cc->free_pfn = highest;
1588 } else {
e577c8b6 1589 if (cc->direct_compaction && pfn_valid(min_pfn)) {
73a6e474 1590 page = pageblock_pfn_to_page(min_pfn,
6e2b7044
VB
1591 min(pageblock_end_pfn(min_pfn),
1592 zone_end_pfn(cc->zone)),
73a6e474 1593 cc->zone);
5a811889
MG
1594 cc->free_pfn = min_pfn;
1595 }
1596 }
1597 }
1598 }
1599
d097a6f6
MG
1600 if (highest && highest >= cc->zone->compact_cached_free_pfn) {
1601 highest -= pageblock_nr_pages;
5a811889 1602 cc->zone->compact_cached_free_pfn = highest;
d097a6f6 1603 }
5a811889
MG
1604
1605 cc->total_free_scanned += nr_scanned;
1606 if (!page)
2dbd9005 1607 return;
5a811889
MG
1608
1609 low_pfn = page_to_pfn(page);
be21b32a 1610 fast_isolate_around(cc, low_pfn);
5a811889
MG
1611}
1612
2fe86e00 1613/*
ff9543fd
MN
1614 * Based on information in the current compact_control, find blocks
1615 * suitable for isolating free pages from and then isolate them.
2fe86e00 1616 */
edc2ca61 1617static void isolate_freepages(struct compact_control *cc)
2fe86e00 1618{
edc2ca61 1619 struct zone *zone = cc->zone;
ff9543fd 1620 struct page *page;
c96b9e50 1621 unsigned long block_start_pfn; /* start of current pageblock */
e14c720e 1622 unsigned long isolate_start_pfn; /* exact pfn we start at */
c96b9e50
VB
1623 unsigned long block_end_pfn; /* end of current pageblock */
1624 unsigned long low_pfn; /* lowest pfn scanner is able to scan */
ff9543fd 1625 struct list_head *freelist = &cc->freepages;
4fca9730 1626 unsigned int stride;
2fe86e00 1627
5a811889 1628 /* Try a small search of the free lists for a candidate */
00bc102f 1629 fast_isolate_freepages(cc);
5a811889
MG
1630 if (cc->nr_freepages)
1631 goto splitmap;
1632
ff9543fd
MN
1633 /*
1634 * Initialise the free scanner. The starting point is where we last
49e068f0 1635 * successfully isolated from, zone-cached value, or the end of the
e14c720e
VB
1636 * zone when isolating for the first time. For looping we also need
1637 * this pfn aligned down to the pageblock boundary, because we do
c96b9e50
VB
1638 * block_start_pfn -= pageblock_nr_pages in the for loop.
1639 * For ending point, take care when isolating in last pageblock of a
a1c1dbeb 1640 * zone which ends in the middle of a pageblock.
49e068f0
VB
1641 * The low boundary is the end of the pageblock the migration scanner
1642 * is using.
ff9543fd 1643 */
e14c720e 1644 isolate_start_pfn = cc->free_pfn;
5a811889 1645 block_start_pfn = pageblock_start_pfn(isolate_start_pfn);
c96b9e50
VB
1646 block_end_pfn = min(block_start_pfn + pageblock_nr_pages,
1647 zone_end_pfn(zone));
06b6640a 1648 low_pfn = pageblock_end_pfn(cc->migrate_pfn);
4fca9730 1649 stride = cc->mode == MIGRATE_ASYNC ? COMPACT_CLUSTER_MAX : 1;
2fe86e00 1650
ff9543fd
MN
1651 /*
1652 * Isolate free pages until enough are available to migrate the
1653 * pages on cc->migratepages. We stop searching if the migrate
1654 * and free page scanners meet or enough free pages are isolated.
1655 */
f5f61a32 1656 for (; block_start_pfn >= low_pfn;
c96b9e50 1657 block_end_pfn = block_start_pfn,
e14c720e
VB
1658 block_start_pfn -= pageblock_nr_pages,
1659 isolate_start_pfn = block_start_pfn) {
4fca9730
MG
1660 unsigned long nr_isolated;
1661
f6ea3adb
DR
1662 /*
1663 * This can iterate a massively long zone without finding any
cb810ad2 1664 * suitable migration targets, so periodically check resched.
f6ea3adb 1665 */
c036ddff 1666 if (!(block_start_pfn % (COMPACT_CLUSTER_MAX * pageblock_nr_pages)))
cf66f070 1667 cond_resched();
f6ea3adb 1668
7d49d886
VB
1669 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
1670 zone);
1671 if (!page)
ff9543fd
MN
1672 continue;
1673
1674 /* Check the block is suitable for migration */
9f7e3387 1675 if (!suitable_migration_target(cc, page))
ff9543fd 1676 continue;
68e3e926 1677
bb13ffeb
MG
1678 /* If isolation recently failed, do not retry */
1679 if (!isolation_suitable(cc, page))
1680 continue;
1681
e14c720e 1682 /* Found a block suitable for isolating free pages from. */
4fca9730
MG
1683 nr_isolated = isolate_freepages_block(cc, &isolate_start_pfn,
1684 block_end_pfn, freelist, stride, false);
ff9543fd 1685
d097a6f6
MG
1686 /* Update the skip hint if the full pageblock was scanned */
1687 if (isolate_start_pfn == block_end_pfn)
1688 update_pageblock_skip(cc, page, block_start_pfn);
1689
cb2dcaf0
MG
1690 /* Are enough freepages isolated? */
1691 if (cc->nr_freepages >= cc->nr_migratepages) {
a46cbf3b
DR
1692 if (isolate_start_pfn >= block_end_pfn) {
1693 /*
1694 * Restart at previous pageblock if more
1695 * freepages can be isolated next time.
1696 */
f5f61a32
VB
1697 isolate_start_pfn =
1698 block_start_pfn - pageblock_nr_pages;
a46cbf3b 1699 }
be976572 1700 break;
a46cbf3b 1701 } else if (isolate_start_pfn < block_end_pfn) {
f5f61a32 1702 /*
a46cbf3b
DR
1703 * If isolation failed early, do not continue
1704 * needlessly.
f5f61a32 1705 */
a46cbf3b 1706 break;
f5f61a32 1707 }
4fca9730
MG
1708
1709 /* Adjust stride depending on isolation */
1710 if (nr_isolated) {
1711 stride = 1;
1712 continue;
1713 }
1714 stride = min_t(unsigned int, COMPACT_CLUSTER_MAX, stride << 1);
ff9543fd
MN
1715 }
1716
7ed695e0 1717 /*
f5f61a32
VB
1718 * Record where the free scanner will restart next time. Either we
1719 * broke from the loop and set isolate_start_pfn based on the last
1720 * call to isolate_freepages_block(), or we met the migration scanner
1721 * and the loop terminated due to isolate_start_pfn < low_pfn
7ed695e0 1722 */
f5f61a32 1723 cc->free_pfn = isolate_start_pfn;
5a811889
MG
1724
1725splitmap:
1726 /* __isolate_free_page() does not map the pages */
1727 split_map_pages(freelist);
748446bb
MG
1728}
1729
1730/*
1731 * This is a migrate-callback that "allocates" freepages by taking pages
1732 * from the isolated freelists in the block we are migrating to.
1733 */
4e096ae1 1734static struct folio *compaction_alloc(struct folio *src, unsigned long data)
748446bb
MG
1735{
1736 struct compact_control *cc = (struct compact_control *)data;
4e096ae1 1737 struct folio *dst;
748446bb 1738
748446bb 1739 if (list_empty(&cc->freepages)) {
cb2dcaf0 1740 isolate_freepages(cc);
748446bb
MG
1741
1742 if (list_empty(&cc->freepages))
1743 return NULL;
1744 }
1745
4e096ae1
MWO
1746 dst = list_entry(cc->freepages.next, struct folio, lru);
1747 list_del(&dst->lru);
748446bb
MG
1748 cc->nr_freepages--;
1749
4e096ae1 1750 return dst;
748446bb
MG
1751}
1752
1753/*
d53aea3d
DR
1754 * This is a migrate-callback that "frees" freepages back to the isolated
1755 * freelist. All pages on the freelist are from the same zone, so there is no
1756 * special handling needed for NUMA.
1757 */
4e096ae1 1758static void compaction_free(struct folio *dst, unsigned long data)
d53aea3d
DR
1759{
1760 struct compact_control *cc = (struct compact_control *)data;
1761
4e096ae1 1762 list_add(&dst->lru, &cc->freepages);
d53aea3d
DR
1763 cc->nr_freepages++;
1764}
1765
ff9543fd
MN
1766/* possible outcome of isolate_migratepages */
1767typedef enum {
1768 ISOLATE_ABORT, /* Abort compaction now */
1769 ISOLATE_NONE, /* No pages isolated, continue scanning */
1770 ISOLATE_SUCCESS, /* Pages isolated, migrate */
1771} isolate_migrate_t;
1772
5bbe3547
EM
1773/*
1774 * Allow userspace to control policy on scanning the unevictable LRU for
1775 * compactable pages.
1776 */
48fe8ab8
MC
1777static int sysctl_compact_unevictable_allowed __read_mostly = CONFIG_COMPACT_UNEVICTABLE_DEFAULT;
1778/*
1779 * Tunable for proactive compaction. It determines how
1780 * aggressively the kernel should compact memory in the
1781 * background. It takes values in the range [0, 100].
1782 */
1783static unsigned int __read_mostly sysctl_compaction_proactiveness = 20;
1784static int sysctl_extfrag_threshold = 500;
8b9167cd 1785static int __read_mostly sysctl_compact_memory;
5bbe3547 1786
70b44595
MG
1787static inline void
1788update_fast_start_pfn(struct compact_control *cc, unsigned long pfn)
1789{
1790 if (cc->fast_start_pfn == ULONG_MAX)
1791 return;
1792
1793 if (!cc->fast_start_pfn)
1794 cc->fast_start_pfn = pfn;
1795
1796 cc->fast_start_pfn = min(cc->fast_start_pfn, pfn);
1797}
1798
1799static inline unsigned long
1800reinit_migrate_pfn(struct compact_control *cc)
1801{
1802 if (!cc->fast_start_pfn || cc->fast_start_pfn == ULONG_MAX)
1803 return cc->migrate_pfn;
1804
1805 cc->migrate_pfn = cc->fast_start_pfn;
1806 cc->fast_start_pfn = ULONG_MAX;
1807
1808 return cc->migrate_pfn;
1809}
1810
1811/*
1812 * Briefly search the free lists for a migration source that already has
1813 * some free pages to reduce the number of pages that need migration
1814 * before a pageblock is free.
1815 */
1816static unsigned long fast_find_migrateblock(struct compact_control *cc)
1817{
1818 unsigned int limit = freelist_scan_limit(cc);
1819 unsigned int nr_scanned = 0;
1820 unsigned long distance;
1821 unsigned long pfn = cc->migrate_pfn;
1822 unsigned long high_pfn;
1823 int order;
15d28d0d 1824 bool found_block = false;
70b44595
MG
1825
1826 /* Skip hints are relied on to avoid repeats on the fast search */
1827 if (cc->ignore_skip_hint)
1828 return pfn;
1829
f9d7fc1a
MG
1830 /*
1831 * If the pageblock should be finished then do not select a different
1832 * pageblock.
1833 */
1834 if (cc->finish_pageblock)
1835 return pfn;
1836
70b44595
MG
1837 /*
1838 * If the migrate_pfn is not at the start of a zone or the start
1839 * of a pageblock then assume this is a continuation of a previous
1840 * scan restarted due to COMPACT_CLUSTER_MAX.
1841 */
1842 if (pfn != cc->zone->zone_start_pfn && pfn != pageblock_start_pfn(pfn))
1843 return pfn;
1844
1845 /*
1846 * For smaller orders, just linearly scan as the number of pages
1847 * to migrate should be relatively small and does not necessarily
1848 * justify freeing up a large block for a small allocation.
1849 */
1850 if (cc->order <= PAGE_ALLOC_COSTLY_ORDER)
1851 return pfn;
1852
1853 /*
1854 * Only allow kcompactd and direct requests for movable pages to
1855 * quickly clear out a MOVABLE pageblock for allocation. This
1856 * reduces the risk that a large movable pageblock is freed for
1857 * an unmovable/reclaimable small allocation.
1858 */
1859 if (cc->direct_compaction && cc->migratetype != MIGRATE_MOVABLE)
1860 return pfn;
1861
1862 /*
1863 * When starting the migration scanner, pick any pageblock within the
1864 * first half of the search space. Otherwise try and pick a pageblock
1865 * within the first eighth to reduce the chances that a migration
1866 * target later becomes a source.
1867 */
1868 distance = (cc->free_pfn - cc->migrate_pfn) >> 1;
1869 if (cc->migrate_pfn != cc->zone->zone_start_pfn)
1870 distance >>= 2;
1871 high_pfn = pageblock_start_pfn(cc->migrate_pfn + distance);
1872
1873 for (order = cc->order - 1;
15d28d0d 1874 order >= PAGE_ALLOC_COSTLY_ORDER && !found_block && nr_scanned < limit;
70b44595
MG
1875 order--) {
1876 struct free_area *area = &cc->zone->free_area[order];
1877 struct list_head *freelist;
1878 unsigned long flags;
1879 struct page *freepage;
1880
1881 if (!area->nr_free)
1882 continue;
1883
1884 spin_lock_irqsave(&cc->zone->lock, flags);
1885 freelist = &area->free_list[MIGRATE_MOVABLE];
1886 list_for_each_entry(freepage, freelist, lru) {
1887 unsigned long free_pfn;
1888
15d28d0d
WY
1889 if (nr_scanned++ >= limit) {
1890 move_freelist_tail(freelist, freepage);
1891 break;
1892 }
1893
70b44595
MG
1894 free_pfn = page_to_pfn(freepage);
1895 if (free_pfn < high_pfn) {
70b44595
MG
1896 /*
1897 * Avoid if skipped recently. Ideally it would
1898 * move to the tail but even safe iteration of
1899 * the list assumes an entry is deleted, not
1900 * reordered.
1901 */
15d28d0d 1902 if (get_pageblock_skip(freepage))
70b44595 1903 continue;
70b44595
MG
1904
1905 /* Reorder to so a future search skips recent pages */
1906 move_freelist_tail(freelist, freepage);
1907
e380bebe 1908 update_fast_start_pfn(cc, free_pfn);
70b44595 1909 pfn = pageblock_start_pfn(free_pfn);
bbe832b9
RY
1910 if (pfn < cc->zone->zone_start_pfn)
1911 pfn = cc->zone->zone_start_pfn;
70b44595 1912 cc->fast_search_fail = 0;
15d28d0d 1913 found_block = true;
70b44595
MG
1914 break;
1915 }
70b44595
MG
1916 }
1917 spin_unlock_irqrestore(&cc->zone->lock, flags);
1918 }
1919
1920 cc->total_migrate_scanned += nr_scanned;
1921
1922 /*
1923 * If fast scanning failed then use a cached entry for a page block
1924 * that had free pages as the basis for starting a linear scan.
1925 */
15d28d0d
WY
1926 if (!found_block) {
1927 cc->fast_search_fail++;
70b44595 1928 pfn = reinit_migrate_pfn(cc);
15d28d0d 1929 }
70b44595
MG
1930 return pfn;
1931}
1932
ff9543fd 1933/*
edc2ca61
VB
1934 * Isolate all pages that can be migrated from the first suitable block,
1935 * starting at the block pointed to by the migrate scanner pfn within
1936 * compact_control.
ff9543fd 1937 */
32aaf055 1938static isolate_migrate_t isolate_migratepages(struct compact_control *cc)
ff9543fd 1939{
e1409c32
JK
1940 unsigned long block_start_pfn;
1941 unsigned long block_end_pfn;
1942 unsigned long low_pfn;
edc2ca61
VB
1943 struct page *page;
1944 const isolate_mode_t isolate_mode =
5bbe3547 1945 (sysctl_compact_unevictable_allowed ? ISOLATE_UNEVICTABLE : 0) |
1d2047fe 1946 (cc->mode != MIGRATE_SYNC ? ISOLATE_ASYNC_MIGRATE : 0);
70b44595 1947 bool fast_find_block;
ff9543fd 1948
edc2ca61
VB
1949 /*
1950 * Start at where we last stopped, or beginning of the zone as
70b44595
MG
1951 * initialized by compact_zone(). The first failure will use
1952 * the lowest PFN as the starting point for linear scanning.
edc2ca61 1953 */
70b44595 1954 low_pfn = fast_find_migrateblock(cc);
06b6640a 1955 block_start_pfn = pageblock_start_pfn(low_pfn);
32aaf055
PL
1956 if (block_start_pfn < cc->zone->zone_start_pfn)
1957 block_start_pfn = cc->zone->zone_start_pfn;
ff9543fd 1958
70b44595
MG
1959 /*
1960 * fast_find_migrateblock marks a pageblock skipped so to avoid
1961 * the isolation_suitable check below, check whether the fast
1962 * search was successful.
1963 */
1964 fast_find_block = low_pfn != cc->migrate_pfn && !cc->fast_search_fail;
1965
ff9543fd 1966 /* Only scan within a pageblock boundary */
06b6640a 1967 block_end_pfn = pageblock_end_pfn(low_pfn);
ff9543fd 1968
edc2ca61
VB
1969 /*
1970 * Iterate over whole pageblocks until we find the first suitable.
1971 * Do not cross the free scanner.
1972 */
e1409c32 1973 for (; block_end_pfn <= cc->free_pfn;
70b44595 1974 fast_find_block = false,
c2ad7a1f 1975 cc->migrate_pfn = low_pfn = block_end_pfn,
e1409c32
JK
1976 block_start_pfn = block_end_pfn,
1977 block_end_pfn += pageblock_nr_pages) {
ff9543fd 1978
edc2ca61
VB
1979 /*
1980 * This can potentially iterate a massively long zone with
1981 * many pageblocks unsuitable, so periodically check if we
cb810ad2 1982 * need to schedule.
edc2ca61 1983 */
c036ddff 1984 if (!(low_pfn % (COMPACT_CLUSTER_MAX * pageblock_nr_pages)))
cf66f070 1985 cond_resched();
ff9543fd 1986
32aaf055
PL
1987 page = pageblock_pfn_to_page(block_start_pfn,
1988 block_end_pfn, cc->zone);
9721fd82
BW
1989 if (!page) {
1990 unsigned long next_pfn;
1991
1992 next_pfn = skip_offline_sections(block_start_pfn);
1993 if (next_pfn)
1994 block_end_pfn = min(next_pfn, cc->free_pfn);
edc2ca61 1995 continue;
9721fd82 1996 }
edc2ca61 1997
e380bebe
MG
1998 /*
1999 * If isolation recently failed, do not retry. Only check the
2000 * pageblock once. COMPACT_CLUSTER_MAX causes a pageblock
2001 * to be visited multiple times. Assume skip was checked
2002 * before making it "skip" so other compaction instances do
2003 * not scan the same block.
2004 */
ee0913c4 2005 if (pageblock_aligned(low_pfn) &&
e380bebe 2006 !fast_find_block && !isolation_suitable(cc, page))
edc2ca61
VB
2007 continue;
2008
2009 /*
556162bf
ML
2010 * For async direct compaction, only scan the pageblocks of the
2011 * same migratetype without huge pages. Async direct compaction
2012 * is optimistic to see if the minimum amount of work satisfies
2013 * the allocation. The cached PFN is updated as it's possible
2014 * that all remaining blocks between source and target are
2015 * unsuitable and the compaction scanners fail to meet.
edc2ca61 2016 */
9bebefd5
MG
2017 if (!suitable_migration_source(cc, page)) {
2018 update_cached_migrate(cc, block_end_pfn);
edc2ca61 2019 continue;
9bebefd5 2020 }
edc2ca61
VB
2021
2022 /* Perform the isolation */
c2ad7a1f
OS
2023 if (isolate_migratepages_block(cc, low_pfn, block_end_pfn,
2024 isolate_mode))
edc2ca61
VB
2025 return ISOLATE_ABORT;
2026
2027 /*
2028 * Either we isolated something and proceed with migration. Or
2029 * we failed and compact_zone should decide if we should
2030 * continue or not.
2031 */
2032 break;
2033 }
2034
edc2ca61 2035 return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE;
ff9543fd
MN
2036}
2037
21c527a3
YB
2038/*
2039 * order == -1 is expected when compacting via
2040 * /proc/sys/vm/compact_memory
2041 */
2042static inline bool is_via_compact_memory(int order)
2043{
2044 return order == -1;
2045}
2046
b4a0215e
KW
2047/*
2048 * Determine whether kswapd is (or recently was!) running on this node.
2049 *
2050 * pgdat_kswapd_lock() pins pgdat->kswapd, so a concurrent kswapd_stop() can't
2051 * zero it.
2052 */
facdaa91
NG
2053static bool kswapd_is_running(pg_data_t *pgdat)
2054{
b4a0215e
KW
2055 bool running;
2056
2057 pgdat_kswapd_lock(pgdat);
2058 running = pgdat->kswapd && task_is_running(pgdat->kswapd);
2059 pgdat_kswapd_unlock(pgdat);
2060
2061 return running;
facdaa91
NG
2062}
2063
2064/*
2065 * A zone's fragmentation score is the external fragmentation wrt to the
40d7e203
CTR
2066 * COMPACTION_HPAGE_ORDER. It returns a value in the range [0, 100].
2067 */
2068static unsigned int fragmentation_score_zone(struct zone *zone)
2069{
2070 return extfrag_for_order(zone, COMPACTION_HPAGE_ORDER);
2071}
2072
2073/*
2074 * A weighted zone's fragmentation score is the external fragmentation
2075 * wrt to the COMPACTION_HPAGE_ORDER scaled by the zone's size. It
2076 * returns a value in the range [0, 100].
facdaa91
NG
2077 *
2078 * The scaling factor ensures that proactive compaction focuses on larger
2079 * zones like ZONE_NORMAL, rather than smaller, specialized zones like
2080 * ZONE_DMA32. For smaller zones, the score value remains close to zero,
2081 * and thus never exceeds the high threshold for proactive compaction.
2082 */
40d7e203 2083static unsigned int fragmentation_score_zone_weighted(struct zone *zone)
facdaa91
NG
2084{
2085 unsigned long score;
2086
40d7e203 2087 score = zone->present_pages * fragmentation_score_zone(zone);
facdaa91
NG
2088 return div64_ul(score, zone->zone_pgdat->node_present_pages + 1);
2089}
2090
2091/*
2092 * The per-node proactive (background) compaction process is started by its
2093 * corresponding kcompactd thread when the node's fragmentation score
2094 * exceeds the high threshold. The compaction process remains active till
2095 * the node's score falls below the low threshold, or one of the back-off
2096 * conditions is met.
2097 */
d34c0a75 2098static unsigned int fragmentation_score_node(pg_data_t *pgdat)
facdaa91 2099{
d34c0a75 2100 unsigned int score = 0;
facdaa91
NG
2101 int zoneid;
2102
2103 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
2104 struct zone *zone;
2105
2106 zone = &pgdat->node_zones[zoneid];
9e552271
BW
2107 if (!populated_zone(zone))
2108 continue;
40d7e203 2109 score += fragmentation_score_zone_weighted(zone);
facdaa91
NG
2110 }
2111
2112 return score;
2113}
2114
d34c0a75 2115static unsigned int fragmentation_score_wmark(pg_data_t *pgdat, bool low)
facdaa91 2116{
d34c0a75 2117 unsigned int wmark_low;
facdaa91
NG
2118
2119 /*
f0953a1b
IM
2120 * Cap the low watermark to avoid excessive compaction
2121 * activity in case a user sets the proactiveness tunable
facdaa91
NG
2122 * close to 100 (maximum).
2123 */
d34c0a75
NG
2124 wmark_low = max(100U - sysctl_compaction_proactiveness, 5U);
2125 return low ? wmark_low : min(wmark_low + 10, 100U);
facdaa91
NG
2126}
2127
2128static bool should_proactive_compact_node(pg_data_t *pgdat)
2129{
2130 int wmark_high;
2131
2132 if (!sysctl_compaction_proactiveness || kswapd_is_running(pgdat))
2133 return false;
2134
2135 wmark_high = fragmentation_score_wmark(pgdat, false);
2136 return fragmentation_score_node(pgdat) > wmark_high;
2137}
2138
40cacbcb 2139static enum compact_result __compact_finished(struct compact_control *cc)
748446bb 2140{
8fb74b9f 2141 unsigned int order;
d39773a0 2142 const int migratetype = cc->migratetype;
cb2dcaf0 2143 int ret;
748446bb 2144
753341a4 2145 /* Compaction run completes if the migrate and free scanner meet */
f2849aa0 2146 if (compact_scanners_met(cc)) {
55b7c4c9 2147 /* Let the next compaction start anew. */
40cacbcb 2148 reset_cached_positions(cc->zone);
55b7c4c9 2149
62997027
MG
2150 /*
2151 * Mark that the PG_migrate_skip information should be cleared
accf6242 2152 * by kswapd when it goes to sleep. kcompactd does not set the
62997027
MG
2153 * flag itself as the decision to be clear should be directly
2154 * based on an allocation request.
2155 */
accf6242 2156 if (cc->direct_compaction)
40cacbcb 2157 cc->zone->compact_blockskip_flush = true;
62997027 2158
c8f7de0b
MH
2159 if (cc->whole_zone)
2160 return COMPACT_COMPLETE;
2161 else
2162 return COMPACT_PARTIAL_SKIPPED;
bb13ffeb 2163 }
748446bb 2164
facdaa91
NG
2165 if (cc->proactive_compaction) {
2166 int score, wmark_low;
2167 pg_data_t *pgdat;
2168
2169 pgdat = cc->zone->zone_pgdat;
2170 if (kswapd_is_running(pgdat))
2171 return COMPACT_PARTIAL_SKIPPED;
2172
2173 score = fragmentation_score_zone(cc->zone);
2174 wmark_low = fragmentation_score_wmark(pgdat, true);
2175
2176 if (score > wmark_low)
2177 ret = COMPACT_CONTINUE;
2178 else
2179 ret = COMPACT_SUCCESS;
2180
2181 goto out;
2182 }
2183
21c527a3 2184 if (is_via_compact_memory(cc->order))
56de7263
MG
2185 return COMPACT_CONTINUE;
2186
efe771c7
MG
2187 /*
2188 * Always finish scanning a pageblock to reduce the possibility of
2189 * fallbacks in the future. This is particularly important when
2190 * migration source is unmovable/reclaimable but it's not worth
2191 * special casing.
2192 */
ee0913c4 2193 if (!pageblock_aligned(cc->migrate_pfn))
efe771c7 2194 return COMPACT_CONTINUE;
baf6a9a1 2195
56de7263 2196 /* Direct compactor: Is a suitable page free? */
cb2dcaf0 2197 ret = COMPACT_NO_SUITABLE_PAGE;
23baf831 2198 for (order = cc->order; order <= MAX_ORDER; order++) {
40cacbcb 2199 struct free_area *area = &cc->zone->free_area[order];
2149cdae 2200 bool can_steal;
8fb74b9f
MG
2201
2202 /* Job done if page is free of the right migratetype */
b03641af 2203 if (!free_area_empty(area, migratetype))
cf378319 2204 return COMPACT_SUCCESS;
8fb74b9f 2205
2149cdae
JK
2206#ifdef CONFIG_CMA
2207 /* MIGRATE_MOVABLE can fallback on MIGRATE_CMA */
2208 if (migratetype == MIGRATE_MOVABLE &&
b03641af 2209 !free_area_empty(area, MIGRATE_CMA))
cf378319 2210 return COMPACT_SUCCESS;
2149cdae
JK
2211#endif
2212 /*
2213 * Job done if allocation would steal freepages from
2214 * other migratetype buddy lists.
2215 */
2216 if (find_suitable_fallback(area, order, migratetype,
fa599c44 2217 true, &can_steal) != -1)
baf6a9a1 2218 /*
fa599c44
ML
2219 * Movable pages are OK in any pageblock. If we are
2220 * stealing for a non-movable allocation, make sure
2221 * we finish compacting the current pageblock first
2222 * (which is assured by the above migrate_pfn align
2223 * check) so it is as free as possible and we won't
2224 * have to steal another one soon.
baf6a9a1 2225 */
fa599c44 2226 return COMPACT_SUCCESS;
56de7263
MG
2227 }
2228
facdaa91 2229out:
cb2dcaf0
MG
2230 if (cc->contended || fatal_signal_pending(current))
2231 ret = COMPACT_CONTENDED;
2232
2233 return ret;
837d026d
JK
2234}
2235
40cacbcb 2236static enum compact_result compact_finished(struct compact_control *cc)
837d026d
JK
2237{
2238 int ret;
2239
40cacbcb
MG
2240 ret = __compact_finished(cc);
2241 trace_mm_compaction_finished(cc->zone, cc->order, ret);
837d026d
JK
2242 if (ret == COMPACT_NO_SUITABLE_PAGE)
2243 ret = COMPACT_CONTINUE;
2244
2245 return ret;
748446bb
MG
2246}
2247
3cf04937
JW
2248static bool __compaction_suitable(struct zone *zone, int order,
2249 int highest_zoneidx,
2250 unsigned long wmark_target)
3e7d3449 2251{
3e7d3449 2252 unsigned long watermark;
3e7d3449 2253 /*
9861a62c 2254 * Watermarks for order-0 must be met for compaction to be able to
984fdba6
VB
2255 * isolate free pages for migration targets. This means that the
2256 * watermark and alloc_flags have to match, or be more pessimistic than
2257 * the check in __isolate_free_page(). We don't use the direct
2258 * compactor's alloc_flags, as they are not relevant for freepage
97a225e6
JK
2259 * isolation. We however do use the direct compactor's highest_zoneidx
2260 * to skip over zones where lowmem reserves would prevent allocation
2261 * even if compaction succeeds.
8348faf9
VB
2262 * For costly orders, we require low watermark instead of min for
2263 * compaction to proceed to increase its chances.
d883c6cf
JK
2264 * ALLOC_CMA is used, as pages in CMA pageblocks are considered
2265 * suitable migration targets
3e7d3449 2266 */
8348faf9
VB
2267 watermark = (order > PAGE_ALLOC_COSTLY_ORDER) ?
2268 low_wmark_pages(zone) : min_wmark_pages(zone);
2269 watermark += compact_gap(order);
3cf04937
JW
2270 return __zone_watermark_ok(zone, 0, watermark, highest_zoneidx,
2271 ALLOC_CMA, wmark_target);
cc5c9f09
VB
2272}
2273
2b1a20c3
HS
2274/*
2275 * compaction_suitable: Is this suitable to run compaction on this zone now?
2b1a20c3 2276 */
3cf04937 2277bool compaction_suitable(struct zone *zone, int order, int highest_zoneidx)
cc5c9f09 2278{
3cf04937
JW
2279 enum compact_result compact_result;
2280 bool suitable;
cc5c9f09 2281
3cf04937
JW
2282 suitable = __compaction_suitable(zone, order, highest_zoneidx,
2283 zone_page_state(zone, NR_FREE_PAGES));
3e7d3449
MG
2284 /*
2285 * fragmentation index determines if allocation failures are due to
2286 * low memory or external fragmentation
2287 *
ebff3980
VB
2288 * index of -1000 would imply allocations might succeed depending on
2289 * watermarks, but we already failed the high-order watermark check
3e7d3449
MG
2290 * index towards 0 implies failure is due to lack of memory
2291 * index towards 1000 implies failure is due to fragmentation
2292 *
20311420
VB
2293 * Only compact if a failure would be due to fragmentation. Also
2294 * ignore fragindex for non-costly orders where the alternative to
2295 * a successful reclaim/compaction is OOM. Fragindex and the
2296 * vm.extfrag_threshold sysctl is meant as a heuristic to prevent
2297 * excessive compaction for costly orders, but it should not be at the
2298 * expense of system stability.
3e7d3449 2299 */
3cf04937
JW
2300 if (suitable) {
2301 compact_result = COMPACT_CONTINUE;
2302 if (order > PAGE_ALLOC_COSTLY_ORDER) {
2303 int fragindex = fragmentation_index(zone, order);
2304
2305 if (fragindex >= 0 &&
2306 fragindex <= sysctl_extfrag_threshold) {
2307 suitable = false;
2308 compact_result = COMPACT_NOT_SUITABLE_ZONE;
2309 }
2310 }
2311 } else {
2312 compact_result = COMPACT_SKIPPED;
cc5c9f09 2313 }
837d026d 2314
3cf04937 2315 trace_mm_compaction_suitable(zone, order, compact_result);
837d026d 2316
3cf04937 2317 return suitable;
837d026d
JK
2318}
2319
86a294a8
MH
2320bool compaction_zonelist_suitable(struct alloc_context *ac, int order,
2321 int alloc_flags)
2322{
2323 struct zone *zone;
2324 struct zoneref *z;
2325
2326 /*
2327 * Make sure at least one zone would pass __compaction_suitable if we continue
2328 * retrying the reclaim.
2329 */
97a225e6
JK
2330 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist,
2331 ac->highest_zoneidx, ac->nodemask) {
86a294a8 2332 unsigned long available;
86a294a8
MH
2333
2334 /*
2335 * Do not consider all the reclaimable memory because we do not
2336 * want to trash just for a single high order allocation which
2337 * is even not guaranteed to appear even if __compaction_suitable
2338 * is happy about the watermark check.
2339 */
5a1c84b4 2340 available = zone_reclaimable_pages(zone) / order;
86a294a8 2341 available += zone_page_state_snapshot(zone, NR_FREE_PAGES);
e8606320 2342 if (__compaction_suitable(zone, order, ac->highest_zoneidx,
3cf04937 2343 available))
86a294a8
MH
2344 return true;
2345 }
2346
2347 return false;
2348}
2349
5e1f0f09
MG
2350static enum compact_result
2351compact_zone(struct compact_control *cc, struct capture_control *capc)
748446bb 2352{
ea7ab982 2353 enum compact_result ret;
40cacbcb
MG
2354 unsigned long start_pfn = cc->zone->zone_start_pfn;
2355 unsigned long end_pfn = zone_end_pfn(cc->zone);
566e54e1 2356 unsigned long last_migrated_pfn;
e0b9daeb 2357 const bool sync = cc->mode != MIGRATE_ASYNC;
8854c55f 2358 bool update_cached;
84b328aa 2359 unsigned int nr_succeeded = 0;
748446bb 2360
a94b5252
YS
2361 /*
2362 * These counters track activities during zone compaction. Initialize
2363 * them before compacting a new zone.
2364 */
2365 cc->total_migrate_scanned = 0;
2366 cc->total_free_scanned = 0;
2367 cc->nr_migratepages = 0;
2368 cc->nr_freepages = 0;
2369 INIT_LIST_HEAD(&cc->freepages);
2370 INIT_LIST_HEAD(&cc->migratepages);
2371
01c0bfe0 2372 cc->migratetype = gfp_migratetype(cc->gfp_mask);
e8606320
JW
2373
2374 if (!is_via_compact_memory(cc->order)) {
2375 unsigned long watermark;
2376
2377 /* Allocation can already succeed, nothing to do */
2378 watermark = wmark_pages(cc->zone,
2379 cc->alloc_flags & ALLOC_WMARK_MASK);
2380 if (zone_watermark_ok(cc->zone, cc->order, watermark,
2381 cc->highest_zoneidx, cc->alloc_flags))
2382 return COMPACT_SUCCESS;
2383
e8606320 2384 /* Compaction is likely to fail */
3cf04937
JW
2385 if (!compaction_suitable(cc->zone, cc->order,
2386 cc->highest_zoneidx))
2387 return COMPACT_SKIPPED;
e8606320 2388 }
c46649de 2389
d3132e4b
VB
2390 /*
2391 * Clear pageblock skip if there were failures recently and compaction
accf6242 2392 * is about to be retried after being deferred.
d3132e4b 2393 */
40cacbcb
MG
2394 if (compaction_restarting(cc->zone, cc->order))
2395 __reset_isolation_suitable(cc->zone);
d3132e4b 2396
c89511ab
MG
2397 /*
2398 * Setup to move all movable pages to the end of the zone. Used cached
06ed2998
VB
2399 * information on where the scanners should start (unless we explicitly
2400 * want to compact the whole zone), but check that it is initialised
2401 * by ensuring the values are within zone boundaries.
c89511ab 2402 */
70b44595 2403 cc->fast_start_pfn = 0;
06ed2998 2404 if (cc->whole_zone) {
c89511ab 2405 cc->migrate_pfn = start_pfn;
06ed2998
VB
2406 cc->free_pfn = pageblock_start_pfn(end_pfn - 1);
2407 } else {
40cacbcb
MG
2408 cc->migrate_pfn = cc->zone->compact_cached_migrate_pfn[sync];
2409 cc->free_pfn = cc->zone->compact_cached_free_pfn;
06ed2998
VB
2410 if (cc->free_pfn < start_pfn || cc->free_pfn >= end_pfn) {
2411 cc->free_pfn = pageblock_start_pfn(end_pfn - 1);
40cacbcb 2412 cc->zone->compact_cached_free_pfn = cc->free_pfn;
06ed2998
VB
2413 }
2414 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn >= end_pfn) {
2415 cc->migrate_pfn = start_pfn;
40cacbcb
MG
2416 cc->zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn;
2417 cc->zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn;
06ed2998 2418 }
c8f7de0b 2419
e332f741 2420 if (cc->migrate_pfn <= cc->zone->compact_init_migrate_pfn)
06ed2998
VB
2421 cc->whole_zone = true;
2422 }
c8f7de0b 2423
566e54e1 2424 last_migrated_pfn = 0;
748446bb 2425
8854c55f
MG
2426 /*
2427 * Migrate has separate cached PFNs for ASYNC and SYNC* migration on
2428 * the basis that some migrations will fail in ASYNC mode. However,
2429 * if the cached PFNs match and pageblocks are skipped due to having
2430 * no isolation candidates, then the sync state does not matter.
2431 * Until a pageblock with isolation candidates is found, keep the
2432 * cached PFNs in sync to avoid revisiting the same blocks.
2433 */
2434 update_cached = !sync &&
2435 cc->zone->compact_cached_migrate_pfn[0] == cc->zone->compact_cached_migrate_pfn[1];
2436
abd4349f 2437 trace_mm_compaction_begin(cc, start_pfn, end_pfn, sync);
0eb927c0 2438
361a2a22
MK
2439 /* lru_add_drain_all could be expensive with involving other CPUs */
2440 lru_add_drain();
748446bb 2441
40cacbcb 2442 while ((ret = compact_finished(cc)) == COMPACT_CONTINUE) {
9d502c1c 2443 int err;
19d3cf9d 2444 unsigned long iteration_start_pfn = cc->migrate_pfn;
748446bb 2445
804d3121 2446 /*
48731c84
MG
2447 * Avoid multiple rescans of the same pageblock which can
2448 * happen if a page cannot be isolated (dirty/writeback in
2449 * async mode) or if the migrated pages are being allocated
2450 * before the pageblock is cleared. The first rescan will
2451 * capture the entire pageblock for migration. If it fails,
2452 * it'll be marked skip and scanning will proceed as normal.
804d3121 2453 */
48731c84 2454 cc->finish_pageblock = false;
804d3121 2455 if (pageblock_start_pfn(last_migrated_pfn) ==
19d3cf9d 2456 pageblock_start_pfn(iteration_start_pfn)) {
48731c84 2457 cc->finish_pageblock = true;
804d3121
MG
2458 }
2459
cfccd2e6 2460rescan:
32aaf055 2461 switch (isolate_migratepages(cc)) {
f9e35b3b 2462 case ISOLATE_ABORT:
2d1e1041 2463 ret = COMPACT_CONTENDED;
5733c7d1 2464 putback_movable_pages(&cc->migratepages);
e64c5237 2465 cc->nr_migratepages = 0;
f9e35b3b
MG
2466 goto out;
2467 case ISOLATE_NONE:
8854c55f
MG
2468 if (update_cached) {
2469 cc->zone->compact_cached_migrate_pfn[1] =
2470 cc->zone->compact_cached_migrate_pfn[0];
2471 }
2472
fdaf7f5c
VB
2473 /*
2474 * We haven't isolated and migrated anything, but
2475 * there might still be unflushed migrations from
2476 * previous cc->order aligned block.
2477 */
2478 goto check_drain;
f9e35b3b 2479 case ISOLATE_SUCCESS:
8854c55f 2480 update_cached = false;
19d3cf9d 2481 last_migrated_pfn = iteration_start_pfn;
f9e35b3b 2482 }
748446bb 2483
d53aea3d 2484 err = migrate_pages(&cc->migratepages, compaction_alloc,
e0b9daeb 2485 compaction_free, (unsigned long)cc, cc->mode,
84b328aa 2486 MR_COMPACTION, &nr_succeeded);
748446bb 2487
abd4349f 2488 trace_mm_compaction_migratepages(cc, nr_succeeded);
748446bb 2489
f8c9301f
VB
2490 /* All pages were either migrated or will be released */
2491 cc->nr_migratepages = 0;
9d502c1c 2492 if (err) {
5733c7d1 2493 putback_movable_pages(&cc->migratepages);
7ed695e0
VB
2494 /*
2495 * migrate_pages() may return -ENOMEM when scanners meet
2496 * and we want compact_finished() to detect it
2497 */
f2849aa0 2498 if (err == -ENOMEM && !compact_scanners_met(cc)) {
2d1e1041 2499 ret = COMPACT_CONTENDED;
4bf2bba3
DR
2500 goto out;
2501 }
fdd048e1 2502 /*
cfccd2e6 2503 * If an ASYNC or SYNC_LIGHT fails to migrate a page
9ecc5fc5
MG
2504 * within the current order-aligned block and
2505 * fast_find_migrateblock may be used then scan the
cfccd2e6
MG
2506 * remainder of the pageblock. This will mark the
2507 * pageblock "skip" to avoid rescanning in the near
2508 * future. This will isolate more pages than necessary
2509 * for the request but avoid loops due to
2510 * fast_find_migrateblock revisiting blocks that were
2511 * recently partially scanned.
fdd048e1 2512 */
539aa041 2513 if (!pageblock_aligned(cc->migrate_pfn) &&
9ecc5fc5 2514 !cc->ignore_skip_hint && !cc->finish_pageblock &&
539aa041 2515 (cc->mode < MIGRATE_SYNC)) {
cfccd2e6
MG
2516 cc->finish_pageblock = true;
2517
2518 /*
2519 * Draining pcplists does not help THP if
2520 * any page failed to migrate. Even after
2521 * drain, the pageblock will not be free.
2522 */
2523 if (cc->order == COMPACTION_HPAGE_ORDER)
2524 last_migrated_pfn = 0;
2525
2526 goto rescan;
fdd048e1 2527 }
748446bb 2528 }
fdaf7f5c 2529
16b3be40
MG
2530 /* Stop if a page has been captured */
2531 if (capc && capc->page) {
2532 ret = COMPACT_SUCCESS;
2533 break;
2534 }
2535
fdaf7f5c
VB
2536check_drain:
2537 /*
2538 * Has the migration scanner moved away from the previous
2539 * cc->order aligned block where we migrated from? If yes,
2540 * flush the pages that were freed, so that they can merge and
2541 * compact_finished() can detect immediately if allocation
2542 * would succeed.
2543 */
566e54e1 2544 if (cc->order > 0 && last_migrated_pfn) {
fdaf7f5c 2545 unsigned long current_block_start =
06b6640a 2546 block_start_pfn(cc->migrate_pfn, cc->order);
fdaf7f5c 2547
566e54e1 2548 if (last_migrated_pfn < current_block_start) {
b01b2141 2549 lru_add_drain_cpu_zone(cc->zone);
fdaf7f5c 2550 /* No more flushing until we migrate again */
566e54e1 2551 last_migrated_pfn = 0;
fdaf7f5c
VB
2552 }
2553 }
748446bb
MG
2554 }
2555
f9e35b3b 2556out:
6bace090
VB
2557 /*
2558 * Release free pages and update where the free scanner should restart,
2559 * so we don't leave any returned pages behind in the next attempt.
2560 */
2561 if (cc->nr_freepages > 0) {
2562 unsigned long free_pfn = release_freepages(&cc->freepages);
2563
2564 cc->nr_freepages = 0;
2565 VM_BUG_ON(free_pfn == 0);
2566 /* The cached pfn is always the first in a pageblock */
06b6640a 2567 free_pfn = pageblock_start_pfn(free_pfn);
6bace090
VB
2568 /*
2569 * Only go back, not forward. The cached pfn might have been
2570 * already reset to zone end in compact_finished()
2571 */
40cacbcb
MG
2572 if (free_pfn > cc->zone->compact_cached_free_pfn)
2573 cc->zone->compact_cached_free_pfn = free_pfn;
6bace090 2574 }
748446bb 2575
7f354a54
DR
2576 count_compact_events(COMPACTMIGRATE_SCANNED, cc->total_migrate_scanned);
2577 count_compact_events(COMPACTFREE_SCANNED, cc->total_free_scanned);
2578
abd4349f 2579 trace_mm_compaction_end(cc, start_pfn, end_pfn, sync, ret);
0eb927c0 2580
753ec50d
BW
2581 VM_BUG_ON(!list_empty(&cc->freepages));
2582 VM_BUG_ON(!list_empty(&cc->migratepages));
2583
748446bb
MG
2584 return ret;
2585}
76ab0f53 2586
ea7ab982 2587static enum compact_result compact_zone_order(struct zone *zone, int order,
c3486f53 2588 gfp_t gfp_mask, enum compact_priority prio,
97a225e6 2589 unsigned int alloc_flags, int highest_zoneidx,
5e1f0f09 2590 struct page **capture)
56de7263 2591{
ea7ab982 2592 enum compact_result ret;
56de7263 2593 struct compact_control cc = {
56de7263 2594 .order = order,
dbe2d4e4 2595 .search_order = order,
6d7ce559 2596 .gfp_mask = gfp_mask,
56de7263 2597 .zone = zone,
a5508cd8
VB
2598 .mode = (prio == COMPACT_PRIO_ASYNC) ?
2599 MIGRATE_ASYNC : MIGRATE_SYNC_LIGHT,
ebff3980 2600 .alloc_flags = alloc_flags,
97a225e6 2601 .highest_zoneidx = highest_zoneidx,
accf6242 2602 .direct_compaction = true,
a8e025e5 2603 .whole_zone = (prio == MIN_COMPACT_PRIORITY),
9f7e3387
VB
2604 .ignore_skip_hint = (prio == MIN_COMPACT_PRIORITY),
2605 .ignore_block_suitable = (prio == MIN_COMPACT_PRIORITY)
56de7263 2606 };
5e1f0f09
MG
2607 struct capture_control capc = {
2608 .cc = &cc,
2609 .page = NULL,
2610 };
2611
b9e20f0d
VB
2612 /*
2613 * Make sure the structs are really initialized before we expose the
2614 * capture control, in case we are interrupted and the interrupt handler
2615 * frees a page.
2616 */
2617 barrier();
2618 WRITE_ONCE(current->capture_control, &capc);
56de7263 2619
5e1f0f09 2620 ret = compact_zone(&cc, &capc);
e64c5237 2621
b9e20f0d
VB
2622 /*
2623 * Make sure we hide capture control first before we read the captured
2624 * page pointer, otherwise an interrupt could free and capture a page
2625 * and we would leak it.
2626 */
2627 WRITE_ONCE(current->capture_control, NULL);
2628 *capture = READ_ONCE(capc.page);
06dac2f4
CTR
2629 /*
2630 * Technically, it is also possible that compaction is skipped but
2631 * the page is still captured out of luck(IRQ came and freed the page).
2632 * Returning COMPACT_SUCCESS in such cases helps in properly accounting
2633 * the COMPACT[STALL|FAIL] when compaction is skipped.
2634 */
2635 if (*capture)
2636 ret = COMPACT_SUCCESS;
5e1f0f09 2637
e64c5237 2638 return ret;
56de7263
MG
2639}
2640
2641/**
2642 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
56de7263 2643 * @gfp_mask: The GFP mask of the current allocation
1a6d53a1
VB
2644 * @order: The order of the current allocation
2645 * @alloc_flags: The allocation flags of the current allocation
2646 * @ac: The context of current allocation
112d2d29 2647 * @prio: Determines how hard direct compaction should try to succeed
6467552c 2648 * @capture: Pointer to free page created by compaction will be stored here
56de7263
MG
2649 *
2650 * This is the main entry point for direct page compaction.
2651 */
ea7ab982 2652enum compact_result try_to_compact_pages(gfp_t gfp_mask, unsigned int order,
c603844b 2653 unsigned int alloc_flags, const struct alloc_context *ac,
5e1f0f09 2654 enum compact_priority prio, struct page **capture)
56de7263 2655{
fe573327 2656 int may_perform_io = (__force int)(gfp_mask & __GFP_IO);
56de7263
MG
2657 struct zoneref *z;
2658 struct zone *zone;
1d4746d3 2659 enum compact_result rc = COMPACT_SKIPPED;
56de7263 2660
73e64c51
MH
2661 /*
2662 * Check if the GFP flags allow compaction - GFP_NOIO is really
2663 * tricky context because the migration might require IO
2664 */
2665 if (!may_perform_io)
53853e2d 2666 return COMPACT_SKIPPED;
56de7263 2667
a5508cd8 2668 trace_mm_compaction_try_to_compact_pages(order, gfp_mask, prio);
837d026d 2669
56de7263 2670 /* Compact each zone in the list */
97a225e6
JK
2671 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist,
2672 ac->highest_zoneidx, ac->nodemask) {
ea7ab982 2673 enum compact_result status;
56de7263 2674
a8e025e5
VB
2675 if (prio > MIN_COMPACT_PRIORITY
2676 && compaction_deferred(zone, order)) {
1d4746d3 2677 rc = max_t(enum compact_result, COMPACT_DEFERRED, rc);
53853e2d 2678 continue;
1d4746d3 2679 }
53853e2d 2680
a5508cd8 2681 status = compact_zone_order(zone, order, gfp_mask, prio,
97a225e6 2682 alloc_flags, ac->highest_zoneidx, capture);
56de7263
MG
2683 rc = max(status, rc);
2684
7ceb009a
VB
2685 /* The allocation should succeed, stop compacting */
2686 if (status == COMPACT_SUCCESS) {
53853e2d
VB
2687 /*
2688 * We think the allocation will succeed in this zone,
2689 * but it is not certain, hence the false. The caller
2690 * will repeat this with true if allocation indeed
2691 * succeeds in this zone.
2692 */
2693 compaction_defer_reset(zone, order, false);
1f9efdef 2694
c3486f53 2695 break;
1f9efdef
VB
2696 }
2697
a5508cd8 2698 if (prio != COMPACT_PRIO_ASYNC && (status == COMPACT_COMPLETE ||
c3486f53 2699 status == COMPACT_PARTIAL_SKIPPED))
53853e2d
VB
2700 /*
2701 * We think that allocation won't succeed in this zone
2702 * so we defer compaction there. If it ends up
2703 * succeeding after all, it will be reset.
2704 */
2705 defer_compaction(zone, order);
1f9efdef
VB
2706
2707 /*
2708 * We might have stopped compacting due to need_resched() in
2709 * async compaction, or due to a fatal signal detected. In that
c3486f53 2710 * case do not try further zones
1f9efdef 2711 */
c3486f53
VB
2712 if ((prio == COMPACT_PRIO_ASYNC && need_resched())
2713 || fatal_signal_pending(current))
2714 break;
56de7263
MG
2715 }
2716
2717 return rc;
2718}
2719
facdaa91
NG
2720/*
2721 * Compact all zones within a node till each zone's fragmentation score
2722 * reaches within proactive compaction thresholds (as determined by the
2723 * proactiveness tunable).
2724 *
2725 * It is possible that the function returns before reaching score targets
2726 * due to various back-off conditions, such as, contention on per-node or
2727 * per-zone locks.
2728 */
2729static void proactive_compact_node(pg_data_t *pgdat)
2730{
2731 int zoneid;
2732 struct zone *zone;
2733 struct compact_control cc = {
2734 .order = -1,
2735 .mode = MIGRATE_SYNC_LIGHT,
2736 .ignore_skip_hint = true,
2737 .whole_zone = true,
2738 .gfp_mask = GFP_KERNEL,
2739 .proactive_compaction = true,
2740 };
2741
2742 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
2743 zone = &pgdat->node_zones[zoneid];
2744 if (!populated_zone(zone))
2745 continue;
2746
2747 cc.zone = zone;
2748
2749 compact_zone(&cc, NULL);
2750
1bfb7684
BW
2751 count_compact_events(KCOMPACTD_MIGRATE_SCANNED,
2752 cc.total_migrate_scanned);
2753 count_compact_events(KCOMPACTD_FREE_SCANNED,
2754 cc.total_free_scanned);
facdaa91
NG
2755 }
2756}
56de7263 2757
76ab0f53 2758/* Compact all zones within a node */
791cae96 2759static void compact_node(int nid)
76ab0f53 2760{
791cae96 2761 pg_data_t *pgdat = NODE_DATA(nid);
76ab0f53 2762 int zoneid;
76ab0f53 2763 struct zone *zone;
791cae96
VB
2764 struct compact_control cc = {
2765 .order = -1,
2766 .mode = MIGRATE_SYNC,
2767 .ignore_skip_hint = true,
2768 .whole_zone = true,
73e64c51 2769 .gfp_mask = GFP_KERNEL,
791cae96
VB
2770 };
2771
76ab0f53 2772
76ab0f53 2773 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
76ab0f53
MG
2774
2775 zone = &pgdat->node_zones[zoneid];
2776 if (!populated_zone(zone))
2777 continue;
2778
791cae96 2779 cc.zone = zone;
76ab0f53 2780
5e1f0f09 2781 compact_zone(&cc, NULL);
76ab0f53 2782 }
76ab0f53
MG
2783}
2784
2785/* Compact all nodes in the system */
7964c06d 2786static void compact_nodes(void)
76ab0f53
MG
2787{
2788 int nid;
2789
8575ec29
HD
2790 /* Flush pending updates to the LRU lists */
2791 lru_add_drain_all();
2792
76ab0f53
MG
2793 for_each_online_node(nid)
2794 compact_node(nid);
76ab0f53
MG
2795}
2796
48fe8ab8 2797static int compaction_proactiveness_sysctl_handler(struct ctl_table *table, int write,
65d759c8
CTR
2798 void *buffer, size_t *length, loff_t *ppos)
2799{
2800 int rc, nid;
2801
2802 rc = proc_dointvec_minmax(table, write, buffer, length, ppos);
2803 if (rc)
2804 return rc;
2805
2806 if (write && sysctl_compaction_proactiveness) {
2807 for_each_online_node(nid) {
2808 pg_data_t *pgdat = NODE_DATA(nid);
2809
2810 if (pgdat->proactive_compact_trigger)
2811 continue;
2812
2813 pgdat->proactive_compact_trigger = true;
8fff8b6f
BW
2814 trace_mm_compaction_wakeup_kcompactd(pgdat->node_id, -1,
2815 pgdat->nr_zones - 1);
65d759c8
CTR
2816 wake_up_interruptible(&pgdat->kcompactd_wait);
2817 }
2818 }
2819
2820 return 0;
2821}
2822
fec4eb2c
YB
2823/*
2824 * This is the entry point for compacting all nodes via
2825 * /proc/sys/vm/compact_memory
2826 */
48fe8ab8 2827static int sysctl_compaction_handler(struct ctl_table *table, int write,
32927393 2828 void *buffer, size_t *length, loff_t *ppos)
76ab0f53 2829{
8b9167cd
WY
2830 int ret;
2831
2832 ret = proc_dointvec(table, write, buffer, length, ppos);
2833 if (ret)
2834 return ret;
2835
2836 if (sysctl_compact_memory != 1)
2837 return -EINVAL;
2838
76ab0f53 2839 if (write)
7964c06d 2840 compact_nodes();
76ab0f53
MG
2841
2842 return 0;
2843}
ed4a6d7f
MG
2844
2845#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
17adb230
Y
2846static ssize_t compact_store(struct device *dev,
2847 struct device_attribute *attr,
2848 const char *buf, size_t count)
ed4a6d7f 2849{
8575ec29
HD
2850 int nid = dev->id;
2851
2852 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
2853 /* Flush pending updates to the LRU lists */
2854 lru_add_drain_all();
2855
2856 compact_node(nid);
2857 }
ed4a6d7f
MG
2858
2859 return count;
2860}
17adb230 2861static DEVICE_ATTR_WO(compact);
ed4a6d7f
MG
2862
2863int compaction_register_node(struct node *node)
2864{
10fbcf4c 2865 return device_create_file(&node->dev, &dev_attr_compact);
ed4a6d7f
MG
2866}
2867
2868void compaction_unregister_node(struct node *node)
2869{
10fbcf4c 2870 return device_remove_file(&node->dev, &dev_attr_compact);
ed4a6d7f
MG
2871}
2872#endif /* CONFIG_SYSFS && CONFIG_NUMA */
ff9543fd 2873
698b1b30
VB
2874static inline bool kcompactd_work_requested(pg_data_t *pgdat)
2875{
65d759c8
CTR
2876 return pgdat->kcompactd_max_order > 0 || kthread_should_stop() ||
2877 pgdat->proactive_compact_trigger;
698b1b30
VB
2878}
2879
2880static bool kcompactd_node_suitable(pg_data_t *pgdat)
2881{
2882 int zoneid;
2883 struct zone *zone;
97a225e6 2884 enum zone_type highest_zoneidx = pgdat->kcompactd_highest_zoneidx;
698b1b30 2885
97a225e6 2886 for (zoneid = 0; zoneid <= highest_zoneidx; zoneid++) {
698b1b30
VB
2887 zone = &pgdat->node_zones[zoneid];
2888
2889 if (!populated_zone(zone))
2890 continue;
2891
e8606320
JW
2892 /* Allocation can already succeed, check other zones */
2893 if (zone_watermark_ok(zone, pgdat->kcompactd_max_order,
2894 min_wmark_pages(zone),
2895 highest_zoneidx, 0))
2896 continue;
2897
2898 if (compaction_suitable(zone, pgdat->kcompactd_max_order,
3cf04937 2899 highest_zoneidx))
698b1b30
VB
2900 return true;
2901 }
2902
2903 return false;
2904}
2905
2906static void kcompactd_do_work(pg_data_t *pgdat)
2907{
2908 /*
2909 * With no special task, compact all zones so that a page of requested
2910 * order is allocatable.
2911 */
2912 int zoneid;
2913 struct zone *zone;
2914 struct compact_control cc = {
2915 .order = pgdat->kcompactd_max_order,
dbe2d4e4 2916 .search_order = pgdat->kcompactd_max_order,
97a225e6 2917 .highest_zoneidx = pgdat->kcompactd_highest_zoneidx,
698b1b30 2918 .mode = MIGRATE_SYNC_LIGHT,
a0647dc9 2919 .ignore_skip_hint = false,
73e64c51 2920 .gfp_mask = GFP_KERNEL,
698b1b30 2921 };
698b1b30 2922 trace_mm_compaction_kcompactd_wake(pgdat->node_id, cc.order,
97a225e6 2923 cc.highest_zoneidx);
7f354a54 2924 count_compact_event(KCOMPACTD_WAKE);
698b1b30 2925
97a225e6 2926 for (zoneid = 0; zoneid <= cc.highest_zoneidx; zoneid++) {
698b1b30
VB
2927 int status;
2928
2929 zone = &pgdat->node_zones[zoneid];
2930 if (!populated_zone(zone))
2931 continue;
2932
2933 if (compaction_deferred(zone, cc.order))
2934 continue;
2935
e8606320
JW
2936 /* Allocation can already succeed, nothing to do */
2937 if (zone_watermark_ok(zone, cc.order,
2938 min_wmark_pages(zone), zoneid, 0))
698b1b30
VB
2939 continue;
2940
3cf04937 2941 if (!compaction_suitable(zone, cc.order, zoneid))
e8606320 2942 continue;
f98a497e 2943
172400c6
VB
2944 if (kthread_should_stop())
2945 return;
a94b5252
YS
2946
2947 cc.zone = zone;
5e1f0f09 2948 status = compact_zone(&cc, NULL);
698b1b30 2949
7ceb009a 2950 if (status == COMPACT_SUCCESS) {
698b1b30 2951 compaction_defer_reset(zone, cc.order, false);
c8f7de0b 2952 } else if (status == COMPACT_PARTIAL_SKIPPED || status == COMPACT_COMPLETE) {
bc3106b2
DR
2953 /*
2954 * Buddy pages may become stranded on pcps that could
2955 * otherwise coalesce on the zone's free area for
2956 * order >= cc.order. This is ratelimited by the
2957 * upcoming deferral.
2958 */
2959 drain_all_pages(zone);
2960
698b1b30
VB
2961 /*
2962 * We use sync migration mode here, so we defer like
2963 * sync direct compaction does.
2964 */
2965 defer_compaction(zone, cc.order);
2966 }
2967
7f354a54
DR
2968 count_compact_events(KCOMPACTD_MIGRATE_SCANNED,
2969 cc.total_migrate_scanned);
2970 count_compact_events(KCOMPACTD_FREE_SCANNED,
2971 cc.total_free_scanned);
698b1b30
VB
2972 }
2973
2974 /*
2975 * Regardless of success, we are done until woken up next. But remember
97a225e6
JK
2976 * the requested order/highest_zoneidx in case it was higher/tighter
2977 * than our current ones
698b1b30
VB
2978 */
2979 if (pgdat->kcompactd_max_order <= cc.order)
2980 pgdat->kcompactd_max_order = 0;
97a225e6
JK
2981 if (pgdat->kcompactd_highest_zoneidx >= cc.highest_zoneidx)
2982 pgdat->kcompactd_highest_zoneidx = pgdat->nr_zones - 1;
698b1b30
VB
2983}
2984
97a225e6 2985void wakeup_kcompactd(pg_data_t *pgdat, int order, int highest_zoneidx)
698b1b30
VB
2986{
2987 if (!order)
2988 return;
2989
2990 if (pgdat->kcompactd_max_order < order)
2991 pgdat->kcompactd_max_order = order;
2992
97a225e6
JK
2993 if (pgdat->kcompactd_highest_zoneidx > highest_zoneidx)
2994 pgdat->kcompactd_highest_zoneidx = highest_zoneidx;
698b1b30 2995
6818600f
DB
2996 /*
2997 * Pairs with implicit barrier in wait_event_freezable()
2998 * such that wakeups are not missed.
2999 */
3000 if (!wq_has_sleeper(&pgdat->kcompactd_wait))
698b1b30
VB
3001 return;
3002
3003 if (!kcompactd_node_suitable(pgdat))
3004 return;
3005
3006 trace_mm_compaction_wakeup_kcompactd(pgdat->node_id, order,
97a225e6 3007 highest_zoneidx);
698b1b30
VB
3008 wake_up_interruptible(&pgdat->kcompactd_wait);
3009}
3010
3011/*
3012 * The background compaction daemon, started as a kernel thread
3013 * from the init process.
3014 */
3015static int kcompactd(void *p)
3016{
68d68ff6 3017 pg_data_t *pgdat = (pg_data_t *)p;
698b1b30 3018 struct task_struct *tsk = current;
e1e92bfa
CTR
3019 long default_timeout = msecs_to_jiffies(HPAGE_FRAG_CHECK_INTERVAL_MSEC);
3020 long timeout = default_timeout;
698b1b30
VB
3021
3022 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
3023
3024 if (!cpumask_empty(cpumask))
3025 set_cpus_allowed_ptr(tsk, cpumask);
3026
3027 set_freezable();
3028
3029 pgdat->kcompactd_max_order = 0;
97a225e6 3030 pgdat->kcompactd_highest_zoneidx = pgdat->nr_zones - 1;
698b1b30
VB
3031
3032 while (!kthread_should_stop()) {
eb414681
JW
3033 unsigned long pflags;
3034
65d759c8
CTR
3035 /*
3036 * Avoid the unnecessary wakeup for proactive compaction
3037 * when it is disabled.
3038 */
3039 if (!sysctl_compaction_proactiveness)
3040 timeout = MAX_SCHEDULE_TIMEOUT;
698b1b30 3041 trace_mm_compaction_kcompactd_sleep(pgdat->node_id);
facdaa91 3042 if (wait_event_freezable_timeout(pgdat->kcompactd_wait,
65d759c8
CTR
3043 kcompactd_work_requested(pgdat), timeout) &&
3044 !pgdat->proactive_compact_trigger) {
facdaa91
NG
3045
3046 psi_memstall_enter(&pflags);
3047 kcompactd_do_work(pgdat);
3048 psi_memstall_leave(&pflags);
e1e92bfa
CTR
3049 /*
3050 * Reset the timeout value. The defer timeout from
3051 * proactive compaction is lost here but that is fine
3052 * as the condition of the zone changing substantionally
3053 * then carrying on with the previous defer interval is
3054 * not useful.
3055 */
3056 timeout = default_timeout;
facdaa91
NG
3057 continue;
3058 }
698b1b30 3059
e1e92bfa
CTR
3060 /*
3061 * Start the proactive work with default timeout. Based
3062 * on the fragmentation score, this timeout is updated.
3063 */
3064 timeout = default_timeout;
facdaa91
NG
3065 if (should_proactive_compact_node(pgdat)) {
3066 unsigned int prev_score, score;
3067
facdaa91
NG
3068 prev_score = fragmentation_score_node(pgdat);
3069 proactive_compact_node(pgdat);
3070 score = fragmentation_score_node(pgdat);
3071 /*
3072 * Defer proactive compaction if the fragmentation
3073 * score did not go down i.e. no progress made.
3074 */
e1e92bfa
CTR
3075 if (unlikely(score >= prev_score))
3076 timeout =
3077 default_timeout << COMPACT_MAX_DEFER_SHIFT;
facdaa91 3078 }
65d759c8
CTR
3079 if (unlikely(pgdat->proactive_compact_trigger))
3080 pgdat->proactive_compact_trigger = false;
698b1b30
VB
3081 }
3082
3083 return 0;
3084}
3085
3086/*
3087 * This kcompactd start function will be called by init and node-hot-add.
3088 * On node-hot-add, kcompactd will moved to proper cpus if cpus are hot-added.
3089 */
833dfc00 3090void __meminit kcompactd_run(int nid)
698b1b30
VB
3091{
3092 pg_data_t *pgdat = NODE_DATA(nid);
698b1b30
VB
3093
3094 if (pgdat->kcompactd)
024c61ea 3095 return;
698b1b30
VB
3096
3097 pgdat->kcompactd = kthread_run(kcompactd, pgdat, "kcompactd%d", nid);
3098 if (IS_ERR(pgdat->kcompactd)) {
3099 pr_err("Failed to start kcompactd on node %d\n", nid);
698b1b30
VB
3100 pgdat->kcompactd = NULL;
3101 }
698b1b30
VB
3102}
3103
3104/*
3105 * Called by memory hotplug when all memory in a node is offlined. Caller must
e8da368a 3106 * be holding mem_hotplug_begin/done().
698b1b30 3107 */
833dfc00 3108void __meminit kcompactd_stop(int nid)
698b1b30
VB
3109{
3110 struct task_struct *kcompactd = NODE_DATA(nid)->kcompactd;
3111
3112 if (kcompactd) {
3113 kthread_stop(kcompactd);
3114 NODE_DATA(nid)->kcompactd = NULL;
3115 }
3116}
3117
3118/*
3119 * It's optimal to keep kcompactd on the same CPUs as their memory, but
3120 * not required for correctness. So if the last cpu in a node goes
3121 * away, we get changed to run anywhere: as the first one comes back,
3122 * restore their cpu bindings.
3123 */
e46b1db2 3124static int kcompactd_cpu_online(unsigned int cpu)
698b1b30
VB
3125{
3126 int nid;
3127
e46b1db2
AMG
3128 for_each_node_state(nid, N_MEMORY) {
3129 pg_data_t *pgdat = NODE_DATA(nid);
3130 const struct cpumask *mask;
698b1b30 3131
e46b1db2 3132 mask = cpumask_of_node(pgdat->node_id);
698b1b30 3133
e46b1db2
AMG
3134 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
3135 /* One of our CPUs online: restore mask */
3109de30
ML
3136 if (pgdat->kcompactd)
3137 set_cpus_allowed_ptr(pgdat->kcompactd, mask);
698b1b30 3138 }
e46b1db2 3139 return 0;
698b1b30
VB
3140}
3141
48fe8ab8
MC
3142static int proc_dointvec_minmax_warn_RT_change(struct ctl_table *table,
3143 int write, void *buffer, size_t *lenp, loff_t *ppos)
3144{
3145 int ret, old;
3146
3147 if (!IS_ENABLED(CONFIG_PREEMPT_RT) || !write)
3148 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
3149
3150 old = *(int *)table->data;
3151 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
3152 if (ret)
3153 return ret;
3154 if (old != *(int *)table->data)
3155 pr_warn_once("sysctl attribute %s changed by %s[%d]\n",
3156 table->procname, current->comm,
3157 task_pid_nr(current));
3158 return ret;
3159}
3160
48fe8ab8
MC
3161static struct ctl_table vm_compaction[] = {
3162 {
3163 .procname = "compact_memory",
8b9167cd 3164 .data = &sysctl_compact_memory,
48fe8ab8
MC
3165 .maxlen = sizeof(int),
3166 .mode = 0200,
3167 .proc_handler = sysctl_compaction_handler,
3168 },
3169 {
3170 .procname = "compaction_proactiveness",
3171 .data = &sysctl_compaction_proactiveness,
3172 .maxlen = sizeof(sysctl_compaction_proactiveness),
3173 .mode = 0644,
3174 .proc_handler = compaction_proactiveness_sysctl_handler,
3175 .extra1 = SYSCTL_ZERO,
3176 .extra2 = SYSCTL_ONE_HUNDRED,
3177 },
3178 {
3179 .procname = "extfrag_threshold",
3180 .data = &sysctl_extfrag_threshold,
3181 .maxlen = sizeof(int),
3182 .mode = 0644,
3183 .proc_handler = proc_dointvec_minmax,
3184 .extra1 = SYSCTL_ZERO,
3185 .extra2 = SYSCTL_ONE_THOUSAND,
3186 },
3187 {
3188 .procname = "compact_unevictable_allowed",
3189 .data = &sysctl_compact_unevictable_allowed,
3190 .maxlen = sizeof(int),
3191 .mode = 0644,
3192 .proc_handler = proc_dointvec_minmax_warn_RT_change,
3193 .extra1 = SYSCTL_ZERO,
3194 .extra2 = SYSCTL_ONE,
3195 },
3196 { }
3197};
48fe8ab8 3198
698b1b30
VB
3199static int __init kcompactd_init(void)
3200{
3201 int nid;
e46b1db2
AMG
3202 int ret;
3203
3204 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
3205 "mm/compaction:online",
3206 kcompactd_cpu_online, NULL);
3207 if (ret < 0) {
3208 pr_err("kcompactd: failed to register hotplug callbacks.\n");
3209 return ret;
3210 }
698b1b30
VB
3211
3212 for_each_node_state(nid, N_MEMORY)
3213 kcompactd_run(nid);
48fe8ab8 3214 register_sysctl_init("vm", vm_compaction);
698b1b30
VB
3215 return 0;
3216}
3217subsys_initcall(kcompactd_init)
3218
ff9543fd 3219#endif /* CONFIG_COMPACTION */