]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - mm/compaction.c
mm, compaction: do not recheck suitable_migration_target under lock
[mirror_ubuntu-artful-kernel.git] / mm / compaction.c
CommitLineData
748446bb
MG
1/*
2 * linux/mm/compaction.c
3 *
4 * Memory compaction for the reduction of external fragmentation. Note that
5 * this heavily depends upon page migration to do all the real heavy
6 * lifting
7 *
8 * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie>
9 */
10#include <linux/swap.h>
11#include <linux/migrate.h>
12#include <linux/compaction.h>
13#include <linux/mm_inline.h>
14#include <linux/backing-dev.h>
76ab0f53 15#include <linux/sysctl.h>
ed4a6d7f 16#include <linux/sysfs.h>
bf6bddf1 17#include <linux/balloon_compaction.h>
194159fb 18#include <linux/page-isolation.h>
748446bb
MG
19#include "internal.h"
20
010fc29a
MK
21#ifdef CONFIG_COMPACTION
22static inline void count_compact_event(enum vm_event_item item)
23{
24 count_vm_event(item);
25}
26
27static inline void count_compact_events(enum vm_event_item item, long delta)
28{
29 count_vm_events(item, delta);
30}
31#else
32#define count_compact_event(item) do { } while (0)
33#define count_compact_events(item, delta) do { } while (0)
34#endif
35
ff9543fd
MN
36#if defined CONFIG_COMPACTION || defined CONFIG_CMA
37
b7aba698
MG
38#define CREATE_TRACE_POINTS
39#include <trace/events/compaction.h>
40
748446bb
MG
41static unsigned long release_freepages(struct list_head *freelist)
42{
43 struct page *page, *next;
44 unsigned long count = 0;
45
46 list_for_each_entry_safe(page, next, freelist, lru) {
47 list_del(&page->lru);
48 __free_page(page);
49 count++;
50 }
51
52 return count;
53}
54
ff9543fd
MN
55static void map_pages(struct list_head *list)
56{
57 struct page *page;
58
59 list_for_each_entry(page, list, lru) {
60 arch_alloc_page(page, 0);
61 kernel_map_pages(page, 1, 1);
62 }
63}
64
47118af0
MN
65static inline bool migrate_async_suitable(int migratetype)
66{
67 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
68}
69
bb13ffeb
MG
70#ifdef CONFIG_COMPACTION
71/* Returns true if the pageblock should be scanned for pages to isolate. */
72static inline bool isolation_suitable(struct compact_control *cc,
73 struct page *page)
74{
75 if (cc->ignore_skip_hint)
76 return true;
77
78 return !get_pageblock_skip(page);
79}
80
81/*
82 * This function is called to clear all cached information on pageblocks that
83 * should be skipped for page isolation when the migrate and free page scanner
84 * meet.
85 */
62997027 86static void __reset_isolation_suitable(struct zone *zone)
bb13ffeb
MG
87{
88 unsigned long start_pfn = zone->zone_start_pfn;
108bcc96 89 unsigned long end_pfn = zone_end_pfn(zone);
bb13ffeb
MG
90 unsigned long pfn;
91
35979ef3
DR
92 zone->compact_cached_migrate_pfn[0] = start_pfn;
93 zone->compact_cached_migrate_pfn[1] = start_pfn;
c89511ab 94 zone->compact_cached_free_pfn = end_pfn;
62997027 95 zone->compact_blockskip_flush = false;
bb13ffeb
MG
96
97 /* Walk the zone and mark every pageblock as suitable for isolation */
98 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
99 struct page *page;
100
101 cond_resched();
102
103 if (!pfn_valid(pfn))
104 continue;
105
106 page = pfn_to_page(pfn);
107 if (zone != page_zone(page))
108 continue;
109
110 clear_pageblock_skip(page);
111 }
112}
113
62997027
MG
114void reset_isolation_suitable(pg_data_t *pgdat)
115{
116 int zoneid;
117
118 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
119 struct zone *zone = &pgdat->node_zones[zoneid];
120 if (!populated_zone(zone))
121 continue;
122
123 /* Only flush if a full compaction finished recently */
124 if (zone->compact_blockskip_flush)
125 __reset_isolation_suitable(zone);
126 }
127}
128
bb13ffeb
MG
129/*
130 * If no pages were isolated then mark this pageblock to be skipped in the
62997027 131 * future. The information is later cleared by __reset_isolation_suitable().
bb13ffeb 132 */
c89511ab
MG
133static void update_pageblock_skip(struct compact_control *cc,
134 struct page *page, unsigned long nr_isolated,
35979ef3 135 bool set_unsuitable, bool migrate_scanner)
bb13ffeb 136{
c89511ab 137 struct zone *zone = cc->zone;
35979ef3 138 unsigned long pfn;
6815bf3f
JK
139
140 if (cc->ignore_skip_hint)
141 return;
142
bb13ffeb
MG
143 if (!page)
144 return;
145
35979ef3
DR
146 if (nr_isolated)
147 return;
148
149 /*
150 * Only skip pageblocks when all forms of compaction will be known to
151 * fail in the near future.
152 */
153 if (set_unsuitable)
bb13ffeb 154 set_pageblock_skip(page);
c89511ab 155
35979ef3
DR
156 pfn = page_to_pfn(page);
157
158 /* Update where async and sync compaction should restart */
159 if (migrate_scanner) {
160 if (cc->finished_update_migrate)
161 return;
162 if (pfn > zone->compact_cached_migrate_pfn[0])
163 zone->compact_cached_migrate_pfn[0] = pfn;
e0b9daeb
DR
164 if (cc->mode != MIGRATE_ASYNC &&
165 pfn > zone->compact_cached_migrate_pfn[1])
35979ef3
DR
166 zone->compact_cached_migrate_pfn[1] = pfn;
167 } else {
168 if (cc->finished_update_free)
169 return;
170 if (pfn < zone->compact_cached_free_pfn)
171 zone->compact_cached_free_pfn = pfn;
c89511ab 172 }
bb13ffeb
MG
173}
174#else
175static inline bool isolation_suitable(struct compact_control *cc,
176 struct page *page)
177{
178 return true;
179}
180
c89511ab
MG
181static void update_pageblock_skip(struct compact_control *cc,
182 struct page *page, unsigned long nr_isolated,
35979ef3 183 bool set_unsuitable, bool migrate_scanner)
bb13ffeb
MG
184{
185}
186#endif /* CONFIG_COMPACTION */
187
2a1402aa
MG
188static inline bool should_release_lock(spinlock_t *lock)
189{
190 return need_resched() || spin_is_contended(lock);
191}
192
c67fe375
MG
193/*
194 * Compaction requires the taking of some coarse locks that are potentially
195 * very heavily contended. Check if the process needs to be scheduled or
196 * if the lock is contended. For async compaction, back out in the event
197 * if contention is severe. For sync compaction, schedule.
198 *
199 * Returns true if the lock is held.
200 * Returns false if the lock is released and compaction should abort
201 */
202static bool compact_checklock_irqsave(spinlock_t *lock, unsigned long *flags,
203 bool locked, struct compact_control *cc)
204{
2a1402aa 205 if (should_release_lock(lock)) {
c67fe375
MG
206 if (locked) {
207 spin_unlock_irqrestore(lock, *flags);
208 locked = false;
209 }
210
211 /* async aborts if taking too long or contended */
e0b9daeb 212 if (cc->mode == MIGRATE_ASYNC) {
e64c5237 213 cc->contended = true;
c67fe375
MG
214 return false;
215 }
216
217 cond_resched();
c67fe375
MG
218 }
219
220 if (!locked)
221 spin_lock_irqsave(lock, *flags);
222 return true;
223}
224
be976572
VB
225/*
226 * Aside from avoiding lock contention, compaction also periodically checks
227 * need_resched() and either schedules in sync compaction or aborts async
228 * compaction. This is similar to what compact_checklock_irqsave() does, but
229 * is used where no lock is concerned.
230 *
231 * Returns false when no scheduling was needed, or sync compaction scheduled.
232 * Returns true when async compaction should abort.
233 */
234static inline bool compact_should_abort(struct compact_control *cc)
235{
236 /* async compaction aborts if contended */
237 if (need_resched()) {
238 if (cc->mode == MIGRATE_ASYNC) {
239 cc->contended = true;
240 return true;
241 }
242
243 cond_resched();
244 }
245
246 return false;
247}
248
f40d1e42
MG
249/* Returns true if the page is within a block suitable for migration to */
250static bool suitable_migration_target(struct page *page)
251{
7d348b9e 252 /* If the page is a large free page, then disallow migration */
f40d1e42 253 if (PageBuddy(page) && page_order(page) >= pageblock_order)
7d348b9e 254 return false;
f40d1e42
MG
255
256 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
7d348b9e 257 if (migrate_async_suitable(get_pageblock_migratetype(page)))
f40d1e42
MG
258 return true;
259
260 /* Otherwise skip the block */
261 return false;
262}
263
85aa125f 264/*
9e4be470
JM
265 * Isolate free pages onto a private freelist. If @strict is true, will abort
266 * returning 0 on any invalid PFNs or non-free pages inside of the pageblock
267 * (even though it may still end up isolating some pages).
85aa125f 268 */
f40d1e42
MG
269static unsigned long isolate_freepages_block(struct compact_control *cc,
270 unsigned long blockpfn,
85aa125f
MN
271 unsigned long end_pfn,
272 struct list_head *freelist,
273 bool strict)
748446bb 274{
b7aba698 275 int nr_scanned = 0, total_isolated = 0;
bb13ffeb 276 struct page *cursor, *valid_page = NULL;
f40d1e42
MG
277 unsigned long flags;
278 bool locked = false;
748446bb 279
748446bb
MG
280 cursor = pfn_to_page(blockpfn);
281
f40d1e42 282 /* Isolate free pages. */
748446bb
MG
283 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
284 int isolated, i;
285 struct page *page = cursor;
286
b7aba698 287 nr_scanned++;
f40d1e42 288 if (!pfn_valid_within(blockpfn))
2af120bc
LA
289 goto isolate_fail;
290
bb13ffeb
MG
291 if (!valid_page)
292 valid_page = page;
f40d1e42 293 if (!PageBuddy(page))
2af120bc 294 goto isolate_fail;
f40d1e42
MG
295
296 /*
297 * The zone lock must be held to isolate freepages.
298 * Unfortunately this is a very coarse lock and can be
299 * heavily contended if there are parallel allocations
300 * or parallel compactions. For async compaction do not
301 * spin on the lock and we acquire the lock as late as
302 * possible.
303 */
304 locked = compact_checklock_irqsave(&cc->zone->lock, &flags,
305 locked, cc);
306 if (!locked)
307 break;
308
f40d1e42
MG
309 /* Recheck this is a buddy page under lock */
310 if (!PageBuddy(page))
2af120bc 311 goto isolate_fail;
748446bb
MG
312
313 /* Found a free page, break it into order-0 pages */
314 isolated = split_free_page(page);
315 total_isolated += isolated;
316 for (i = 0; i < isolated; i++) {
317 list_add(&page->lru, freelist);
318 page++;
319 }
320
321 /* If a page was split, advance to the end of it */
322 if (isolated) {
323 blockpfn += isolated - 1;
324 cursor += isolated - 1;
2af120bc 325 continue;
748446bb 326 }
2af120bc
LA
327
328isolate_fail:
329 if (strict)
330 break;
331 else
332 continue;
333
748446bb
MG
334 }
335
b7aba698 336 trace_mm_compaction_isolate_freepages(nr_scanned, total_isolated);
f40d1e42
MG
337
338 /*
339 * If strict isolation is requested by CMA then check that all the
340 * pages requested were isolated. If there were any failures, 0 is
341 * returned and CMA will fail.
342 */
2af120bc 343 if (strict && blockpfn < end_pfn)
f40d1e42
MG
344 total_isolated = 0;
345
346 if (locked)
347 spin_unlock_irqrestore(&cc->zone->lock, flags);
348
bb13ffeb
MG
349 /* Update the pageblock-skip if the whole pageblock was scanned */
350 if (blockpfn == end_pfn)
35979ef3
DR
351 update_pageblock_skip(cc, valid_page, total_isolated, true,
352 false);
bb13ffeb 353
010fc29a 354 count_compact_events(COMPACTFREE_SCANNED, nr_scanned);
397487db 355 if (total_isolated)
010fc29a 356 count_compact_events(COMPACTISOLATED, total_isolated);
748446bb
MG
357 return total_isolated;
358}
359
85aa125f
MN
360/**
361 * isolate_freepages_range() - isolate free pages.
362 * @start_pfn: The first PFN to start isolating.
363 * @end_pfn: The one-past-last PFN.
364 *
365 * Non-free pages, invalid PFNs, or zone boundaries within the
366 * [start_pfn, end_pfn) range are considered errors, cause function to
367 * undo its actions and return zero.
368 *
369 * Otherwise, function returns one-past-the-last PFN of isolated page
370 * (which may be greater then end_pfn if end fell in a middle of
371 * a free page).
372 */
ff9543fd 373unsigned long
bb13ffeb
MG
374isolate_freepages_range(struct compact_control *cc,
375 unsigned long start_pfn, unsigned long end_pfn)
85aa125f 376{
f40d1e42 377 unsigned long isolated, pfn, block_end_pfn;
85aa125f
MN
378 LIST_HEAD(freelist);
379
85aa125f 380 for (pfn = start_pfn; pfn < end_pfn; pfn += isolated) {
bb13ffeb 381 if (!pfn_valid(pfn) || cc->zone != page_zone(pfn_to_page(pfn)))
85aa125f
MN
382 break;
383
384 /*
385 * On subsequent iterations ALIGN() is actually not needed,
386 * but we keep it that we not to complicate the code.
387 */
388 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
389 block_end_pfn = min(block_end_pfn, end_pfn);
390
bb13ffeb 391 isolated = isolate_freepages_block(cc, pfn, block_end_pfn,
85aa125f 392 &freelist, true);
85aa125f
MN
393
394 /*
395 * In strict mode, isolate_freepages_block() returns 0 if
396 * there are any holes in the block (ie. invalid PFNs or
397 * non-free pages).
398 */
399 if (!isolated)
400 break;
401
402 /*
403 * If we managed to isolate pages, it is always (1 << n) *
404 * pageblock_nr_pages for some non-negative n. (Max order
405 * page may span two pageblocks).
406 */
407 }
408
409 /* split_free_page does not map the pages */
410 map_pages(&freelist);
411
412 if (pfn < end_pfn) {
413 /* Loop terminated early, cleanup. */
414 release_freepages(&freelist);
415 return 0;
416 }
417
418 /* We don't use freelists for anything. */
419 return pfn;
420}
421
748446bb 422/* Update the number of anon and file isolated pages in the zone */
c67fe375 423static void acct_isolated(struct zone *zone, bool locked, struct compact_control *cc)
748446bb
MG
424{
425 struct page *page;
b9e84ac1 426 unsigned int count[2] = { 0, };
748446bb 427
b9e84ac1
MK
428 list_for_each_entry(page, &cc->migratepages, lru)
429 count[!!page_is_file_cache(page)]++;
748446bb 430
c67fe375
MG
431 /* If locked we can use the interrupt unsafe versions */
432 if (locked) {
433 __mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
434 __mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
435 } else {
436 mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
437 mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
438 }
748446bb
MG
439}
440
441/* Similar to reclaim, but different enough that they don't share logic */
442static bool too_many_isolated(struct zone *zone)
443{
bc693045 444 unsigned long active, inactive, isolated;
748446bb
MG
445
446 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
447 zone_page_state(zone, NR_INACTIVE_ANON);
bc693045
MK
448 active = zone_page_state(zone, NR_ACTIVE_FILE) +
449 zone_page_state(zone, NR_ACTIVE_ANON);
748446bb
MG
450 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
451 zone_page_state(zone, NR_ISOLATED_ANON);
452
bc693045 453 return isolated > (inactive + active) / 2;
748446bb
MG
454}
455
2fe86e00
MN
456/**
457 * isolate_migratepages_range() - isolate all migrate-able pages in range.
458 * @zone: Zone pages are in.
459 * @cc: Compaction control structure.
460 * @low_pfn: The first PFN of the range.
461 * @end_pfn: The one-past-the-last PFN of the range.
e46a2879 462 * @unevictable: true if it allows to isolate unevictable pages
2fe86e00
MN
463 *
464 * Isolate all pages that can be migrated from the range specified by
465 * [low_pfn, end_pfn). Returns zero if there is a fatal signal
466 * pending), otherwise PFN of the first page that was not scanned
467 * (which may be both less, equal to or more then end_pfn).
468 *
469 * Assumes that cc->migratepages is empty and cc->nr_migratepages is
470 * zero.
471 *
472 * Apart from cc->migratepages and cc->nr_migratetypes this function
473 * does not modify any cc's fields, in particular it does not modify
474 * (or read for that matter) cc->migrate_pfn.
748446bb 475 */
ff9543fd 476unsigned long
2fe86e00 477isolate_migratepages_range(struct zone *zone, struct compact_control *cc,
e46a2879 478 unsigned long low_pfn, unsigned long end_pfn, bool unevictable)
748446bb 479{
9927af74 480 unsigned long last_pageblock_nr = 0, pageblock_nr;
b7aba698 481 unsigned long nr_scanned = 0, nr_isolated = 0;
748446bb 482 struct list_head *migratelist = &cc->migratepages;
fa9add64 483 struct lruvec *lruvec;
c67fe375 484 unsigned long flags;
2a1402aa 485 bool locked = false;
bb13ffeb 486 struct page *page = NULL, *valid_page = NULL;
35979ef3 487 bool set_unsuitable = true;
e0b9daeb
DR
488 const isolate_mode_t mode = (cc->mode == MIGRATE_ASYNC ?
489 ISOLATE_ASYNC_MIGRATE : 0) |
da1c67a7 490 (unevictable ? ISOLATE_UNEVICTABLE : 0);
748446bb 491
748446bb
MG
492 /*
493 * Ensure that there are not too many pages isolated from the LRU
494 * list by either parallel reclaimers or compaction. If there are,
495 * delay for some time until fewer pages are isolated
496 */
497 while (unlikely(too_many_isolated(zone))) {
f9e35b3b 498 /* async migration should just abort */
e0b9daeb 499 if (cc->mode == MIGRATE_ASYNC)
2fe86e00 500 return 0;
f9e35b3b 501
748446bb
MG
502 congestion_wait(BLK_RW_ASYNC, HZ/10);
503
504 if (fatal_signal_pending(current))
2fe86e00 505 return 0;
748446bb
MG
506 }
507
be976572
VB
508 if (compact_should_abort(cc))
509 return 0;
aeef4b83 510
748446bb 511 /* Time to isolate some pages for migration */
748446bb 512 for (; low_pfn < end_pfn; low_pfn++) {
b2eef8c0 513 /* give a chance to irqs before checking need_resched() */
be1aa03b 514 if (locked && !(low_pfn % SWAP_CLUSTER_MAX)) {
2a1402aa
MG
515 if (should_release_lock(&zone->lru_lock)) {
516 spin_unlock_irqrestore(&zone->lru_lock, flags);
517 locked = false;
518 }
b2eef8c0 519 }
c67fe375 520
0bf380bc
MG
521 /*
522 * migrate_pfn does not necessarily start aligned to a
523 * pageblock. Ensure that pfn_valid is called when moving
524 * into a new MAX_ORDER_NR_PAGES range in case of large
525 * memory holes within the zone
526 */
527 if ((low_pfn & (MAX_ORDER_NR_PAGES - 1)) == 0) {
528 if (!pfn_valid(low_pfn)) {
529 low_pfn += MAX_ORDER_NR_PAGES - 1;
530 continue;
531 }
532 }
533
748446bb
MG
534 if (!pfn_valid_within(low_pfn))
535 continue;
b7aba698 536 nr_scanned++;
748446bb 537
dc908600
MG
538 /*
539 * Get the page and ensure the page is within the same zone.
540 * See the comment in isolate_freepages about overlapping
541 * nodes. It is deliberate that the new zone lock is not taken
542 * as memory compaction should not move pages between nodes.
543 */
748446bb 544 page = pfn_to_page(low_pfn);
dc908600
MG
545 if (page_zone(page) != zone)
546 continue;
547
bb13ffeb
MG
548 if (!valid_page)
549 valid_page = page;
550
551 /* If isolation recently failed, do not retry */
552 pageblock_nr = low_pfn >> pageblock_order;
c122b208
JK
553 if (last_pageblock_nr != pageblock_nr) {
554 int mt;
555
556 last_pageblock_nr = pageblock_nr;
557 if (!isolation_suitable(cc, page))
558 goto next_pageblock;
559
560 /*
561 * For async migration, also only scan in MOVABLE
562 * blocks. Async migration is optimistic to see if
563 * the minimum amount of work satisfies the allocation
564 */
565 mt = get_pageblock_migratetype(page);
e0b9daeb
DR
566 if (cc->mode == MIGRATE_ASYNC &&
567 !migrate_async_suitable(mt)) {
35979ef3 568 set_unsuitable = false;
c122b208
JK
569 goto next_pageblock;
570 }
571 }
bb13ffeb 572
6c14466c
MG
573 /*
574 * Skip if free. page_order cannot be used without zone->lock
575 * as nothing prevents parallel allocations or buddy merging.
576 */
748446bb
MG
577 if (PageBuddy(page))
578 continue;
579
bf6bddf1
RA
580 /*
581 * Check may be lockless but that's ok as we recheck later.
582 * It's possible to migrate LRU pages and balloon pages
583 * Skip any other type of page
584 */
585 if (!PageLRU(page)) {
586 if (unlikely(balloon_page_movable(page))) {
587 if (locked && balloon_page_isolate(page)) {
588 /* Successfully isolated */
b6c75016 589 goto isolate_success;
bf6bddf1
RA
590 }
591 }
bc835011 592 continue;
bf6bddf1 593 }
bc835011
AA
594
595 /*
2a1402aa
MG
596 * PageLRU is set. lru_lock normally excludes isolation
597 * splitting and collapsing (collapsing has already happened
598 * if PageLRU is set) but the lock is not necessarily taken
599 * here and it is wasteful to take it just to check transhuge.
600 * Check TransHuge without lock and skip the whole pageblock if
601 * it's either a transhuge or hugetlbfs page, as calling
602 * compound_order() without preventing THP from splitting the
603 * page underneath us may return surprising results.
bc835011 604 */
2a1402aa
MG
605 if (PageTransHuge(page)) {
606 if (!locked)
607 goto next_pageblock;
608 low_pfn += (1 << compound_order(page)) - 1;
609 continue;
610 }
611
119d6d59
DR
612 /*
613 * Migration will fail if an anonymous page is pinned in memory,
614 * so avoid taking lru_lock and isolating it unnecessarily in an
615 * admittedly racy check.
616 */
617 if (!page_mapping(page) &&
618 page_count(page) > page_mapcount(page))
619 continue;
620
2a1402aa
MG
621 /* Check if it is ok to still hold the lock */
622 locked = compact_checklock_irqsave(&zone->lru_lock, &flags,
623 locked, cc);
624 if (!locked || fatal_signal_pending(current))
625 break;
626
627 /* Recheck PageLRU and PageTransHuge under lock */
628 if (!PageLRU(page))
629 continue;
bc835011
AA
630 if (PageTransHuge(page)) {
631 low_pfn += (1 << compound_order(page)) - 1;
632 continue;
633 }
634
fa9add64
HD
635 lruvec = mem_cgroup_page_lruvec(page, zone);
636
748446bb 637 /* Try isolate the page */
f3fd4a61 638 if (__isolate_lru_page(page, mode) != 0)
748446bb
MG
639 continue;
640
309381fe 641 VM_BUG_ON_PAGE(PageTransCompound(page), page);
bc835011 642
748446bb 643 /* Successfully isolated */
fa9add64 644 del_page_from_lru_list(page, lruvec, page_lru(page));
b6c75016
JK
645
646isolate_success:
647 cc->finished_update_migrate = true;
748446bb 648 list_add(&page->lru, migratelist);
748446bb 649 cc->nr_migratepages++;
b7aba698 650 nr_isolated++;
748446bb
MG
651
652 /* Avoid isolating too much */
31b8384a
HD
653 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
654 ++low_pfn;
748446bb 655 break;
31b8384a 656 }
2a1402aa
MG
657
658 continue;
659
660next_pageblock:
a9aacbcc 661 low_pfn = ALIGN(low_pfn + 1, pageblock_nr_pages) - 1;
748446bb
MG
662 }
663
c67fe375 664 acct_isolated(zone, locked, cc);
748446bb 665
c67fe375
MG
666 if (locked)
667 spin_unlock_irqrestore(&zone->lru_lock, flags);
748446bb 668
50b5b094
VB
669 /*
670 * Update the pageblock-skip information and cached scanner pfn,
671 * if the whole pageblock was scanned without isolating any page.
50b5b094 672 */
35979ef3
DR
673 if (low_pfn == end_pfn)
674 update_pageblock_skip(cc, valid_page, nr_isolated,
675 set_unsuitable, true);
bb13ffeb 676
b7aba698
MG
677 trace_mm_compaction_isolate_migratepages(nr_scanned, nr_isolated);
678
010fc29a 679 count_compact_events(COMPACTMIGRATE_SCANNED, nr_scanned);
397487db 680 if (nr_isolated)
010fc29a 681 count_compact_events(COMPACTISOLATED, nr_isolated);
397487db 682
2fe86e00
MN
683 return low_pfn;
684}
685
ff9543fd
MN
686#endif /* CONFIG_COMPACTION || CONFIG_CMA */
687#ifdef CONFIG_COMPACTION
2fe86e00 688/*
ff9543fd
MN
689 * Based on information in the current compact_control, find blocks
690 * suitable for isolating free pages from and then isolate them.
2fe86e00 691 */
ff9543fd
MN
692static void isolate_freepages(struct zone *zone,
693 struct compact_control *cc)
2fe86e00 694{
ff9543fd 695 struct page *page;
c96b9e50
VB
696 unsigned long block_start_pfn; /* start of current pageblock */
697 unsigned long block_end_pfn; /* end of current pageblock */
698 unsigned long low_pfn; /* lowest pfn scanner is able to scan */
ff9543fd
MN
699 int nr_freepages = cc->nr_freepages;
700 struct list_head *freelist = &cc->freepages;
2fe86e00 701
ff9543fd
MN
702 /*
703 * Initialise the free scanner. The starting point is where we last
49e068f0
VB
704 * successfully isolated from, zone-cached value, or the end of the
705 * zone when isolating for the first time. We need this aligned to
c96b9e50
VB
706 * the pageblock boundary, because we do
707 * block_start_pfn -= pageblock_nr_pages in the for loop.
708 * For ending point, take care when isolating in last pageblock of a
709 * a zone which ends in the middle of a pageblock.
49e068f0
VB
710 * The low boundary is the end of the pageblock the migration scanner
711 * is using.
ff9543fd 712 */
c96b9e50
VB
713 block_start_pfn = cc->free_pfn & ~(pageblock_nr_pages-1);
714 block_end_pfn = min(block_start_pfn + pageblock_nr_pages,
715 zone_end_pfn(zone));
7ed695e0 716 low_pfn = ALIGN(cc->migrate_pfn + 1, pageblock_nr_pages);
2fe86e00 717
ff9543fd
MN
718 /*
719 * Isolate free pages until enough are available to migrate the
720 * pages on cc->migratepages. We stop searching if the migrate
721 * and free page scanners meet or enough free pages are isolated.
722 */
c96b9e50
VB
723 for (; block_start_pfn >= low_pfn && cc->nr_migratepages > nr_freepages;
724 block_end_pfn = block_start_pfn,
725 block_start_pfn -= pageblock_nr_pages) {
ff9543fd 726 unsigned long isolated;
2fe86e00 727
f6ea3adb
DR
728 /*
729 * This can iterate a massively long zone without finding any
730 * suitable migration targets, so periodically check if we need
be976572 731 * to schedule, or even abort async compaction.
f6ea3adb 732 */
be976572
VB
733 if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
734 && compact_should_abort(cc))
735 break;
f6ea3adb 736
c96b9e50 737 if (!pfn_valid(block_start_pfn))
ff9543fd 738 continue;
2fe86e00 739
ff9543fd
MN
740 /*
741 * Check for overlapping nodes/zones. It's possible on some
742 * configurations to have a setup like
743 * node0 node1 node0
744 * i.e. it's possible that all pages within a zones range of
745 * pages do not belong to a single zone.
746 */
c96b9e50 747 page = pfn_to_page(block_start_pfn);
ff9543fd
MN
748 if (page_zone(page) != zone)
749 continue;
750
751 /* Check the block is suitable for migration */
68e3e926 752 if (!suitable_migration_target(page))
ff9543fd 753 continue;
68e3e926 754
bb13ffeb
MG
755 /* If isolation recently failed, do not retry */
756 if (!isolation_suitable(cc, page))
757 continue;
758
f40d1e42 759 /* Found a block suitable for isolating free pages from */
e9ade569 760 cc->free_pfn = block_start_pfn;
c96b9e50
VB
761 isolated = isolate_freepages_block(cc, block_start_pfn,
762 block_end_pfn, freelist, false);
f40d1e42 763 nr_freepages += isolated;
ff9543fd
MN
764
765 /*
e9ade569
VB
766 * Set a flag that we successfully isolated in this pageblock.
767 * In the next loop iteration, zone->compact_cached_free_pfn
768 * will not be updated and thus it will effectively contain the
769 * highest pageblock we isolated pages from.
ff9543fd 770 */
e9ade569 771 if (isolated)
c89511ab 772 cc->finished_update_free = true;
be976572
VB
773
774 /*
775 * isolate_freepages_block() might have aborted due to async
776 * compaction being contended
777 */
778 if (cc->contended)
779 break;
ff9543fd
MN
780 }
781
782 /* split_free_page does not map the pages */
783 map_pages(freelist);
784
7ed695e0
VB
785 /*
786 * If we crossed the migrate scanner, we want to keep it that way
787 * so that compact_finished() may detect this
788 */
c96b9e50 789 if (block_start_pfn < low_pfn)
e9ade569 790 cc->free_pfn = cc->migrate_pfn;
c96b9e50 791
ff9543fd 792 cc->nr_freepages = nr_freepages;
748446bb
MG
793}
794
795/*
796 * This is a migrate-callback that "allocates" freepages by taking pages
797 * from the isolated freelists in the block we are migrating to.
798 */
799static struct page *compaction_alloc(struct page *migratepage,
800 unsigned long data,
801 int **result)
802{
803 struct compact_control *cc = (struct compact_control *)data;
804 struct page *freepage;
805
be976572
VB
806 /*
807 * Isolate free pages if necessary, and if we are not aborting due to
808 * contention.
809 */
748446bb 810 if (list_empty(&cc->freepages)) {
be976572
VB
811 if (!cc->contended)
812 isolate_freepages(cc->zone, cc);
748446bb
MG
813
814 if (list_empty(&cc->freepages))
815 return NULL;
816 }
817
818 freepage = list_entry(cc->freepages.next, struct page, lru);
819 list_del(&freepage->lru);
820 cc->nr_freepages--;
821
822 return freepage;
823}
824
825/*
d53aea3d
DR
826 * This is a migrate-callback that "frees" freepages back to the isolated
827 * freelist. All pages on the freelist are from the same zone, so there is no
828 * special handling needed for NUMA.
829 */
830static void compaction_free(struct page *page, unsigned long data)
831{
832 struct compact_control *cc = (struct compact_control *)data;
833
834 list_add(&page->lru, &cc->freepages);
835 cc->nr_freepages++;
836}
837
ff9543fd
MN
838/* possible outcome of isolate_migratepages */
839typedef enum {
840 ISOLATE_ABORT, /* Abort compaction now */
841 ISOLATE_NONE, /* No pages isolated, continue scanning */
842 ISOLATE_SUCCESS, /* Pages isolated, migrate */
843} isolate_migrate_t;
844
845/*
846 * Isolate all pages that can be migrated from the block pointed to by
847 * the migrate scanner within compact_control.
848 */
849static isolate_migrate_t isolate_migratepages(struct zone *zone,
850 struct compact_control *cc)
851{
852 unsigned long low_pfn, end_pfn;
853
854 /* Do not scan outside zone boundaries */
855 low_pfn = max(cc->migrate_pfn, zone->zone_start_pfn);
856
857 /* Only scan within a pageblock boundary */
a9aacbcc 858 end_pfn = ALIGN(low_pfn + 1, pageblock_nr_pages);
ff9543fd
MN
859
860 /* Do not cross the free scanner or scan within a memory hole */
861 if (end_pfn > cc->free_pfn || !pfn_valid(low_pfn)) {
862 cc->migrate_pfn = end_pfn;
863 return ISOLATE_NONE;
864 }
865
866 /* Perform the isolation */
e46a2879 867 low_pfn = isolate_migratepages_range(zone, cc, low_pfn, end_pfn, false);
e64c5237 868 if (!low_pfn || cc->contended)
ff9543fd
MN
869 return ISOLATE_ABORT;
870
871 cc->migrate_pfn = low_pfn;
872
873 return ISOLATE_SUCCESS;
874}
875
748446bb 876static int compact_finished(struct zone *zone,
5a03b051 877 struct compact_control *cc)
748446bb 878{
8fb74b9f 879 unsigned int order;
5a03b051 880 unsigned long watermark;
56de7263 881
be976572 882 if (cc->contended || fatal_signal_pending(current))
748446bb
MG
883 return COMPACT_PARTIAL;
884
753341a4 885 /* Compaction run completes if the migrate and free scanner meet */
bb13ffeb 886 if (cc->free_pfn <= cc->migrate_pfn) {
55b7c4c9 887 /* Let the next compaction start anew. */
35979ef3
DR
888 zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn;
889 zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn;
55b7c4c9
VB
890 zone->compact_cached_free_pfn = zone_end_pfn(zone);
891
62997027
MG
892 /*
893 * Mark that the PG_migrate_skip information should be cleared
894 * by kswapd when it goes to sleep. kswapd does not set the
895 * flag itself as the decision to be clear should be directly
896 * based on an allocation request.
897 */
898 if (!current_is_kswapd())
899 zone->compact_blockskip_flush = true;
900
748446bb 901 return COMPACT_COMPLETE;
bb13ffeb 902 }
748446bb 903
82478fb7
JW
904 /*
905 * order == -1 is expected when compacting via
906 * /proc/sys/vm/compact_memory
907 */
56de7263
MG
908 if (cc->order == -1)
909 return COMPACT_CONTINUE;
910
3957c776
MH
911 /* Compaction run is not finished if the watermark is not met */
912 watermark = low_wmark_pages(zone);
913 watermark += (1 << cc->order);
914
915 if (!zone_watermark_ok(zone, cc->order, watermark, 0, 0))
916 return COMPACT_CONTINUE;
917
56de7263 918 /* Direct compactor: Is a suitable page free? */
8fb74b9f
MG
919 for (order = cc->order; order < MAX_ORDER; order++) {
920 struct free_area *area = &zone->free_area[order];
921
922 /* Job done if page is free of the right migratetype */
923 if (!list_empty(&area->free_list[cc->migratetype]))
924 return COMPACT_PARTIAL;
925
926 /* Job done if allocation would set block type */
927 if (cc->order >= pageblock_order && area->nr_free)
56de7263
MG
928 return COMPACT_PARTIAL;
929 }
930
748446bb
MG
931 return COMPACT_CONTINUE;
932}
933
3e7d3449
MG
934/*
935 * compaction_suitable: Is this suitable to run compaction on this zone now?
936 * Returns
937 * COMPACT_SKIPPED - If there are too few free pages for compaction
938 * COMPACT_PARTIAL - If the allocation would succeed without compaction
939 * COMPACT_CONTINUE - If compaction should run now
940 */
941unsigned long compaction_suitable(struct zone *zone, int order)
942{
943 int fragindex;
944 unsigned long watermark;
945
3957c776
MH
946 /*
947 * order == -1 is expected when compacting via
948 * /proc/sys/vm/compact_memory
949 */
950 if (order == -1)
951 return COMPACT_CONTINUE;
952
3e7d3449
MG
953 /*
954 * Watermarks for order-0 must be met for compaction. Note the 2UL.
955 * This is because during migration, copies of pages need to be
956 * allocated and for a short time, the footprint is higher
957 */
958 watermark = low_wmark_pages(zone) + (2UL << order);
959 if (!zone_watermark_ok(zone, 0, watermark, 0, 0))
960 return COMPACT_SKIPPED;
961
962 /*
963 * fragmentation index determines if allocation failures are due to
964 * low memory or external fragmentation
965 *
a582a738
SL
966 * index of -1000 implies allocations might succeed depending on
967 * watermarks
3e7d3449
MG
968 * index towards 0 implies failure is due to lack of memory
969 * index towards 1000 implies failure is due to fragmentation
970 *
971 * Only compact if a failure would be due to fragmentation.
972 */
973 fragindex = fragmentation_index(zone, order);
974 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
975 return COMPACT_SKIPPED;
976
a582a738
SL
977 if (fragindex == -1000 && zone_watermark_ok(zone, order, watermark,
978 0, 0))
3e7d3449
MG
979 return COMPACT_PARTIAL;
980
981 return COMPACT_CONTINUE;
982}
983
748446bb
MG
984static int compact_zone(struct zone *zone, struct compact_control *cc)
985{
986 int ret;
c89511ab 987 unsigned long start_pfn = zone->zone_start_pfn;
108bcc96 988 unsigned long end_pfn = zone_end_pfn(zone);
e0b9daeb 989 const bool sync = cc->mode != MIGRATE_ASYNC;
748446bb 990
3e7d3449
MG
991 ret = compaction_suitable(zone, cc->order);
992 switch (ret) {
993 case COMPACT_PARTIAL:
994 case COMPACT_SKIPPED:
995 /* Compaction is likely to fail */
996 return ret;
997 case COMPACT_CONTINUE:
998 /* Fall through to compaction */
999 ;
1000 }
1001
d3132e4b
VB
1002 /*
1003 * Clear pageblock skip if there were failures recently and compaction
1004 * is about to be retried after being deferred. kswapd does not do
1005 * this reset as it'll reset the cached information when going to sleep.
1006 */
1007 if (compaction_restarting(zone, cc->order) && !current_is_kswapd())
1008 __reset_isolation_suitable(zone);
1009
c89511ab
MG
1010 /*
1011 * Setup to move all movable pages to the end of the zone. Used cached
1012 * information on where the scanners should start but check that it
1013 * is initialised by ensuring the values are within zone boundaries.
1014 */
e0b9daeb 1015 cc->migrate_pfn = zone->compact_cached_migrate_pfn[sync];
c89511ab
MG
1016 cc->free_pfn = zone->compact_cached_free_pfn;
1017 if (cc->free_pfn < start_pfn || cc->free_pfn > end_pfn) {
1018 cc->free_pfn = end_pfn & ~(pageblock_nr_pages-1);
1019 zone->compact_cached_free_pfn = cc->free_pfn;
1020 }
1021 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn > end_pfn) {
1022 cc->migrate_pfn = start_pfn;
35979ef3
DR
1023 zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn;
1024 zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn;
c89511ab 1025 }
748446bb 1026
0eb927c0
MG
1027 trace_mm_compaction_begin(start_pfn, cc->migrate_pfn, cc->free_pfn, end_pfn);
1028
748446bb
MG
1029 migrate_prep_local();
1030
1031 while ((ret = compact_finished(zone, cc)) == COMPACT_CONTINUE) {
9d502c1c 1032 int err;
748446bb 1033
f9e35b3b
MG
1034 switch (isolate_migratepages(zone, cc)) {
1035 case ISOLATE_ABORT:
1036 ret = COMPACT_PARTIAL;
5733c7d1 1037 putback_movable_pages(&cc->migratepages);
e64c5237 1038 cc->nr_migratepages = 0;
f9e35b3b
MG
1039 goto out;
1040 case ISOLATE_NONE:
748446bb 1041 continue;
f9e35b3b
MG
1042 case ISOLATE_SUCCESS:
1043 ;
1044 }
748446bb 1045
f8c9301f
VB
1046 if (!cc->nr_migratepages)
1047 continue;
1048
d53aea3d 1049 err = migrate_pages(&cc->migratepages, compaction_alloc,
e0b9daeb 1050 compaction_free, (unsigned long)cc, cc->mode,
7b2a2d4a 1051 MR_COMPACTION);
748446bb 1052
f8c9301f
VB
1053 trace_mm_compaction_migratepages(cc->nr_migratepages, err,
1054 &cc->migratepages);
748446bb 1055
f8c9301f
VB
1056 /* All pages were either migrated or will be released */
1057 cc->nr_migratepages = 0;
9d502c1c 1058 if (err) {
5733c7d1 1059 putback_movable_pages(&cc->migratepages);
7ed695e0
VB
1060 /*
1061 * migrate_pages() may return -ENOMEM when scanners meet
1062 * and we want compact_finished() to detect it
1063 */
1064 if (err == -ENOMEM && cc->free_pfn > cc->migrate_pfn) {
4bf2bba3
DR
1065 ret = COMPACT_PARTIAL;
1066 goto out;
1067 }
748446bb 1068 }
748446bb
MG
1069 }
1070
f9e35b3b 1071out:
748446bb
MG
1072 /* Release free pages and check accounting */
1073 cc->nr_freepages -= release_freepages(&cc->freepages);
1074 VM_BUG_ON(cc->nr_freepages != 0);
1075
0eb927c0
MG
1076 trace_mm_compaction_end(ret);
1077
748446bb
MG
1078 return ret;
1079}
76ab0f53 1080
e0b9daeb
DR
1081static unsigned long compact_zone_order(struct zone *zone, int order,
1082 gfp_t gfp_mask, enum migrate_mode mode, bool *contended)
56de7263 1083{
e64c5237 1084 unsigned long ret;
56de7263
MG
1085 struct compact_control cc = {
1086 .nr_freepages = 0,
1087 .nr_migratepages = 0,
1088 .order = order,
1089 .migratetype = allocflags_to_migratetype(gfp_mask),
1090 .zone = zone,
e0b9daeb 1091 .mode = mode,
56de7263
MG
1092 };
1093 INIT_LIST_HEAD(&cc.freepages);
1094 INIT_LIST_HEAD(&cc.migratepages);
1095
e64c5237
SL
1096 ret = compact_zone(zone, &cc);
1097
1098 VM_BUG_ON(!list_empty(&cc.freepages));
1099 VM_BUG_ON(!list_empty(&cc.migratepages));
1100
1101 *contended = cc.contended;
1102 return ret;
56de7263
MG
1103}
1104
5e771905
MG
1105int sysctl_extfrag_threshold = 500;
1106
56de7263
MG
1107/**
1108 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
1109 * @zonelist: The zonelist used for the current allocation
1110 * @order: The order of the current allocation
1111 * @gfp_mask: The GFP mask of the current allocation
1112 * @nodemask: The allowed nodes to allocate from
e0b9daeb 1113 * @mode: The migration mode for async, sync light, or sync migration
661c4cb9 1114 * @contended: Return value that is true if compaction was aborted due to lock contention
53853e2d 1115 * @candidate_zone: Return the zone where we think allocation should succeed
56de7263
MG
1116 *
1117 * This is the main entry point for direct page compaction.
1118 */
1119unsigned long try_to_compact_pages(struct zonelist *zonelist,
77f1fe6b 1120 int order, gfp_t gfp_mask, nodemask_t *nodemask,
53853e2d
VB
1121 enum migrate_mode mode, bool *contended,
1122 struct zone **candidate_zone)
56de7263
MG
1123{
1124 enum zone_type high_zoneidx = gfp_zone(gfp_mask);
1125 int may_enter_fs = gfp_mask & __GFP_FS;
1126 int may_perform_io = gfp_mask & __GFP_IO;
56de7263
MG
1127 struct zoneref *z;
1128 struct zone *zone;
53853e2d 1129 int rc = COMPACT_DEFERRED;
d95ea5d1 1130 int alloc_flags = 0;
56de7263 1131
4ffb6335 1132 /* Check if the GFP flags allow compaction */
c5a73c3d 1133 if (!order || !may_enter_fs || !may_perform_io)
53853e2d 1134 return COMPACT_SKIPPED;
56de7263 1135
d95ea5d1
BZ
1136#ifdef CONFIG_CMA
1137 if (allocflags_to_migratetype(gfp_mask) == MIGRATE_MOVABLE)
1138 alloc_flags |= ALLOC_CMA;
1139#endif
56de7263
MG
1140 /* Compact each zone in the list */
1141 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
1142 nodemask) {
56de7263
MG
1143 int status;
1144
53853e2d
VB
1145 if (compaction_deferred(zone, order))
1146 continue;
1147
e0b9daeb 1148 status = compact_zone_order(zone, order, gfp_mask, mode,
8fb74b9f 1149 contended);
56de7263
MG
1150 rc = max(status, rc);
1151
3e7d3449 1152 /* If a normal allocation would succeed, stop compacting */
d95ea5d1 1153 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0,
53853e2d
VB
1154 alloc_flags)) {
1155 *candidate_zone = zone;
1156 /*
1157 * We think the allocation will succeed in this zone,
1158 * but it is not certain, hence the false. The caller
1159 * will repeat this with true if allocation indeed
1160 * succeeds in this zone.
1161 */
1162 compaction_defer_reset(zone, order, false);
56de7263 1163 break;
53853e2d
VB
1164 } else if (mode != MIGRATE_ASYNC) {
1165 /*
1166 * We think that allocation won't succeed in this zone
1167 * so we defer compaction there. If it ends up
1168 * succeeding after all, it will be reset.
1169 */
1170 defer_compaction(zone, order);
1171 }
56de7263
MG
1172 }
1173
1174 return rc;
1175}
1176
1177
76ab0f53 1178/* Compact all zones within a node */
7103f16d 1179static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
76ab0f53
MG
1180{
1181 int zoneid;
76ab0f53
MG
1182 struct zone *zone;
1183
76ab0f53 1184 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
76ab0f53
MG
1185
1186 zone = &pgdat->node_zones[zoneid];
1187 if (!populated_zone(zone))
1188 continue;
1189
7be62de9
RR
1190 cc->nr_freepages = 0;
1191 cc->nr_migratepages = 0;
1192 cc->zone = zone;
1193 INIT_LIST_HEAD(&cc->freepages);
1194 INIT_LIST_HEAD(&cc->migratepages);
76ab0f53 1195
aad6ec37 1196 if (cc->order == -1 || !compaction_deferred(zone, cc->order))
7be62de9 1197 compact_zone(zone, cc);
76ab0f53 1198
aff62249 1199 if (cc->order > 0) {
de6c60a6
VB
1200 if (zone_watermark_ok(zone, cc->order,
1201 low_wmark_pages(zone), 0, 0))
1202 compaction_defer_reset(zone, cc->order, false);
aff62249
RR
1203 }
1204
7be62de9
RR
1205 VM_BUG_ON(!list_empty(&cc->freepages));
1206 VM_BUG_ON(!list_empty(&cc->migratepages));
76ab0f53 1207 }
76ab0f53
MG
1208}
1209
7103f16d 1210void compact_pgdat(pg_data_t *pgdat, int order)
7be62de9
RR
1211{
1212 struct compact_control cc = {
1213 .order = order,
e0b9daeb 1214 .mode = MIGRATE_ASYNC,
7be62de9
RR
1215 };
1216
3a7200af
MG
1217 if (!order)
1218 return;
1219
7103f16d 1220 __compact_pgdat(pgdat, &cc);
7be62de9
RR
1221}
1222
7103f16d 1223static void compact_node(int nid)
7be62de9 1224{
7be62de9
RR
1225 struct compact_control cc = {
1226 .order = -1,
e0b9daeb 1227 .mode = MIGRATE_SYNC,
91ca9186 1228 .ignore_skip_hint = true,
7be62de9
RR
1229 };
1230
7103f16d 1231 __compact_pgdat(NODE_DATA(nid), &cc);
7be62de9
RR
1232}
1233
76ab0f53 1234/* Compact all nodes in the system */
7964c06d 1235static void compact_nodes(void)
76ab0f53
MG
1236{
1237 int nid;
1238
8575ec29
HD
1239 /* Flush pending updates to the LRU lists */
1240 lru_add_drain_all();
1241
76ab0f53
MG
1242 for_each_online_node(nid)
1243 compact_node(nid);
76ab0f53
MG
1244}
1245
1246/* The written value is actually unused, all memory is compacted */
1247int sysctl_compact_memory;
1248
1249/* This is the entry point for compacting all nodes via /proc/sys/vm */
1250int sysctl_compaction_handler(struct ctl_table *table, int write,
1251 void __user *buffer, size_t *length, loff_t *ppos)
1252{
1253 if (write)
7964c06d 1254 compact_nodes();
76ab0f53
MG
1255
1256 return 0;
1257}
ed4a6d7f 1258
5e771905
MG
1259int sysctl_extfrag_handler(struct ctl_table *table, int write,
1260 void __user *buffer, size_t *length, loff_t *ppos)
1261{
1262 proc_dointvec_minmax(table, write, buffer, length, ppos);
1263
1264 return 0;
1265}
1266
ed4a6d7f 1267#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
74e77fb9 1268static ssize_t sysfs_compact_node(struct device *dev,
10fbcf4c 1269 struct device_attribute *attr,
ed4a6d7f
MG
1270 const char *buf, size_t count)
1271{
8575ec29
HD
1272 int nid = dev->id;
1273
1274 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
1275 /* Flush pending updates to the LRU lists */
1276 lru_add_drain_all();
1277
1278 compact_node(nid);
1279 }
ed4a6d7f
MG
1280
1281 return count;
1282}
10fbcf4c 1283static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
ed4a6d7f
MG
1284
1285int compaction_register_node(struct node *node)
1286{
10fbcf4c 1287 return device_create_file(&node->dev, &dev_attr_compact);
ed4a6d7f
MG
1288}
1289
1290void compaction_unregister_node(struct node *node)
1291{
10fbcf4c 1292 return device_remove_file(&node->dev, &dev_attr_compact);
ed4a6d7f
MG
1293}
1294#endif /* CONFIG_SYSFS && CONFIG_NUMA */
ff9543fd
MN
1295
1296#endif /* CONFIG_COMPACTION */