blob: 1067c07cb33d7ff29db0c6f50d5a0762baf2aecd [file] [log] [blame]
Mel Gorman748446b2010-05-24 14:32:27 -07001/*
2 * linux/mm/compaction.c
3 *
4 * Memory compaction for the reduction of external fragmentation. Note that
5 * this heavily depends upon page migration to do all the real heavy
6 * lifting
7 *
8 * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie>
9 */
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>
Mel Gorman76ab0f52010-05-24 14:32:28 -070015#include <linux/sysctl.h>
Mel Gormaned4a6d72010-05-24 14:32:29 -070016#include <linux/sysfs.h>
Rafael Aquinibf6bddf2012-12-11 16:02:42 -080017#include <linux/balloon_compaction.h>
Minchan Kim194159f2013-02-22 16:33:58 -080018#include <linux/page-isolation.h>
Mel Gorman748446b2010-05-24 14:32:27 -070019#include "internal.h"
20
Minchan Kim010fc292012-12-20 15:05:06 -080021#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
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010036#if defined CONFIG_COMPACTION || defined CONFIG_CMA
37
Mel Gormanb7aba692011-01-13 15:45:54 -080038#define CREATE_TRACE_POINTS
39#include <trace/events/compaction.h>
40
Mel Gorman748446b2010-05-24 14:32:27 -070041static 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
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010055static 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
Michal Nazarewicz47118af2011-12-29 13:09:50 +010065static inline bool migrate_async_suitable(int migratetype)
66{
67 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
68}
69
Vlastimil Babka7d49d882014-10-09 15:27:11 -070070/*
71 * Check that the whole (or subset of) a pageblock given by the interval of
72 * [start_pfn, end_pfn) is valid and within the same zone, before scanning it
73 * with the migration of free compaction scanner. The scanners then need to
74 * use only pfn_valid_within() check for arches that allow holes within
75 * pageblocks.
76 *
77 * Return struct page pointer of start_pfn, or NULL if checks were not passed.
78 *
79 * It's possible on some configurations to have a setup like node0 node1 node0
80 * i.e. it's possible that all pages within a zones range of pages do not
81 * belong to a single zone. We assume that a border between node0 and node1
82 * can occur within a single pageblock, but not a node0 node1 node0
83 * interleaving within a single pageblock. It is therefore sufficient to check
84 * the first and last page of a pageblock and avoid checking each individual
85 * page in a pageblock.
86 */
87static struct page *pageblock_pfn_to_page(unsigned long start_pfn,
88 unsigned long end_pfn, struct zone *zone)
89{
90 struct page *start_page;
91 struct page *end_page;
92
93 /* end_pfn is one past the range we are checking */
94 end_pfn--;
95
96 if (!pfn_valid(start_pfn) || !pfn_valid(end_pfn))
97 return NULL;
98
99 start_page = pfn_to_page(start_pfn);
100
101 if (page_zone(start_page) != zone)
102 return NULL;
103
104 end_page = pfn_to_page(end_pfn);
105
106 /* This gives a shorter code than deriving page_zone(end_page) */
107 if (page_zone_id(start_page) != page_zone_id(end_page))
108 return NULL;
109
110 return start_page;
111}
112
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700113#ifdef CONFIG_COMPACTION
114/* Returns true if the pageblock should be scanned for pages to isolate. */
115static inline bool isolation_suitable(struct compact_control *cc,
116 struct page *page)
117{
118 if (cc->ignore_skip_hint)
119 return true;
120
121 return !get_pageblock_skip(page);
122}
123
124/*
125 * This function is called to clear all cached information on pageblocks that
126 * should be skipped for page isolation when the migrate and free page scanner
127 * meet.
128 */
Mel Gorman62997022012-10-08 16:32:47 -0700129static void __reset_isolation_suitable(struct zone *zone)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700130{
131 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -0800132 unsigned long end_pfn = zone_end_pfn(zone);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700133 unsigned long pfn;
134
David Rientjes35979ef2014-06-04 16:08:27 -0700135 zone->compact_cached_migrate_pfn[0] = start_pfn;
136 zone->compact_cached_migrate_pfn[1] = start_pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -0700137 zone->compact_cached_free_pfn = end_pfn;
Mel Gorman62997022012-10-08 16:32:47 -0700138 zone->compact_blockskip_flush = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700139
140 /* Walk the zone and mark every pageblock as suitable for isolation */
141 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
142 struct page *page;
143
144 cond_resched();
145
146 if (!pfn_valid(pfn))
147 continue;
148
149 page = pfn_to_page(pfn);
150 if (zone != page_zone(page))
151 continue;
152
153 clear_pageblock_skip(page);
154 }
155}
156
Mel Gorman62997022012-10-08 16:32:47 -0700157void reset_isolation_suitable(pg_data_t *pgdat)
158{
159 int zoneid;
160
161 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
162 struct zone *zone = &pgdat->node_zones[zoneid];
163 if (!populated_zone(zone))
164 continue;
165
166 /* Only flush if a full compaction finished recently */
167 if (zone->compact_blockskip_flush)
168 __reset_isolation_suitable(zone);
169 }
170}
171
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700172/*
173 * If no pages were isolated then mark this pageblock to be skipped in the
Mel Gorman62997022012-10-08 16:32:47 -0700174 * future. The information is later cleared by __reset_isolation_suitable().
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700175 */
Mel Gormanc89511a2012-10-08 16:32:45 -0700176static void update_pageblock_skip(struct compact_control *cc,
177 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700178 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700179{
Mel Gormanc89511a2012-10-08 16:32:45 -0700180 struct zone *zone = cc->zone;
David Rientjes35979ef2014-06-04 16:08:27 -0700181 unsigned long pfn;
Joonsoo Kim6815bf32013-12-18 17:08:52 -0800182
183 if (cc->ignore_skip_hint)
184 return;
185
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700186 if (!page)
187 return;
188
David Rientjes35979ef2014-06-04 16:08:27 -0700189 if (nr_isolated)
190 return;
191
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700192 set_pageblock_skip(page);
Mel Gormanc89511a2012-10-08 16:32:45 -0700193
David Rientjes35979ef2014-06-04 16:08:27 -0700194 pfn = page_to_pfn(page);
195
196 /* Update where async and sync compaction should restart */
197 if (migrate_scanner) {
198 if (cc->finished_update_migrate)
199 return;
200 if (pfn > zone->compact_cached_migrate_pfn[0])
201 zone->compact_cached_migrate_pfn[0] = pfn;
David Rientjese0b9dae2014-06-04 16:08:28 -0700202 if (cc->mode != MIGRATE_ASYNC &&
203 pfn > zone->compact_cached_migrate_pfn[1])
David Rientjes35979ef2014-06-04 16:08:27 -0700204 zone->compact_cached_migrate_pfn[1] = pfn;
205 } else {
206 if (cc->finished_update_free)
207 return;
208 if (pfn < zone->compact_cached_free_pfn)
209 zone->compact_cached_free_pfn = pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -0700210 }
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700211}
212#else
213static inline bool isolation_suitable(struct compact_control *cc,
214 struct page *page)
215{
216 return true;
217}
218
Mel Gormanc89511a2012-10-08 16:32:45 -0700219static void update_pageblock_skip(struct compact_control *cc,
220 struct page *page, unsigned long nr_isolated,
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700221 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700222{
223}
224#endif /* CONFIG_COMPACTION */
225
Mel Gorman2a1402a2012-10-08 16:32:33 -0700226static inline bool should_release_lock(spinlock_t *lock)
227{
228 return need_resched() || spin_is_contended(lock);
229}
230
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100231/*
Mel Gormanc67fe372012-08-21 16:16:17 -0700232 * Compaction requires the taking of some coarse locks that are potentially
233 * very heavily contended. Check if the process needs to be scheduled or
234 * if the lock is contended. For async compaction, back out in the event
235 * if contention is severe. For sync compaction, schedule.
236 *
237 * Returns true if the lock is held.
238 * Returns false if the lock is released and compaction should abort
239 */
240static bool compact_checklock_irqsave(spinlock_t *lock, unsigned long *flags,
241 bool locked, struct compact_control *cc)
242{
Mel Gorman2a1402a2012-10-08 16:32:33 -0700243 if (should_release_lock(lock)) {
Mel Gormanc67fe372012-08-21 16:16:17 -0700244 if (locked) {
245 spin_unlock_irqrestore(lock, *flags);
246 locked = false;
247 }
248
249 /* async aborts if taking too long or contended */
David Rientjese0b9dae2014-06-04 16:08:28 -0700250 if (cc->mode == MIGRATE_ASYNC) {
Shaohua Lie64c5232012-10-08 16:32:27 -0700251 cc->contended = true;
Mel Gormanc67fe372012-08-21 16:16:17 -0700252 return false;
253 }
254
255 cond_resched();
Mel Gormanc67fe372012-08-21 16:16:17 -0700256 }
257
258 if (!locked)
259 spin_lock_irqsave(lock, *flags);
260 return true;
261}
262
Vlastimil Babkabe976572014-06-04 16:10:41 -0700263/*
264 * Aside from avoiding lock contention, compaction also periodically checks
265 * need_resched() and either schedules in sync compaction or aborts async
266 * compaction. This is similar to what compact_checklock_irqsave() does, but
267 * is used where no lock is concerned.
268 *
269 * Returns false when no scheduling was needed, or sync compaction scheduled.
270 * Returns true when async compaction should abort.
271 */
272static inline bool compact_should_abort(struct compact_control *cc)
273{
274 /* async compaction aborts if contended */
275 if (need_resched()) {
276 if (cc->mode == MIGRATE_ASYNC) {
277 cc->contended = true;
278 return true;
279 }
280
281 cond_resched();
282 }
283
284 return false;
285}
286
Mel Gormanf40d1e42012-10-08 16:32:36 -0700287/* Returns true if the page is within a block suitable for migration to */
288static bool suitable_migration_target(struct page *page)
289{
Joonsoo Kim7d348b92014-04-07 15:37:03 -0700290 /* If the page is a large free page, then disallow migration */
Mel Gormanf40d1e42012-10-08 16:32:36 -0700291 if (PageBuddy(page) && page_order(page) >= pageblock_order)
Joonsoo Kim7d348b92014-04-07 15:37:03 -0700292 return false;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700293
294 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
Joonsoo Kim7d348b92014-04-07 15:37:03 -0700295 if (migrate_async_suitable(get_pageblock_migratetype(page)))
Mel Gormanf40d1e42012-10-08 16:32:36 -0700296 return true;
297
298 /* Otherwise skip the block */
299 return false;
300}
301
Mel Gormanc67fe372012-08-21 16:16:17 -0700302/*
Jerome Marchand9e4be472013-11-12 15:07:12 -0800303 * Isolate free pages onto a private freelist. If @strict is true, will abort
304 * returning 0 on any invalid PFNs or non-free pages inside of the pageblock
305 * (even though it may still end up isolating some pages).
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100306 */
Mel Gormanf40d1e42012-10-08 16:32:36 -0700307static unsigned long isolate_freepages_block(struct compact_control *cc,
308 unsigned long blockpfn,
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100309 unsigned long end_pfn,
310 struct list_head *freelist,
311 bool strict)
Mel Gorman748446b2010-05-24 14:32:27 -0700312{
Mel Gormanb7aba692011-01-13 15:45:54 -0800313 int nr_scanned = 0, total_isolated = 0;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700314 struct page *cursor, *valid_page = NULL;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700315 unsigned long flags;
316 bool locked = false;
Mel Gorman748446b2010-05-24 14:32:27 -0700317
Mel Gorman748446b2010-05-24 14:32:27 -0700318 cursor = pfn_to_page(blockpfn);
319
Mel Gormanf40d1e42012-10-08 16:32:36 -0700320 /* Isolate free pages. */
Mel Gorman748446b2010-05-24 14:32:27 -0700321 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
322 int isolated, i;
323 struct page *page = cursor;
324
Mel Gormanb7aba692011-01-13 15:45:54 -0800325 nr_scanned++;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700326 if (!pfn_valid_within(blockpfn))
Laura Abbott2af120b2014-03-10 15:49:44 -0700327 goto isolate_fail;
328
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700329 if (!valid_page)
330 valid_page = page;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700331 if (!PageBuddy(page))
Laura Abbott2af120b2014-03-10 15:49:44 -0700332 goto isolate_fail;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700333
334 /*
335 * The zone lock must be held to isolate freepages.
336 * Unfortunately this is a very coarse lock and can be
337 * heavily contended if there are parallel allocations
338 * or parallel compactions. For async compaction do not
339 * spin on the lock and we acquire the lock as late as
340 * possible.
341 */
342 locked = compact_checklock_irqsave(&cc->zone->lock, &flags,
343 locked, cc);
344 if (!locked)
345 break;
346
Mel Gormanf40d1e42012-10-08 16:32:36 -0700347 /* Recheck this is a buddy page under lock */
348 if (!PageBuddy(page))
Laura Abbott2af120b2014-03-10 15:49:44 -0700349 goto isolate_fail;
Mel Gorman748446b2010-05-24 14:32:27 -0700350
351 /* Found a free page, break it into order-0 pages */
352 isolated = split_free_page(page);
353 total_isolated += isolated;
354 for (i = 0; i < isolated; i++) {
355 list_add(&page->lru, freelist);
356 page++;
357 }
358
359 /* If a page was split, advance to the end of it */
360 if (isolated) {
361 blockpfn += isolated - 1;
362 cursor += isolated - 1;
Laura Abbott2af120b2014-03-10 15:49:44 -0700363 continue;
Mel Gorman748446b2010-05-24 14:32:27 -0700364 }
Laura Abbott2af120b2014-03-10 15:49:44 -0700365
366isolate_fail:
367 if (strict)
368 break;
369 else
370 continue;
371
Mel Gorman748446b2010-05-24 14:32:27 -0700372 }
373
Mel Gormanb7aba692011-01-13 15:45:54 -0800374 trace_mm_compaction_isolate_freepages(nr_scanned, total_isolated);
Mel Gormanf40d1e42012-10-08 16:32:36 -0700375
376 /*
377 * If strict isolation is requested by CMA then check that all the
378 * pages requested were isolated. If there were any failures, 0 is
379 * returned and CMA will fail.
380 */
Laura Abbott2af120b2014-03-10 15:49:44 -0700381 if (strict && blockpfn < end_pfn)
Mel Gormanf40d1e42012-10-08 16:32:36 -0700382 total_isolated = 0;
383
384 if (locked)
385 spin_unlock_irqrestore(&cc->zone->lock, flags);
386
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700387 /* Update the pageblock-skip if the whole pageblock was scanned */
388 if (blockpfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700389 update_pageblock_skip(cc, valid_page, total_isolated, false);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700390
Minchan Kim010fc292012-12-20 15:05:06 -0800391 count_compact_events(COMPACTFREE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100392 if (total_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800393 count_compact_events(COMPACTISOLATED, total_isolated);
Mel Gorman748446b2010-05-24 14:32:27 -0700394 return total_isolated;
395}
396
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100397/**
398 * isolate_freepages_range() - isolate free pages.
399 * @start_pfn: The first PFN to start isolating.
400 * @end_pfn: The one-past-last PFN.
401 *
402 * Non-free pages, invalid PFNs, or zone boundaries within the
403 * [start_pfn, end_pfn) range are considered errors, cause function to
404 * undo its actions and return zero.
405 *
406 * Otherwise, function returns one-past-the-last PFN of isolated page
407 * (which may be greater then end_pfn if end fell in a middle of
408 * a free page).
409 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100410unsigned long
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700411isolate_freepages_range(struct compact_control *cc,
412 unsigned long start_pfn, unsigned long end_pfn)
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100413{
Mel Gormanf40d1e42012-10-08 16:32:36 -0700414 unsigned long isolated, pfn, block_end_pfn;
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100415 LIST_HEAD(freelist);
416
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700417 pfn = start_pfn;
418 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100419
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700420 for (; pfn < end_pfn; pfn += isolated,
421 block_end_pfn += pageblock_nr_pages) {
422
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100423 block_end_pfn = min(block_end_pfn, end_pfn);
424
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700425 if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone))
426 break;
427
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700428 isolated = isolate_freepages_block(cc, pfn, block_end_pfn,
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100429 &freelist, true);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100430
431 /*
432 * In strict mode, isolate_freepages_block() returns 0 if
433 * there are any holes in the block (ie. invalid PFNs or
434 * non-free pages).
435 */
436 if (!isolated)
437 break;
438
439 /*
440 * If we managed to isolate pages, it is always (1 << n) *
441 * pageblock_nr_pages for some non-negative n. (Max order
442 * page may span two pageblocks).
443 */
444 }
445
446 /* split_free_page does not map the pages */
447 map_pages(&freelist);
448
449 if (pfn < end_pfn) {
450 /* Loop terminated early, cleanup. */
451 release_freepages(&freelist);
452 return 0;
453 }
454
455 /* We don't use freelists for anything. */
456 return pfn;
457}
458
Mel Gorman748446b2010-05-24 14:32:27 -0700459/* Update the number of anon and file isolated pages in the zone */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700460static void acct_isolated(struct zone *zone, struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700461{
462 struct page *page;
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700463 unsigned int count[2] = { 0, };
Mel Gorman748446b2010-05-24 14:32:27 -0700464
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700465 if (list_empty(&cc->migratepages))
466 return;
467
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700468 list_for_each_entry(page, &cc->migratepages, lru)
469 count[!!page_is_file_cache(page)]++;
Mel Gorman748446b2010-05-24 14:32:27 -0700470
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700471 mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
472 mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
Mel Gorman748446b2010-05-24 14:32:27 -0700473}
474
475/* Similar to reclaim, but different enough that they don't share logic */
476static bool too_many_isolated(struct zone *zone)
477{
Minchan Kimbc693042010-09-09 16:38:00 -0700478 unsigned long active, inactive, isolated;
Mel Gorman748446b2010-05-24 14:32:27 -0700479
480 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
481 zone_page_state(zone, NR_INACTIVE_ANON);
Minchan Kimbc693042010-09-09 16:38:00 -0700482 active = zone_page_state(zone, NR_ACTIVE_FILE) +
483 zone_page_state(zone, NR_ACTIVE_ANON);
Mel Gorman748446b2010-05-24 14:32:27 -0700484 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
485 zone_page_state(zone, NR_ISOLATED_ANON);
486
Minchan Kimbc693042010-09-09 16:38:00 -0700487 return isolated > (inactive + active) / 2;
Mel Gorman748446b2010-05-24 14:32:27 -0700488}
489
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100490/**
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700491 * isolate_migratepages_block() - isolate all migrate-able pages within
492 * a single pageblock
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100493 * @cc: Compaction control structure.
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700494 * @low_pfn: The first PFN to isolate
495 * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock
496 * @isolate_mode: Isolation mode to be used.
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100497 *
498 * Isolate all pages that can be migrated from the range specified by
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700499 * [low_pfn, end_pfn). The range is expected to be within same pageblock.
500 * Returns zero if there is a fatal signal pending, otherwise PFN of the
501 * first page that was not scanned (which may be both less, equal to or more
502 * than end_pfn).
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100503 *
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700504 * The pages are isolated on cc->migratepages list (not required to be empty),
505 * and cc->nr_migratepages is updated accordingly. The cc->migrate_pfn field
506 * is neither read nor updated.
Mel Gorman748446b2010-05-24 14:32:27 -0700507 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700508static unsigned long
509isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn,
510 unsigned long end_pfn, isolate_mode_t isolate_mode)
Mel Gorman748446b2010-05-24 14:32:27 -0700511{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700512 struct zone *zone = cc->zone;
Mel Gormanb7aba692011-01-13 15:45:54 -0800513 unsigned long nr_scanned = 0, nr_isolated = 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700514 struct list_head *migratelist = &cc->migratepages;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700515 struct lruvec *lruvec;
Mel Gormanc67fe372012-08-21 16:16:17 -0700516 unsigned long flags;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700517 bool locked = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700518 struct page *page = NULL, *valid_page = NULL;
Mel Gorman748446b2010-05-24 14:32:27 -0700519
Mel Gorman748446b2010-05-24 14:32:27 -0700520 /*
521 * Ensure that there are not too many pages isolated from the LRU
522 * list by either parallel reclaimers or compaction. If there are,
523 * delay for some time until fewer pages are isolated
524 */
525 while (unlikely(too_many_isolated(zone))) {
Mel Gormanf9e35b32011-06-15 15:08:52 -0700526 /* async migration should just abort */
David Rientjese0b9dae2014-06-04 16:08:28 -0700527 if (cc->mode == MIGRATE_ASYNC)
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100528 return 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700529
Mel Gorman748446b2010-05-24 14:32:27 -0700530 congestion_wait(BLK_RW_ASYNC, HZ/10);
531
532 if (fatal_signal_pending(current))
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100533 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700534 }
535
Vlastimil Babkabe976572014-06-04 16:10:41 -0700536 if (compact_should_abort(cc))
537 return 0;
David Rientjesaeef4b82014-06-04 16:08:31 -0700538
Mel Gorman748446b2010-05-24 14:32:27 -0700539 /* Time to isolate some pages for migration */
Mel Gorman748446b2010-05-24 14:32:27 -0700540 for (; low_pfn < end_pfn; low_pfn++) {
Andrea Arcangelib2eef8c2011-03-22 16:33:10 -0700541 /* give a chance to irqs before checking need_resched() */
Joonsoo Kimbe1aa032014-04-07 15:37:05 -0700542 if (locked && !(low_pfn % SWAP_CLUSTER_MAX)) {
Mel Gorman2a1402a2012-10-08 16:32:33 -0700543 if (should_release_lock(&zone->lru_lock)) {
544 spin_unlock_irqrestore(&zone->lru_lock, flags);
545 locked = false;
546 }
Andrea Arcangelib2eef8c2011-03-22 16:33:10 -0700547 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700548
Mel Gorman748446b2010-05-24 14:32:27 -0700549 if (!pfn_valid_within(low_pfn))
550 continue;
Mel Gormanb7aba692011-01-13 15:45:54 -0800551 nr_scanned++;
Mel Gorman748446b2010-05-24 14:32:27 -0700552
Mel Gorman748446b2010-05-24 14:32:27 -0700553 page = pfn_to_page(low_pfn);
Mel Gormandc908602012-02-08 17:13:38 -0800554
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700555 if (!valid_page)
556 valid_page = page;
557
Mel Gorman6c144662014-01-23 15:53:38 -0800558 /*
559 * Skip if free. page_order cannot be used without zone->lock
560 * as nothing prevents parallel allocations or buddy merging.
561 */
Mel Gorman748446b2010-05-24 14:32:27 -0700562 if (PageBuddy(page))
563 continue;
564
Mel Gorman9927af742011-01-13 15:45:59 -0800565 /*
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800566 * Check may be lockless but that's ok as we recheck later.
567 * It's possible to migrate LRU pages and balloon pages
568 * Skip any other type of page
569 */
570 if (!PageLRU(page)) {
571 if (unlikely(balloon_page_movable(page))) {
572 if (locked && balloon_page_isolate(page)) {
573 /* Successfully isolated */
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700574 goto isolate_success;
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800575 }
576 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800577 continue;
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800578 }
Andrea Arcangelibc835012011-01-13 15:47:08 -0800579
580 /*
Mel Gorman2a1402a2012-10-08 16:32:33 -0700581 * PageLRU is set. lru_lock normally excludes isolation
582 * splitting and collapsing (collapsing has already happened
583 * if PageLRU is set) but the lock is not necessarily taken
584 * here and it is wasteful to take it just to check transhuge.
585 * Check TransHuge without lock and skip the whole pageblock if
586 * it's either a transhuge or hugetlbfs page, as calling
587 * compound_order() without preventing THP from splitting the
588 * page underneath us may return surprising results.
Andrea Arcangelibc835012011-01-13 15:47:08 -0800589 */
590 if (PageTransHuge(page)) {
Mel Gorman2a1402a2012-10-08 16:32:33 -0700591 if (!locked)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700592 low_pfn = ALIGN(low_pfn + 1,
593 pageblock_nr_pages) - 1;
594 else
595 low_pfn += (1 << compound_order(page)) - 1;
596
Mel Gorman2a1402a2012-10-08 16:32:33 -0700597 continue;
598 }
599
David Rientjes119d6d52014-04-03 14:48:00 -0700600 /*
601 * Migration will fail if an anonymous page is pinned in memory,
602 * so avoid taking lru_lock and isolating it unnecessarily in an
603 * admittedly racy check.
604 */
605 if (!page_mapping(page) &&
606 page_count(page) > page_mapcount(page))
607 continue;
608
Mel Gorman2a1402a2012-10-08 16:32:33 -0700609 /* Check if it is ok to still hold the lock */
610 locked = compact_checklock_irqsave(&zone->lru_lock, &flags,
611 locked, cc);
612 if (!locked || fatal_signal_pending(current))
613 break;
614
615 /* Recheck PageLRU and PageTransHuge under lock */
616 if (!PageLRU(page))
617 continue;
618 if (PageTransHuge(page)) {
Andrea Arcangelibc835012011-01-13 15:47:08 -0800619 low_pfn += (1 << compound_order(page)) - 1;
620 continue;
621 }
622
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700623 lruvec = mem_cgroup_page_lruvec(page, zone);
624
Mel Gorman748446b2010-05-24 14:32:27 -0700625 /* Try isolate the page */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700626 if (__isolate_lru_page(page, isolate_mode) != 0)
Mel Gorman748446b2010-05-24 14:32:27 -0700627 continue;
628
Sasha Levin309381fea2014-01-23 15:52:54 -0800629 VM_BUG_ON_PAGE(PageTransCompound(page), page);
Andrea Arcangelibc835012011-01-13 15:47:08 -0800630
Mel Gorman748446b2010-05-24 14:32:27 -0700631 /* Successfully isolated */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700632 del_page_from_lru_list(page, lruvec, page_lru(page));
Joonsoo Kimb6c75012014-04-07 15:37:07 -0700633
634isolate_success:
635 cc->finished_update_migrate = true;
Mel Gorman748446b2010-05-24 14:32:27 -0700636 list_add(&page->lru, migratelist);
Mel Gorman748446b2010-05-24 14:32:27 -0700637 cc->nr_migratepages++;
Mel Gormanb7aba692011-01-13 15:45:54 -0800638 nr_isolated++;
Mel Gorman748446b2010-05-24 14:32:27 -0700639
640 /* Avoid isolating too much */
Hillf Danton31b83842012-01-10 15:07:59 -0800641 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
642 ++low_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700643 break;
Hillf Danton31b83842012-01-10 15:07:59 -0800644 }
Mel Gorman748446b2010-05-24 14:32:27 -0700645 }
646
Mel Gormanc67fe372012-08-21 16:16:17 -0700647 if (locked)
648 spin_unlock_irqrestore(&zone->lru_lock, flags);
Mel Gorman748446b2010-05-24 14:32:27 -0700649
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800650 /*
651 * Update the pageblock-skip information and cached scanner pfn,
652 * if the whole pageblock was scanned without isolating any page.
Vlastimil Babka50b5b092014-01-21 15:51:10 -0800653 */
David Rientjes35979ef2014-06-04 16:08:27 -0700654 if (low_pfn == end_pfn)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700655 update_pageblock_skip(cc, valid_page, nr_isolated, true);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700656
Mel Gormanb7aba692011-01-13 15:45:54 -0800657 trace_mm_compaction_isolate_migratepages(nr_scanned, nr_isolated);
658
Minchan Kim010fc292012-12-20 15:05:06 -0800659 count_compact_events(COMPACTMIGRATE_SCANNED, nr_scanned);
Mel Gorman397487d2012-10-19 12:00:10 +0100660 if (nr_isolated)
Minchan Kim010fc292012-12-20 15:05:06 -0800661 count_compact_events(COMPACTISOLATED, nr_isolated);
Mel Gorman397487d2012-10-19 12:00:10 +0100662
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100663 return low_pfn;
664}
665
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700666/**
667 * isolate_migratepages_range() - isolate migrate-able pages in a PFN range
668 * @cc: Compaction control structure.
669 * @start_pfn: The first PFN to start isolating.
670 * @end_pfn: The one-past-last PFN.
671 *
672 * Returns zero if isolation fails fatally due to e.g. pending signal.
673 * Otherwise, function returns one-past-the-last PFN of isolated page
674 * (which may be greater than end_pfn if end fell in a middle of a THP page).
675 */
676unsigned long
677isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn,
678 unsigned long end_pfn)
679{
680 unsigned long pfn, block_end_pfn;
681
682 /* Scan block by block. First and last block may be incomplete */
683 pfn = start_pfn;
684 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
685
686 for (; pfn < end_pfn; pfn = block_end_pfn,
687 block_end_pfn += pageblock_nr_pages) {
688
689 block_end_pfn = min(block_end_pfn, end_pfn);
690
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700691 if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone))
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700692 continue;
693
694 pfn = isolate_migratepages_block(cc, pfn, block_end_pfn,
695 ISOLATE_UNEVICTABLE);
696
697 /*
698 * In case of fatal failure, release everything that might
699 * have been isolated in the previous iteration, and signal
700 * the failure back to caller.
701 */
702 if (!pfn) {
703 putback_movable_pages(&cc->migratepages);
704 cc->nr_migratepages = 0;
705 break;
706 }
707 }
708 acct_isolated(cc->zone, cc);
709
710 return pfn;
711}
712
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100713#endif /* CONFIG_COMPACTION || CONFIG_CMA */
714#ifdef CONFIG_COMPACTION
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100715/*
716 * Based on information in the current compact_control, find blocks
717 * suitable for isolating free pages from and then isolate them.
718 */
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700719static void isolate_freepages(struct compact_control *cc)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100720{
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700721 struct zone *zone = cc->zone;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100722 struct page *page;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700723 unsigned long block_start_pfn; /* start of current pageblock */
724 unsigned long block_end_pfn; /* end of current pageblock */
725 unsigned long low_pfn; /* lowest pfn scanner is able to scan */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100726 int nr_freepages = cc->nr_freepages;
727 struct list_head *freelist = &cc->freepages;
728
729 /*
730 * Initialise the free scanner. The starting point is where we last
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700731 * successfully isolated from, zone-cached value, or the end of the
732 * zone when isolating for the first time. We need this aligned to
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700733 * the pageblock boundary, because we do
734 * block_start_pfn -= pageblock_nr_pages in the for loop.
735 * For ending point, take care when isolating in last pageblock of a
736 * a zone which ends in the middle of a pageblock.
Vlastimil Babka49e068f2014-05-06 12:50:03 -0700737 * The low boundary is the end of the pageblock the migration scanner
738 * is using.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100739 */
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700740 block_start_pfn = cc->free_pfn & ~(pageblock_nr_pages-1);
741 block_end_pfn = min(block_start_pfn + pageblock_nr_pages,
742 zone_end_pfn(zone));
Vlastimil Babka7ed695e2014-01-21 15:51:09 -0800743 low_pfn = ALIGN(cc->migrate_pfn + 1, pageblock_nr_pages);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100744
745 /*
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100746 * Isolate free pages until enough are available to migrate the
747 * pages on cc->migratepages. We stop searching if the migrate
748 * and free page scanners meet or enough free pages are isolated.
749 */
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700750 for (; block_start_pfn >= low_pfn && cc->nr_migratepages > nr_freepages;
751 block_end_pfn = block_start_pfn,
752 block_start_pfn -= pageblock_nr_pages) {
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100753 unsigned long isolated;
754
David Rientjesf6ea3ad2013-09-30 13:45:03 -0700755 /*
756 * This can iterate a massively long zone without finding any
757 * suitable migration targets, so periodically check if we need
Vlastimil Babkabe976572014-06-04 16:10:41 -0700758 * to schedule, or even abort async compaction.
David Rientjesf6ea3ad2013-09-30 13:45:03 -0700759 */
Vlastimil Babkabe976572014-06-04 16:10:41 -0700760 if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
761 && compact_should_abort(cc))
762 break;
David Rientjesf6ea3ad2013-09-30 13:45:03 -0700763
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700764 page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn,
765 zone);
766 if (!page)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100767 continue;
768
769 /* Check the block is suitable for migration */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700770 if (!suitable_migration_target(page))
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100771 continue;
Linus Torvalds68e3e922012-06-03 20:05:57 -0700772
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700773 /* If isolation recently failed, do not retry */
774 if (!isolation_suitable(cc, page))
775 continue;
776
Mel Gormanf40d1e42012-10-08 16:32:36 -0700777 /* Found a block suitable for isolating free pages from */
Vlastimil Babkae9ade562014-06-04 16:08:34 -0700778 cc->free_pfn = block_start_pfn;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700779 isolated = isolate_freepages_block(cc, block_start_pfn,
780 block_end_pfn, freelist, false);
Mel Gormanf40d1e42012-10-08 16:32:36 -0700781 nr_freepages += isolated;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100782
783 /*
Vlastimil Babkae9ade562014-06-04 16:08:34 -0700784 * Set a flag that we successfully isolated in this pageblock.
785 * In the next loop iteration, zone->compact_cached_free_pfn
786 * will not be updated and thus it will effectively contain the
787 * highest pageblock we isolated pages from.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100788 */
Vlastimil Babkae9ade562014-06-04 16:08:34 -0700789 if (isolated)
Mel Gormanc89511a2012-10-08 16:32:45 -0700790 cc->finished_update_free = true;
Vlastimil Babkabe976572014-06-04 16:10:41 -0700791
792 /*
793 * isolate_freepages_block() might have aborted due to async
794 * compaction being contended
795 */
796 if (cc->contended)
797 break;
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100798 }
799
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100800 /* split_free_page does not map the pages */
801 map_pages(freelist);
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100802
Vlastimil Babka7ed695e2014-01-21 15:51:09 -0800803 /*
804 * If we crossed the migrate scanner, we want to keep it that way
805 * so that compact_finished() may detect this
806 */
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700807 if (block_start_pfn < low_pfn)
Vlastimil Babkae9ade562014-06-04 16:08:34 -0700808 cc->free_pfn = cc->migrate_pfn;
Vlastimil Babkac96b9e52014-06-04 16:07:26 -0700809
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100810 cc->nr_freepages = nr_freepages;
Mel Gorman748446b2010-05-24 14:32:27 -0700811}
812
813/*
814 * This is a migrate-callback that "allocates" freepages by taking pages
815 * from the isolated freelists in the block we are migrating to.
816 */
817static struct page *compaction_alloc(struct page *migratepage,
818 unsigned long data,
819 int **result)
820{
821 struct compact_control *cc = (struct compact_control *)data;
822 struct page *freepage;
823
Vlastimil Babkabe976572014-06-04 16:10:41 -0700824 /*
825 * Isolate free pages if necessary, and if we are not aborting due to
826 * contention.
827 */
Mel Gorman748446b2010-05-24 14:32:27 -0700828 if (list_empty(&cc->freepages)) {
Vlastimil Babkabe976572014-06-04 16:10:41 -0700829 if (!cc->contended)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700830 isolate_freepages(cc);
Mel Gorman748446b2010-05-24 14:32:27 -0700831
832 if (list_empty(&cc->freepages))
833 return NULL;
834 }
835
836 freepage = list_entry(cc->freepages.next, struct page, lru);
837 list_del(&freepage->lru);
838 cc->nr_freepages--;
839
840 return freepage;
841}
842
843/*
David Rientjesd53aea32014-06-04 16:08:26 -0700844 * This is a migrate-callback that "frees" freepages back to the isolated
845 * freelist. All pages on the freelist are from the same zone, so there is no
846 * special handling needed for NUMA.
847 */
848static void compaction_free(struct page *page, unsigned long data)
849{
850 struct compact_control *cc = (struct compact_control *)data;
851
852 list_add(&page->lru, &cc->freepages);
853 cc->nr_freepages++;
854}
855
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100856/* possible outcome of isolate_migratepages */
857typedef enum {
858 ISOLATE_ABORT, /* Abort compaction now */
859 ISOLATE_NONE, /* No pages isolated, continue scanning */
860 ISOLATE_SUCCESS, /* Pages isolated, migrate */
861} isolate_migrate_t;
862
863/*
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700864 * Isolate all pages that can be migrated from the first suitable block,
865 * starting at the block pointed to by the migrate scanner pfn within
866 * compact_control.
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100867 */
868static isolate_migrate_t isolate_migratepages(struct zone *zone,
869 struct compact_control *cc)
870{
871 unsigned long low_pfn, end_pfn;
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700872 struct page *page;
873 const isolate_mode_t isolate_mode =
874 (cc->mode == MIGRATE_ASYNC ? ISOLATE_ASYNC_MIGRATE : 0);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100875
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700876 /*
877 * Start at where we last stopped, or beginning of the zone as
878 * initialized by compact_zone()
879 */
880 low_pfn = cc->migrate_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100881
882 /* Only scan within a pageblock boundary */
Mel Gormana9aacbc2013-02-22 16:32:25 -0800883 end_pfn = ALIGN(low_pfn + 1, pageblock_nr_pages);
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100884
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700885 /*
886 * Iterate over whole pageblocks until we find the first suitable.
887 * Do not cross the free scanner.
888 */
889 for (; end_pfn <= cc->free_pfn;
890 low_pfn = end_pfn, end_pfn += pageblock_nr_pages) {
891
892 /*
893 * This can potentially iterate a massively long zone with
894 * many pageblocks unsuitable, so periodically check if we
895 * need to schedule, or even abort async compaction.
896 */
897 if (!(low_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages))
898 && compact_should_abort(cc))
899 break;
900
Vlastimil Babka7d49d882014-10-09 15:27:11 -0700901 page = pageblock_pfn_to_page(low_pfn, end_pfn, zone);
902 if (!page)
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700903 continue;
904
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700905 /* If isolation recently failed, do not retry */
906 if (!isolation_suitable(cc, page))
907 continue;
908
909 /*
910 * For async compaction, also only scan in MOVABLE blocks.
911 * Async compaction is optimistic to see if the minimum amount
912 * of work satisfies the allocation.
913 */
914 if (cc->mode == MIGRATE_ASYNC &&
915 !migrate_async_suitable(get_pageblock_migratetype(page)))
916 continue;
917
918 /* Perform the isolation */
919 low_pfn = isolate_migratepages_block(cc, low_pfn, end_pfn,
920 isolate_mode);
921
922 if (!low_pfn || cc->contended)
923 return ISOLATE_ABORT;
924
925 /*
926 * Either we isolated something and proceed with migration. Or
927 * we failed and compact_zone should decide if we should
928 * continue or not.
929 */
930 break;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100931 }
932
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700933 acct_isolated(zone, cc);
934 /* Record where migration scanner will be restarted */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100935 cc->migrate_pfn = low_pfn;
936
Vlastimil Babkaedc2ca62014-10-09 15:27:09 -0700937 return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100938}
939
Mel Gorman748446b2010-05-24 14:32:27 -0700940static int compact_finished(struct zone *zone,
Andrea Arcangeli5a03b052011-01-13 15:47:11 -0800941 struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700942{
Mel Gorman8fb74b92013-01-11 14:32:16 -0800943 unsigned int order;
Andrea Arcangeli5a03b052011-01-13 15:47:11 -0800944 unsigned long watermark;
Mel Gorman56de7262010-05-24 14:32:30 -0700945
Vlastimil Babkabe976572014-06-04 16:10:41 -0700946 if (cc->contended || fatal_signal_pending(current))
Mel Gorman748446b2010-05-24 14:32:27 -0700947 return COMPACT_PARTIAL;
948
Mel Gorman753341a2012-10-08 16:32:40 -0700949 /* Compaction run completes if the migrate and free scanner meet */
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700950 if (cc->free_pfn <= cc->migrate_pfn) {
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -0800951 /* Let the next compaction start anew. */
David Rientjes35979ef2014-06-04 16:08:27 -0700952 zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn;
953 zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn;
Vlastimil Babka55b7c4c2014-01-21 15:51:11 -0800954 zone->compact_cached_free_pfn = zone_end_pfn(zone);
955
Mel Gorman62997022012-10-08 16:32:47 -0700956 /*
957 * Mark that the PG_migrate_skip information should be cleared
958 * by kswapd when it goes to sleep. kswapd does not set the
959 * flag itself as the decision to be clear should be directly
960 * based on an allocation request.
961 */
962 if (!current_is_kswapd())
963 zone->compact_blockskip_flush = true;
964
Mel Gorman748446b2010-05-24 14:32:27 -0700965 return COMPACT_COMPLETE;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700966 }
Mel Gorman748446b2010-05-24 14:32:27 -0700967
Johannes Weiner82478fb2011-01-20 14:44:21 -0800968 /*
969 * order == -1 is expected when compacting via
970 * /proc/sys/vm/compact_memory
971 */
Mel Gorman56de7262010-05-24 14:32:30 -0700972 if (cc->order == -1)
973 return COMPACT_CONTINUE;
974
Michal Hocko3957c772011-06-15 15:08:25 -0700975 /* Compaction run is not finished if the watermark is not met */
976 watermark = low_wmark_pages(zone);
977 watermark += (1 << cc->order);
978
979 if (!zone_watermark_ok(zone, cc->order, watermark, 0, 0))
980 return COMPACT_CONTINUE;
981
Mel Gorman56de7262010-05-24 14:32:30 -0700982 /* Direct compactor: Is a suitable page free? */
Mel Gorman8fb74b92013-01-11 14:32:16 -0800983 for (order = cc->order; order < MAX_ORDER; order++) {
984 struct free_area *area = &zone->free_area[order];
Mel Gorman56de7262010-05-24 14:32:30 -0700985
Mel Gorman8fb74b92013-01-11 14:32:16 -0800986 /* Job done if page is free of the right migratetype */
987 if (!list_empty(&area->free_list[cc->migratetype]))
988 return COMPACT_PARTIAL;
989
990 /* Job done if allocation would set block type */
991 if (cc->order >= pageblock_order && area->nr_free)
992 return COMPACT_PARTIAL;
Mel Gorman56de7262010-05-24 14:32:30 -0700993 }
994
Mel Gorman748446b2010-05-24 14:32:27 -0700995 return COMPACT_CONTINUE;
996}
997
Mel Gorman3e7d3442011-01-13 15:45:56 -0800998/*
999 * compaction_suitable: Is this suitable to run compaction on this zone now?
1000 * Returns
1001 * COMPACT_SKIPPED - If there are too few free pages for compaction
1002 * COMPACT_PARTIAL - If the allocation would succeed without compaction
1003 * COMPACT_CONTINUE - If compaction should run now
1004 */
1005unsigned long compaction_suitable(struct zone *zone, int order)
1006{
1007 int fragindex;
1008 unsigned long watermark;
1009
1010 /*
Michal Hocko3957c772011-06-15 15:08:25 -07001011 * order == -1 is expected when compacting via
1012 * /proc/sys/vm/compact_memory
1013 */
1014 if (order == -1)
1015 return COMPACT_CONTINUE;
1016
1017 /*
Mel Gorman3e7d3442011-01-13 15:45:56 -08001018 * Watermarks for order-0 must be met for compaction. Note the 2UL.
1019 * This is because during migration, copies of pages need to be
1020 * allocated and for a short time, the footprint is higher
1021 */
1022 watermark = low_wmark_pages(zone) + (2UL << order);
1023 if (!zone_watermark_ok(zone, 0, watermark, 0, 0))
1024 return COMPACT_SKIPPED;
1025
1026 /*
1027 * fragmentation index determines if allocation failures are due to
1028 * low memory or external fragmentation
1029 *
Shaohua Lia582a732011-06-15 15:08:49 -07001030 * index of -1000 implies allocations might succeed depending on
1031 * watermarks
Mel Gorman3e7d3442011-01-13 15:45:56 -08001032 * index towards 0 implies failure is due to lack of memory
1033 * index towards 1000 implies failure is due to fragmentation
1034 *
1035 * Only compact if a failure would be due to fragmentation.
1036 */
1037 fragindex = fragmentation_index(zone, order);
1038 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
1039 return COMPACT_SKIPPED;
1040
Shaohua Lia582a732011-06-15 15:08:49 -07001041 if (fragindex == -1000 && zone_watermark_ok(zone, order, watermark,
1042 0, 0))
Mel Gorman3e7d3442011-01-13 15:45:56 -08001043 return COMPACT_PARTIAL;
1044
1045 return COMPACT_CONTINUE;
1046}
1047
Mel Gorman748446b2010-05-24 14:32:27 -07001048static int compact_zone(struct zone *zone, struct compact_control *cc)
1049{
1050 int ret;
Mel Gormanc89511a2012-10-08 16:32:45 -07001051 unsigned long start_pfn = zone->zone_start_pfn;
Cody P Schafer108bcc92013-02-22 16:35:23 -08001052 unsigned long end_pfn = zone_end_pfn(zone);
David Rientjese0b9dae2014-06-04 16:08:28 -07001053 const bool sync = cc->mode != MIGRATE_ASYNC;
Mel Gorman748446b2010-05-24 14:32:27 -07001054
Mel Gorman3e7d3442011-01-13 15:45:56 -08001055 ret = compaction_suitable(zone, cc->order);
1056 switch (ret) {
1057 case COMPACT_PARTIAL:
1058 case COMPACT_SKIPPED:
1059 /* Compaction is likely to fail */
1060 return ret;
1061 case COMPACT_CONTINUE:
1062 /* Fall through to compaction */
1063 ;
1064 }
1065
Mel Gormanc89511a2012-10-08 16:32:45 -07001066 /*
Vlastimil Babkad3132e42014-01-21 15:51:08 -08001067 * Clear pageblock skip if there were failures recently and compaction
1068 * is about to be retried after being deferred. kswapd does not do
1069 * this reset as it'll reset the cached information when going to sleep.
1070 */
1071 if (compaction_restarting(zone, cc->order) && !current_is_kswapd())
1072 __reset_isolation_suitable(zone);
1073
1074 /*
Mel Gormanc89511a2012-10-08 16:32:45 -07001075 * Setup to move all movable pages to the end of the zone. Used cached
1076 * information on where the scanners should start but check that it
1077 * is initialised by ensuring the values are within zone boundaries.
1078 */
David Rientjese0b9dae2014-06-04 16:08:28 -07001079 cc->migrate_pfn = zone->compact_cached_migrate_pfn[sync];
Mel Gormanc89511a2012-10-08 16:32:45 -07001080 cc->free_pfn = zone->compact_cached_free_pfn;
1081 if (cc->free_pfn < start_pfn || cc->free_pfn > end_pfn) {
1082 cc->free_pfn = end_pfn & ~(pageblock_nr_pages-1);
1083 zone->compact_cached_free_pfn = cc->free_pfn;
1084 }
1085 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn > end_pfn) {
1086 cc->migrate_pfn = start_pfn;
David Rientjes35979ef2014-06-04 16:08:27 -07001087 zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn;
1088 zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn;
Mel Gormanc89511a2012-10-08 16:32:45 -07001089 }
Mel Gorman748446b2010-05-24 14:32:27 -07001090
Mel Gorman0eb927c2014-01-21 15:51:05 -08001091 trace_mm_compaction_begin(start_pfn, cc->migrate_pfn, cc->free_pfn, end_pfn);
1092
Mel Gorman748446b2010-05-24 14:32:27 -07001093 migrate_prep_local();
1094
1095 while ((ret = compact_finished(zone, cc)) == COMPACT_CONTINUE) {
Minchan Kim9d502c12011-03-22 16:30:39 -07001096 int err;
Mel Gorman748446b2010-05-24 14:32:27 -07001097
Mel Gormanf9e35b32011-06-15 15:08:52 -07001098 switch (isolate_migratepages(zone, cc)) {
1099 case ISOLATE_ABORT:
1100 ret = COMPACT_PARTIAL;
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001101 putback_movable_pages(&cc->migratepages);
Shaohua Lie64c5232012-10-08 16:32:27 -07001102 cc->nr_migratepages = 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001103 goto out;
1104 case ISOLATE_NONE:
Mel Gorman748446b2010-05-24 14:32:27 -07001105 continue;
Mel Gormanf9e35b32011-06-15 15:08:52 -07001106 case ISOLATE_SUCCESS:
1107 ;
1108 }
Mel Gorman748446b2010-05-24 14:32:27 -07001109
David Rientjesd53aea32014-06-04 16:08:26 -07001110 err = migrate_pages(&cc->migratepages, compaction_alloc,
David Rientjese0b9dae2014-06-04 16:08:28 -07001111 compaction_free, (unsigned long)cc, cc->mode,
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001112 MR_COMPACTION);
Mel Gorman748446b2010-05-24 14:32:27 -07001113
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001114 trace_mm_compaction_migratepages(cc->nr_migratepages, err,
1115 &cc->migratepages);
Mel Gorman748446b2010-05-24 14:32:27 -07001116
Vlastimil Babkaf8c93012014-06-04 16:08:32 -07001117 /* All pages were either migrated or will be released */
1118 cc->nr_migratepages = 0;
Minchan Kim9d502c12011-03-22 16:30:39 -07001119 if (err) {
Rafael Aquini5733c7d2012-12-11 16:02:47 -08001120 putback_movable_pages(&cc->migratepages);
Vlastimil Babka7ed695e2014-01-21 15:51:09 -08001121 /*
1122 * migrate_pages() may return -ENOMEM when scanners meet
1123 * and we want compact_finished() to detect it
1124 */
1125 if (err == -ENOMEM && cc->free_pfn > cc->migrate_pfn) {
David Rientjes4bf2bba2012-07-11 14:02:13 -07001126 ret = COMPACT_PARTIAL;
1127 goto out;
1128 }
Mel Gorman748446b2010-05-24 14:32:27 -07001129 }
Mel Gorman748446b2010-05-24 14:32:27 -07001130 }
1131
Mel Gormanf9e35b32011-06-15 15:08:52 -07001132out:
Mel Gorman748446b2010-05-24 14:32:27 -07001133 /* Release free pages and check accounting */
1134 cc->nr_freepages -= release_freepages(&cc->freepages);
1135 VM_BUG_ON(cc->nr_freepages != 0);
1136
Mel Gorman0eb927c2014-01-21 15:51:05 -08001137 trace_mm_compaction_end(ret);
1138
Mel Gorman748446b2010-05-24 14:32:27 -07001139 return ret;
1140}
Mel Gorman76ab0f52010-05-24 14:32:28 -07001141
David Rientjese0b9dae2014-06-04 16:08:28 -07001142static unsigned long compact_zone_order(struct zone *zone, int order,
1143 gfp_t gfp_mask, enum migrate_mode mode, bool *contended)
Mel Gorman56de7262010-05-24 14:32:30 -07001144{
Shaohua Lie64c5232012-10-08 16:32:27 -07001145 unsigned long ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001146 struct compact_control cc = {
1147 .nr_freepages = 0,
1148 .nr_migratepages = 0,
1149 .order = order,
1150 .migratetype = allocflags_to_migratetype(gfp_mask),
1151 .zone = zone,
David Rientjese0b9dae2014-06-04 16:08:28 -07001152 .mode = mode,
Mel Gorman56de7262010-05-24 14:32:30 -07001153 };
1154 INIT_LIST_HEAD(&cc.freepages);
1155 INIT_LIST_HEAD(&cc.migratepages);
1156
Shaohua Lie64c5232012-10-08 16:32:27 -07001157 ret = compact_zone(zone, &cc);
1158
1159 VM_BUG_ON(!list_empty(&cc.freepages));
1160 VM_BUG_ON(!list_empty(&cc.migratepages));
1161
1162 *contended = cc.contended;
1163 return ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001164}
1165
Mel Gorman5e771902010-05-24 14:32:31 -07001166int sysctl_extfrag_threshold = 500;
1167
Mel Gorman56de7262010-05-24 14:32:30 -07001168/**
1169 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
1170 * @zonelist: The zonelist used for the current allocation
1171 * @order: The order of the current allocation
1172 * @gfp_mask: The GFP mask of the current allocation
1173 * @nodemask: The allowed nodes to allocate from
David Rientjese0b9dae2014-06-04 16:08:28 -07001174 * @mode: The migration mode for async, sync light, or sync migration
Mel Gorman661c4cb2012-10-08 16:32:31 -07001175 * @contended: Return value that is true if compaction was aborted due to lock contention
Vlastimil Babka53853e22014-10-09 15:27:02 -07001176 * @candidate_zone: Return the zone where we think allocation should succeed
Mel Gorman56de7262010-05-24 14:32:30 -07001177 *
1178 * This is the main entry point for direct page compaction.
1179 */
1180unsigned long try_to_compact_pages(struct zonelist *zonelist,
Mel Gorman77f1fe62011-01-13 15:45:57 -08001181 int order, gfp_t gfp_mask, nodemask_t *nodemask,
Vlastimil Babka53853e22014-10-09 15:27:02 -07001182 enum migrate_mode mode, bool *contended,
1183 struct zone **candidate_zone)
Mel Gorman56de7262010-05-24 14:32:30 -07001184{
1185 enum zone_type high_zoneidx = gfp_zone(gfp_mask);
1186 int may_enter_fs = gfp_mask & __GFP_FS;
1187 int may_perform_io = gfp_mask & __GFP_IO;
Mel Gorman56de7262010-05-24 14:32:30 -07001188 struct zoneref *z;
1189 struct zone *zone;
Vlastimil Babka53853e22014-10-09 15:27:02 -07001190 int rc = COMPACT_DEFERRED;
Bartlomiej Zolnierkiewiczd95ea5d2012-10-08 16:32:05 -07001191 int alloc_flags = 0;
Mel Gorman56de7262010-05-24 14:32:30 -07001192
Mel Gorman4ffb6332012-10-08 16:29:09 -07001193 /* Check if the GFP flags allow compaction */
Andrea Arcangelic5a73c32011-01-13 15:47:11 -08001194 if (!order || !may_enter_fs || !may_perform_io)
Vlastimil Babka53853e22014-10-09 15:27:02 -07001195 return COMPACT_SKIPPED;
Mel Gorman56de7262010-05-24 14:32:30 -07001196
Bartlomiej Zolnierkiewiczd95ea5d2012-10-08 16:32:05 -07001197#ifdef CONFIG_CMA
1198 if (allocflags_to_migratetype(gfp_mask) == MIGRATE_MOVABLE)
1199 alloc_flags |= ALLOC_CMA;
1200#endif
Mel Gorman56de7262010-05-24 14:32:30 -07001201 /* Compact each zone in the list */
1202 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
1203 nodemask) {
Mel Gorman56de7262010-05-24 14:32:30 -07001204 int status;
1205
Vlastimil Babka53853e22014-10-09 15:27:02 -07001206 if (compaction_deferred(zone, order))
1207 continue;
1208
David Rientjese0b9dae2014-06-04 16:08:28 -07001209 status = compact_zone_order(zone, order, gfp_mask, mode,
Mel Gorman8fb74b92013-01-11 14:32:16 -08001210 contended);
Mel Gorman56de7262010-05-24 14:32:30 -07001211 rc = max(status, rc);
1212
Mel Gorman3e7d3442011-01-13 15:45:56 -08001213 /* If a normal allocation would succeed, stop compacting */
Bartlomiej Zolnierkiewiczd95ea5d2012-10-08 16:32:05 -07001214 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0,
Vlastimil Babka53853e22014-10-09 15:27:02 -07001215 alloc_flags)) {
1216 *candidate_zone = zone;
1217 /*
1218 * We think the allocation will succeed in this zone,
1219 * but it is not certain, hence the false. The caller
1220 * will repeat this with true if allocation indeed
1221 * succeeds in this zone.
1222 */
1223 compaction_defer_reset(zone, order, false);
Mel Gorman56de7262010-05-24 14:32:30 -07001224 break;
Vlastimil Babka53853e22014-10-09 15:27:02 -07001225 } else if (mode != MIGRATE_ASYNC) {
1226 /*
1227 * We think that allocation won't succeed in this zone
1228 * so we defer compaction there. If it ends up
1229 * succeeding after all, it will be reset.
1230 */
1231 defer_compaction(zone, order);
1232 }
Mel Gorman56de7262010-05-24 14:32:30 -07001233 }
1234
1235 return rc;
1236}
1237
1238
Mel Gorman76ab0f52010-05-24 14:32:28 -07001239/* Compact all zones within a node */
Andrew Morton7103f162013-02-22 16:32:33 -08001240static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001241{
1242 int zoneid;
Mel Gorman76ab0f52010-05-24 14:32:28 -07001243 struct zone *zone;
1244
Mel Gorman76ab0f52010-05-24 14:32:28 -07001245 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
Mel Gorman76ab0f52010-05-24 14:32:28 -07001246
1247 zone = &pgdat->node_zones[zoneid];
1248 if (!populated_zone(zone))
1249 continue;
1250
Rik van Riel7be62de2012-03-21 16:33:52 -07001251 cc->nr_freepages = 0;
1252 cc->nr_migratepages = 0;
1253 cc->zone = zone;
1254 INIT_LIST_HEAD(&cc->freepages);
1255 INIT_LIST_HEAD(&cc->migratepages);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001256
Dan Carpenteraad6ec32012-03-21 16:33:54 -07001257 if (cc->order == -1 || !compaction_deferred(zone, cc->order))
Rik van Riel7be62de2012-03-21 16:33:52 -07001258 compact_zone(zone, cc);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001259
Rik van Rielaff62242012-03-21 16:33:52 -07001260 if (cc->order > 0) {
Vlastimil Babkade6c60a2014-01-21 15:51:07 -08001261 if (zone_watermark_ok(zone, cc->order,
1262 low_wmark_pages(zone), 0, 0))
1263 compaction_defer_reset(zone, cc->order, false);
Rik van Rielaff62242012-03-21 16:33:52 -07001264 }
1265
Rik van Riel7be62de2012-03-21 16:33:52 -07001266 VM_BUG_ON(!list_empty(&cc->freepages));
1267 VM_BUG_ON(!list_empty(&cc->migratepages));
Mel Gorman76ab0f52010-05-24 14:32:28 -07001268 }
Mel Gorman76ab0f52010-05-24 14:32:28 -07001269}
1270
Andrew Morton7103f162013-02-22 16:32:33 -08001271void compact_pgdat(pg_data_t *pgdat, int order)
Rik van Riel7be62de2012-03-21 16:33:52 -07001272{
1273 struct compact_control cc = {
1274 .order = order,
David Rientjese0b9dae2014-06-04 16:08:28 -07001275 .mode = MIGRATE_ASYNC,
Rik van Riel7be62de2012-03-21 16:33:52 -07001276 };
1277
Mel Gorman3a7200a2013-09-11 14:22:19 -07001278 if (!order)
1279 return;
1280
Andrew Morton7103f162013-02-22 16:32:33 -08001281 __compact_pgdat(pgdat, &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001282}
1283
Andrew Morton7103f162013-02-22 16:32:33 -08001284static void compact_node(int nid)
Rik van Riel7be62de2012-03-21 16:33:52 -07001285{
Rik van Riel7be62de2012-03-21 16:33:52 -07001286 struct compact_control cc = {
1287 .order = -1,
David Rientjese0b9dae2014-06-04 16:08:28 -07001288 .mode = MIGRATE_SYNC,
David Rientjes91ca9182014-04-03 14:47:23 -07001289 .ignore_skip_hint = true,
Rik van Riel7be62de2012-03-21 16:33:52 -07001290 };
1291
Andrew Morton7103f162013-02-22 16:32:33 -08001292 __compact_pgdat(NODE_DATA(nid), &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001293}
1294
Mel Gorman76ab0f52010-05-24 14:32:28 -07001295/* Compact all nodes in the system */
Jason Liu7964c062013-01-11 14:31:47 -08001296static void compact_nodes(void)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001297{
1298 int nid;
1299
Hugh Dickins8575ec22012-03-21 16:33:53 -07001300 /* Flush pending updates to the LRU lists */
1301 lru_add_drain_all();
1302
Mel Gorman76ab0f52010-05-24 14:32:28 -07001303 for_each_online_node(nid)
1304 compact_node(nid);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001305}
1306
1307/* The written value is actually unused, all memory is compacted */
1308int sysctl_compact_memory;
1309
1310/* This is the entry point for compacting all nodes via /proc/sys/vm */
1311int sysctl_compaction_handler(struct ctl_table *table, int write,
1312 void __user *buffer, size_t *length, loff_t *ppos)
1313{
1314 if (write)
Jason Liu7964c062013-01-11 14:31:47 -08001315 compact_nodes();
Mel Gorman76ab0f52010-05-24 14:32:28 -07001316
1317 return 0;
1318}
Mel Gormaned4a6d72010-05-24 14:32:29 -07001319
Mel Gorman5e771902010-05-24 14:32:31 -07001320int sysctl_extfrag_handler(struct ctl_table *table, int write,
1321 void __user *buffer, size_t *length, loff_t *ppos)
1322{
1323 proc_dointvec_minmax(table, write, buffer, length, ppos);
1324
1325 return 0;
1326}
1327
Mel Gormaned4a6d72010-05-24 14:32:29 -07001328#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
Rashika Kheria74e77fb2014-04-03 14:48:01 -07001329static ssize_t sysfs_compact_node(struct device *dev,
Kay Sievers10fbcf42011-12-21 14:48:43 -08001330 struct device_attribute *attr,
Mel Gormaned4a6d72010-05-24 14:32:29 -07001331 const char *buf, size_t count)
1332{
Hugh Dickins8575ec22012-03-21 16:33:53 -07001333 int nid = dev->id;
1334
1335 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
1336 /* Flush pending updates to the LRU lists */
1337 lru_add_drain_all();
1338
1339 compact_node(nid);
1340 }
Mel Gormaned4a6d72010-05-24 14:32:29 -07001341
1342 return count;
1343}
Kay Sievers10fbcf42011-12-21 14:48:43 -08001344static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001345
1346int compaction_register_node(struct node *node)
1347{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001348 return device_create_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001349}
1350
1351void compaction_unregister_node(struct node *node)
1352{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001353 return device_remove_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001354}
1355#endif /* CONFIG_SYSFS && CONFIG_NUMA */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001356
1357#endif /* CONFIG_COMPACTION */