blob: f94cbc0b99a599feae5f8a0a3dfcd2869ce008ca [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>
Mel Gorman748446b2010-05-24 14:32:27 -070017#include "internal.h"
18
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010019#if defined CONFIG_COMPACTION || defined CONFIG_CMA
20
Mel Gormanb7aba692011-01-13 15:45:54 -080021#define CREATE_TRACE_POINTS
22#include <trace/events/compaction.h>
23
Mel Gorman748446b2010-05-24 14:32:27 -070024static unsigned long release_freepages(struct list_head *freelist)
25{
26 struct page *page, *next;
27 unsigned long count = 0;
28
29 list_for_each_entry_safe(page, next, freelist, lru) {
30 list_del(&page->lru);
31 __free_page(page);
32 count++;
33 }
34
35 return count;
36}
37
Michal Nazarewiczff9543f2011-12-29 13:09:50 +010038static void map_pages(struct list_head *list)
39{
40 struct page *page;
41
42 list_for_each_entry(page, list, lru) {
43 arch_alloc_page(page, 0);
44 kernel_map_pages(page, 1, 1);
45 }
46}
47
Michal Nazarewicz47118af2011-12-29 13:09:50 +010048static inline bool migrate_async_suitable(int migratetype)
49{
50 return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE;
51}
52
Mel Gormanbb13ffe2012-10-08 16:32:41 -070053#ifdef CONFIG_COMPACTION
54/* Returns true if the pageblock should be scanned for pages to isolate. */
55static inline bool isolation_suitable(struct compact_control *cc,
56 struct page *page)
57{
58 if (cc->ignore_skip_hint)
59 return true;
60
61 return !get_pageblock_skip(page);
62}
63
64/*
65 * This function is called to clear all cached information on pageblocks that
66 * should be skipped for page isolation when the migrate and free page scanner
67 * meet.
68 */
69static void reset_isolation_suitable(struct zone *zone)
70{
71 unsigned long start_pfn = zone->zone_start_pfn;
72 unsigned long end_pfn = zone->zone_start_pfn + zone->spanned_pages;
73 unsigned long pfn;
74
75 /*
76 * Do not reset more than once every five seconds. If allocations are
77 * failing sufficiently quickly to allow this to happen then continually
78 * scanning for compaction is not going to help. The choice of five
79 * seconds is arbitrary but will mitigate excessive scanning.
80 */
81 if (time_before(jiffies, zone->compact_blockskip_expire))
82 return;
Mel Gormanc89511a2012-10-08 16:32:45 -070083
84 zone->compact_cached_migrate_pfn = start_pfn;
85 zone->compact_cached_free_pfn = end_pfn;
Mel Gormanbb13ffe2012-10-08 16:32:41 -070086 zone->compact_blockskip_expire = jiffies + (HZ * 5);
87
88 /* Walk the zone and mark every pageblock as suitable for isolation */
89 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
90 struct page *page;
91
92 cond_resched();
93
94 if (!pfn_valid(pfn))
95 continue;
96
97 page = pfn_to_page(pfn);
98 if (zone != page_zone(page))
99 continue;
100
101 clear_pageblock_skip(page);
102 }
103}
104
105/*
106 * If no pages were isolated then mark this pageblock to be skipped in the
107 * future. The information is later cleared by reset_isolation_suitable().
108 */
Mel Gormanc89511a2012-10-08 16:32:45 -0700109static void update_pageblock_skip(struct compact_control *cc,
110 struct page *page, unsigned long nr_isolated,
111 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700112{
Mel Gormanc89511a2012-10-08 16:32:45 -0700113 struct zone *zone = cc->zone;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700114 if (!page)
115 return;
116
Mel Gormanc89511a2012-10-08 16:32:45 -0700117 if (!nr_isolated) {
118 unsigned long pfn = page_to_pfn(page);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700119 set_pageblock_skip(page);
Mel Gormanc89511a2012-10-08 16:32:45 -0700120
121 /* Update where compaction should restart */
122 if (migrate_scanner) {
123 if (!cc->finished_update_migrate &&
124 pfn > zone->compact_cached_migrate_pfn)
125 zone->compact_cached_migrate_pfn = pfn;
126 } else {
127 if (!cc->finished_update_free &&
128 pfn < zone->compact_cached_free_pfn)
129 zone->compact_cached_free_pfn = pfn;
130 }
131 }
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700132}
133#else
134static inline bool isolation_suitable(struct compact_control *cc,
135 struct page *page)
136{
137 return true;
138}
139
Mel Gormanc89511a2012-10-08 16:32:45 -0700140static void update_pageblock_skip(struct compact_control *cc,
141 struct page *page, unsigned long nr_isolated,
142 bool migrate_scanner)
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700143{
144}
145#endif /* CONFIG_COMPACTION */
146
Mel Gorman2a1402a2012-10-08 16:32:33 -0700147static inline bool should_release_lock(spinlock_t *lock)
148{
149 return need_resched() || spin_is_contended(lock);
150}
151
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100152/*
Mel Gormanc67fe372012-08-21 16:16:17 -0700153 * Compaction requires the taking of some coarse locks that are potentially
154 * very heavily contended. Check if the process needs to be scheduled or
155 * if the lock is contended. For async compaction, back out in the event
156 * if contention is severe. For sync compaction, schedule.
157 *
158 * Returns true if the lock is held.
159 * Returns false if the lock is released and compaction should abort
160 */
161static bool compact_checklock_irqsave(spinlock_t *lock, unsigned long *flags,
162 bool locked, struct compact_control *cc)
163{
Mel Gorman2a1402a2012-10-08 16:32:33 -0700164 if (should_release_lock(lock)) {
Mel Gormanc67fe372012-08-21 16:16:17 -0700165 if (locked) {
166 spin_unlock_irqrestore(lock, *flags);
167 locked = false;
168 }
169
170 /* async aborts if taking too long or contended */
171 if (!cc->sync) {
Shaohua Lie64c5232012-10-08 16:32:27 -0700172 cc->contended = true;
Mel Gormanc67fe372012-08-21 16:16:17 -0700173 return false;
174 }
175
176 cond_resched();
Mel Gormanc67fe372012-08-21 16:16:17 -0700177 }
178
179 if (!locked)
180 spin_lock_irqsave(lock, *flags);
181 return true;
182}
183
184static inline bool compact_trylock_irqsave(spinlock_t *lock,
185 unsigned long *flags, struct compact_control *cc)
186{
187 return compact_checklock_irqsave(lock, flags, false, cc);
188}
189
Mel Gormanf40d1e42012-10-08 16:32:36 -0700190/* Returns true if the page is within a block suitable for migration to */
191static bool suitable_migration_target(struct page *page)
192{
193 int migratetype = get_pageblock_migratetype(page);
194
195 /* Don't interfere with memory hot-remove or the min_free_kbytes blocks */
196 if (migratetype == MIGRATE_ISOLATE || migratetype == MIGRATE_RESERVE)
197 return false;
198
199 /* If the page is a large free page, then allow migration */
200 if (PageBuddy(page) && page_order(page) >= pageblock_order)
201 return true;
202
203 /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */
204 if (migrate_async_suitable(migratetype))
205 return true;
206
207 /* Otherwise skip the block */
208 return false;
209}
210
Mel Gorman1fb3f8c2012-10-08 16:29:12 -0700211static void compact_capture_page(struct compact_control *cc)
212{
213 unsigned long flags;
214 int mtype, mtype_low, mtype_high;
215
216 if (!cc->page || *cc->page)
217 return;
218
219 /*
220 * For MIGRATE_MOVABLE allocations we capture a suitable page ASAP
221 * regardless of the migratetype of the freelist is is captured from.
222 * This is fine because the order for a high-order MIGRATE_MOVABLE
223 * allocation is typically at least a pageblock size and overall
224 * fragmentation is not impaired. Other allocation types must
225 * capture pages from their own migratelist because otherwise they
226 * could pollute other pageblocks like MIGRATE_MOVABLE with
227 * difficult to move pages and making fragmentation worse overall.
228 */
229 if (cc->migratetype == MIGRATE_MOVABLE) {
230 mtype_low = 0;
231 mtype_high = MIGRATE_PCPTYPES;
232 } else {
233 mtype_low = cc->migratetype;
234 mtype_high = cc->migratetype + 1;
235 }
236
237 /* Speculatively examine the free lists without zone lock */
238 for (mtype = mtype_low; mtype < mtype_high; mtype++) {
239 int order;
240 for (order = cc->order; order < MAX_ORDER; order++) {
241 struct page *page;
242 struct free_area *area;
243 area = &(cc->zone->free_area[order]);
244 if (list_empty(&area->free_list[mtype]))
245 continue;
246
247 /* Take the lock and attempt capture of the page */
248 if (!compact_trylock_irqsave(&cc->zone->lock, &flags, cc))
249 return;
250 if (!list_empty(&area->free_list[mtype])) {
251 page = list_entry(area->free_list[mtype].next,
252 struct page, lru);
253 if (capture_free_page(page, cc->order, mtype)) {
254 spin_unlock_irqrestore(&cc->zone->lock,
255 flags);
256 *cc->page = page;
257 return;
258 }
259 }
260 spin_unlock_irqrestore(&cc->zone->lock, flags);
261 }
262 }
263}
264
Mel Gormanc67fe372012-08-21 16:16:17 -0700265/*
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100266 * Isolate free pages onto a private freelist. Caller must hold zone->lock.
267 * If @strict is true, will abort returning 0 on any invalid PFNs or non-free
268 * pages inside of the pageblock (even though it may still end up isolating
269 * some pages).
270 */
Mel Gormanf40d1e42012-10-08 16:32:36 -0700271static unsigned long isolate_freepages_block(struct compact_control *cc,
272 unsigned long blockpfn,
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100273 unsigned long end_pfn,
274 struct list_head *freelist,
275 bool strict)
Mel Gorman748446b2010-05-24 14:32:27 -0700276{
Mel Gormanb7aba692011-01-13 15:45:54 -0800277 int nr_scanned = 0, total_isolated = 0;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700278 struct page *cursor, *valid_page = NULL;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700279 unsigned long nr_strict_required = end_pfn - blockpfn;
280 unsigned long flags;
281 bool locked = false;
Mel Gorman748446b2010-05-24 14:32:27 -0700282
Mel Gorman748446b2010-05-24 14:32:27 -0700283 cursor = pfn_to_page(blockpfn);
284
Mel Gormanf40d1e42012-10-08 16:32:36 -0700285 /* Isolate free pages. */
Mel Gorman748446b2010-05-24 14:32:27 -0700286 for (; blockpfn < end_pfn; blockpfn++, cursor++) {
287 int isolated, i;
288 struct page *page = cursor;
289
Mel Gormanb7aba692011-01-13 15:45:54 -0800290 nr_scanned++;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700291 if (!pfn_valid_within(blockpfn))
Mel Gorman748446b2010-05-24 14:32:27 -0700292 continue;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700293 if (!valid_page)
294 valid_page = page;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700295 if (!PageBuddy(page))
296 continue;
297
298 /*
299 * The zone lock must be held to isolate freepages.
300 * Unfortunately this is a very coarse lock and can be
301 * heavily contended if there are parallel allocations
302 * or parallel compactions. For async compaction do not
303 * spin on the lock and we acquire the lock as late as
304 * possible.
305 */
306 locked = compact_checklock_irqsave(&cc->zone->lock, &flags,
307 locked, cc);
308 if (!locked)
309 break;
310
311 /* Recheck this is a suitable migration target under lock */
312 if (!strict && !suitable_migration_target(page))
313 break;
314
315 /* Recheck this is a buddy page under lock */
316 if (!PageBuddy(page))
317 continue;
Mel Gorman748446b2010-05-24 14:32:27 -0700318
319 /* Found a free page, break it into order-0 pages */
320 isolated = split_free_page(page);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100321 if (!isolated && strict)
Mel Gormanf40d1e42012-10-08 16:32:36 -0700322 break;
Mel Gorman748446b2010-05-24 14:32:27 -0700323 total_isolated += isolated;
324 for (i = 0; i < isolated; i++) {
325 list_add(&page->lru, freelist);
326 page++;
327 }
328
329 /* If a page was split, advance to the end of it */
330 if (isolated) {
331 blockpfn += isolated - 1;
332 cursor += isolated - 1;
333 }
334 }
335
Mel Gormanb7aba692011-01-13 15:45:54 -0800336 trace_mm_compaction_isolate_freepages(nr_scanned, total_isolated);
Mel Gormanf40d1e42012-10-08 16:32:36 -0700337
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 */
343 if (strict && nr_strict_required != total_isolated)
344 total_isolated = 0;
345
346 if (locked)
347 spin_unlock_irqrestore(&cc->zone->lock, flags);
348
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700349 /* Update the pageblock-skip if the whole pageblock was scanned */
350 if (blockpfn == end_pfn)
Mel Gormanc89511a2012-10-08 16:32:45 -0700351 update_pageblock_skip(cc, valid_page, total_isolated, false);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700352
Mel Gorman748446b2010-05-24 14:32:27 -0700353 return total_isolated;
354}
355
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100356/**
357 * isolate_freepages_range() - isolate free pages.
358 * @start_pfn: The first PFN to start isolating.
359 * @end_pfn: The one-past-last PFN.
360 *
361 * Non-free pages, invalid PFNs, or zone boundaries within the
362 * [start_pfn, end_pfn) range are considered errors, cause function to
363 * undo its actions and return zero.
364 *
365 * Otherwise, function returns one-past-the-last PFN of isolated page
366 * (which may be greater then end_pfn if end fell in a middle of
367 * a free page).
368 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100369unsigned long
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700370isolate_freepages_range(struct compact_control *cc,
371 unsigned long start_pfn, unsigned long end_pfn)
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100372{
Mel Gormanf40d1e42012-10-08 16:32:36 -0700373 unsigned long isolated, pfn, block_end_pfn;
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100374 LIST_HEAD(freelist);
375
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100376 for (pfn = start_pfn; pfn < end_pfn; pfn += isolated) {
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700377 if (!pfn_valid(pfn) || cc->zone != page_zone(pfn_to_page(pfn)))
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100378 break;
379
380 /*
381 * On subsequent iterations ALIGN() is actually not needed,
382 * but we keep it that we not to complicate the code.
383 */
384 block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages);
385 block_end_pfn = min(block_end_pfn, end_pfn);
386
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700387 isolated = isolate_freepages_block(cc, pfn, block_end_pfn,
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100388 &freelist, true);
Michal Nazarewicz85aa1252012-01-30 13:24:03 +0100389
390 /*
391 * In strict mode, isolate_freepages_block() returns 0 if
392 * there are any holes in the block (ie. invalid PFNs or
393 * non-free pages).
394 */
395 if (!isolated)
396 break;
397
398 /*
399 * If we managed to isolate pages, it is always (1 << n) *
400 * pageblock_nr_pages for some non-negative n. (Max order
401 * page may span two pageblocks).
402 */
403 }
404
405 /* split_free_page does not map the pages */
406 map_pages(&freelist);
407
408 if (pfn < end_pfn) {
409 /* Loop terminated early, cleanup. */
410 release_freepages(&freelist);
411 return 0;
412 }
413
414 /* We don't use freelists for anything. */
415 return pfn;
416}
417
Mel Gorman748446b2010-05-24 14:32:27 -0700418/* Update the number of anon and file isolated pages in the zone */
Mel Gormanc67fe372012-08-21 16:16:17 -0700419static void acct_isolated(struct zone *zone, bool locked, struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700420{
421 struct page *page;
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700422 unsigned int count[2] = { 0, };
Mel Gorman748446b2010-05-24 14:32:27 -0700423
Minchan Kimb9e84ac2011-10-31 17:06:44 -0700424 list_for_each_entry(page, &cc->migratepages, lru)
425 count[!!page_is_file_cache(page)]++;
Mel Gorman748446b2010-05-24 14:32:27 -0700426
Mel Gormanc67fe372012-08-21 16:16:17 -0700427 /* If locked we can use the interrupt unsafe versions */
428 if (locked) {
429 __mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
430 __mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
431 } else {
432 mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]);
433 mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]);
434 }
Mel Gorman748446b2010-05-24 14:32:27 -0700435}
436
437/* Similar to reclaim, but different enough that they don't share logic */
438static bool too_many_isolated(struct zone *zone)
439{
Minchan Kimbc693042010-09-09 16:38:00 -0700440 unsigned long active, inactive, isolated;
Mel Gorman748446b2010-05-24 14:32:27 -0700441
442 inactive = zone_page_state(zone, NR_INACTIVE_FILE) +
443 zone_page_state(zone, NR_INACTIVE_ANON);
Minchan Kimbc693042010-09-09 16:38:00 -0700444 active = zone_page_state(zone, NR_ACTIVE_FILE) +
445 zone_page_state(zone, NR_ACTIVE_ANON);
Mel Gorman748446b2010-05-24 14:32:27 -0700446 isolated = zone_page_state(zone, NR_ISOLATED_FILE) +
447 zone_page_state(zone, NR_ISOLATED_ANON);
448
Minchan Kimbc693042010-09-09 16:38:00 -0700449 return isolated > (inactive + active) / 2;
Mel Gorman748446b2010-05-24 14:32:27 -0700450}
451
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100452/**
453 * isolate_migratepages_range() - isolate all migrate-able pages in range.
454 * @zone: Zone pages are in.
455 * @cc: Compaction control structure.
456 * @low_pfn: The first PFN of the range.
457 * @end_pfn: The one-past-the-last PFN of the range.
458 *
459 * Isolate all pages that can be migrated from the range specified by
460 * [low_pfn, end_pfn). Returns zero if there is a fatal signal
461 * pending), otherwise PFN of the first page that was not scanned
462 * (which may be both less, equal to or more then end_pfn).
463 *
464 * Assumes that cc->migratepages is empty and cc->nr_migratepages is
465 * zero.
466 *
467 * Apart from cc->migratepages and cc->nr_migratetypes this function
468 * does not modify any cc's fields, in particular it does not modify
469 * (or read for that matter) cc->migrate_pfn.
Mel Gorman748446b2010-05-24 14:32:27 -0700470 */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100471unsigned long
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100472isolate_migratepages_range(struct zone *zone, struct compact_control *cc,
473 unsigned long low_pfn, unsigned long end_pfn)
Mel Gorman748446b2010-05-24 14:32:27 -0700474{
Mel Gorman9927af742011-01-13 15:45:59 -0800475 unsigned long last_pageblock_nr = 0, pageblock_nr;
Mel Gormanb7aba692011-01-13 15:45:54 -0800476 unsigned long nr_scanned = 0, nr_isolated = 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700477 struct list_head *migratelist = &cc->migratepages;
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -0700478 isolate_mode_t mode = 0;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700479 struct lruvec *lruvec;
Mel Gormanc67fe372012-08-21 16:16:17 -0700480 unsigned long flags;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700481 bool locked = false;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700482 struct page *page = NULL, *valid_page = NULL;
Mel Gorman748446b2010-05-24 14:32:27 -0700483
Mel Gorman748446b2010-05-24 14:32:27 -0700484 /*
485 * Ensure that there are not too many pages isolated from the LRU
486 * list by either parallel reclaimers or compaction. If there are,
487 * delay for some time until fewer pages are isolated
488 */
489 while (unlikely(too_many_isolated(zone))) {
Mel Gormanf9e35b32011-06-15 15:08:52 -0700490 /* async migration should just abort */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700491 if (!cc->sync)
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100492 return 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700493
Mel Gorman748446b2010-05-24 14:32:27 -0700494 congestion_wait(BLK_RW_ASYNC, HZ/10);
495
496 if (fatal_signal_pending(current))
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100497 return 0;
Mel Gorman748446b2010-05-24 14:32:27 -0700498 }
499
500 /* Time to isolate some pages for migration */
Andrea Arcangelib2eef8c2011-03-22 16:33:10 -0700501 cond_resched();
Mel Gorman748446b2010-05-24 14:32:27 -0700502 for (; low_pfn < end_pfn; low_pfn++) {
Andrea Arcangelib2eef8c2011-03-22 16:33:10 -0700503 /* give a chance to irqs before checking need_resched() */
Mel Gorman2a1402a2012-10-08 16:32:33 -0700504 if (locked && !((low_pfn+1) % SWAP_CLUSTER_MAX)) {
505 if (should_release_lock(&zone->lru_lock)) {
506 spin_unlock_irqrestore(&zone->lru_lock, flags);
507 locked = false;
508 }
Andrea Arcangelib2eef8c2011-03-22 16:33:10 -0700509 }
Mel Gormanc67fe372012-08-21 16:16:17 -0700510
Mel Gorman0bf380b2012-02-03 15:37:18 -0800511 /*
512 * migrate_pfn does not necessarily start aligned to a
513 * pageblock. Ensure that pfn_valid is called when moving
514 * into a new MAX_ORDER_NR_PAGES range in case of large
515 * memory holes within the zone
516 */
517 if ((low_pfn & (MAX_ORDER_NR_PAGES - 1)) == 0) {
518 if (!pfn_valid(low_pfn)) {
519 low_pfn += MAX_ORDER_NR_PAGES - 1;
520 continue;
521 }
522 }
523
Mel Gorman748446b2010-05-24 14:32:27 -0700524 if (!pfn_valid_within(low_pfn))
525 continue;
Mel Gormanb7aba692011-01-13 15:45:54 -0800526 nr_scanned++;
Mel Gorman748446b2010-05-24 14:32:27 -0700527
Mel Gormandc908602012-02-08 17:13:38 -0800528 /*
529 * Get the page and ensure the page is within the same zone.
530 * See the comment in isolate_freepages about overlapping
531 * nodes. It is deliberate that the new zone lock is not taken
532 * as memory compaction should not move pages between nodes.
533 */
Mel Gorman748446b2010-05-24 14:32:27 -0700534 page = pfn_to_page(low_pfn);
Mel Gormandc908602012-02-08 17:13:38 -0800535 if (page_zone(page) != zone)
536 continue;
537
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700538 if (!valid_page)
539 valid_page = page;
540
541 /* If isolation recently failed, do not retry */
542 pageblock_nr = low_pfn >> pageblock_order;
543 if (!isolation_suitable(cc, page))
544 goto next_pageblock;
545
Mel Gormandc908602012-02-08 17:13:38 -0800546 /* Skip if free */
Mel Gorman748446b2010-05-24 14:32:27 -0700547 if (PageBuddy(page))
548 continue;
549
Mel Gorman9927af742011-01-13 15:45:59 -0800550 /*
551 * For async migration, also only scan in MOVABLE blocks. Async
552 * migration is optimistic to see if the minimum amount of work
553 * satisfies the allocation
554 */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700555 if (!cc->sync && last_pageblock_nr != pageblock_nr &&
Michal Nazarewicz47118af2011-12-29 13:09:50 +0100556 !migrate_async_suitable(get_pageblock_migratetype(page))) {
Mel Gormanc89511a2012-10-08 16:32:45 -0700557 cc->finished_update_migrate = true;
Mel Gorman2a1402a2012-10-08 16:32:33 -0700558 goto next_pageblock;
Mel Gorman9927af742011-01-13 15:45:59 -0800559 }
560
Mel Gorman2a1402a2012-10-08 16:32:33 -0700561 /* Check may be lockless but that's ok as we recheck later */
Andrea Arcangelibc835012011-01-13 15:47:08 -0800562 if (!PageLRU(page))
563 continue;
564
565 /*
Mel Gorman2a1402a2012-10-08 16:32:33 -0700566 * PageLRU is set. lru_lock normally excludes isolation
567 * splitting and collapsing (collapsing has already happened
568 * if PageLRU is set) but the lock is not necessarily taken
569 * here and it is wasteful to take it just to check transhuge.
570 * Check TransHuge without lock and skip the whole pageblock if
571 * it's either a transhuge or hugetlbfs page, as calling
572 * compound_order() without preventing THP from splitting the
573 * page underneath us may return surprising results.
Andrea Arcangelibc835012011-01-13 15:47:08 -0800574 */
575 if (PageTransHuge(page)) {
Mel Gorman2a1402a2012-10-08 16:32:33 -0700576 if (!locked)
577 goto next_pageblock;
578 low_pfn += (1 << compound_order(page)) - 1;
579 continue;
580 }
581
582 /* Check if it is ok to still hold the lock */
583 locked = compact_checklock_irqsave(&zone->lru_lock, &flags,
584 locked, cc);
585 if (!locked || fatal_signal_pending(current))
586 break;
587
588 /* Recheck PageLRU and PageTransHuge under lock */
589 if (!PageLRU(page))
590 continue;
591 if (PageTransHuge(page)) {
Andrea Arcangelibc835012011-01-13 15:47:08 -0800592 low_pfn += (1 << compound_order(page)) - 1;
593 continue;
594 }
595
Linus Torvalds68e3e922012-06-03 20:05:57 -0700596 if (!cc->sync)
Mel Gormanc8244932012-01-12 17:19:38 -0800597 mode |= ISOLATE_ASYNC_MIGRATE;
598
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700599 lruvec = mem_cgroup_page_lruvec(page, zone);
600
Mel Gorman748446b2010-05-24 14:32:27 -0700601 /* Try isolate the page */
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -0700602 if (__isolate_lru_page(page, mode) != 0)
Mel Gorman748446b2010-05-24 14:32:27 -0700603 continue;
604
Andrea Arcangelibc835012011-01-13 15:47:08 -0800605 VM_BUG_ON(PageTransCompound(page));
606
Mel Gorman748446b2010-05-24 14:32:27 -0700607 /* Successfully isolated */
Mel Gormanc89511a2012-10-08 16:32:45 -0700608 cc->finished_update_migrate = true;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700609 del_page_from_lru_list(page, lruvec, page_lru(page));
Mel Gorman748446b2010-05-24 14:32:27 -0700610 list_add(&page->lru, migratelist);
Mel Gorman748446b2010-05-24 14:32:27 -0700611 cc->nr_migratepages++;
Mel Gormanb7aba692011-01-13 15:45:54 -0800612 nr_isolated++;
Mel Gorman748446b2010-05-24 14:32:27 -0700613
614 /* Avoid isolating too much */
Hillf Danton31b83842012-01-10 15:07:59 -0800615 if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) {
616 ++low_pfn;
Mel Gorman748446b2010-05-24 14:32:27 -0700617 break;
Hillf Danton31b83842012-01-10 15:07:59 -0800618 }
Mel Gorman2a1402a2012-10-08 16:32:33 -0700619
620 continue;
621
622next_pageblock:
623 low_pfn += pageblock_nr_pages;
624 low_pfn = ALIGN(low_pfn, pageblock_nr_pages) - 1;
625 last_pageblock_nr = pageblock_nr;
Mel Gorman748446b2010-05-24 14:32:27 -0700626 }
627
Mel Gormanc67fe372012-08-21 16:16:17 -0700628 acct_isolated(zone, locked, cc);
Mel Gorman748446b2010-05-24 14:32:27 -0700629
Mel Gormanc67fe372012-08-21 16:16:17 -0700630 if (locked)
631 spin_unlock_irqrestore(&zone->lru_lock, flags);
Mel Gorman748446b2010-05-24 14:32:27 -0700632
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700633 /* Update the pageblock-skip if the whole pageblock was scanned */
634 if (low_pfn == end_pfn)
Mel Gormanc89511a2012-10-08 16:32:45 -0700635 update_pageblock_skip(cc, valid_page, nr_isolated, true);
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700636
Mel Gormanb7aba692011-01-13 15:45:54 -0800637 trace_mm_compaction_isolate_migratepages(nr_scanned, nr_isolated);
638
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100639 return low_pfn;
640}
641
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100642#endif /* CONFIG_COMPACTION || CONFIG_CMA */
643#ifdef CONFIG_COMPACTION
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100644/*
645 * Based on information in the current compact_control, find blocks
646 * suitable for isolating free pages from and then isolate them.
647 */
648static void isolate_freepages(struct zone *zone,
649 struct compact_control *cc)
650{
651 struct page *page;
652 unsigned long high_pfn, low_pfn, pfn, zone_end_pfn, end_pfn;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100653 int nr_freepages = cc->nr_freepages;
654 struct list_head *freelist = &cc->freepages;
655
656 /*
657 * Initialise the free scanner. The starting point is where we last
658 * scanned from (or the end of the zone if starting). The low point
659 * is the end of the pageblock the migration scanner is using.
660 */
661 pfn = cc->free_pfn;
662 low_pfn = cc->migrate_pfn + pageblock_nr_pages;
663
664 /*
665 * Take care that if the migration scanner is at the end of the zone
666 * that the free scanner does not accidentally move to the next zone
667 * in the next isolation cycle.
668 */
669 high_pfn = min(low_pfn, pfn);
670
671 zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
672
673 /*
674 * Isolate free pages until enough are available to migrate the
675 * pages on cc->migratepages. We stop searching if the migrate
676 * and free page scanners meet or enough free pages are isolated.
677 */
678 for (; pfn > low_pfn && cc->nr_migratepages > nr_freepages;
679 pfn -= pageblock_nr_pages) {
680 unsigned long isolated;
681
682 if (!pfn_valid(pfn))
683 continue;
684
685 /*
686 * Check for overlapping nodes/zones. It's possible on some
687 * configurations to have a setup like
688 * node0 node1 node0
689 * i.e. it's possible that all pages within a zones range of
690 * pages do not belong to a single zone.
691 */
692 page = pfn_to_page(pfn);
693 if (page_zone(page) != zone)
694 continue;
695
696 /* Check the block is suitable for migration */
Linus Torvalds68e3e922012-06-03 20:05:57 -0700697 if (!suitable_migration_target(page))
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100698 continue;
Linus Torvalds68e3e922012-06-03 20:05:57 -0700699
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700700 /* If isolation recently failed, do not retry */
701 if (!isolation_suitable(cc, page))
702 continue;
703
Mel Gormanf40d1e42012-10-08 16:32:36 -0700704 /* Found a block suitable for isolating free pages from */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100705 isolated = 0;
Mel Gormanf40d1e42012-10-08 16:32:36 -0700706 end_pfn = min(pfn + pageblock_nr_pages, zone_end_pfn);
707 isolated = isolate_freepages_block(cc, pfn, end_pfn,
708 freelist, false);
709 nr_freepages += isolated;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100710
711 /*
712 * Record the highest PFN we isolated pages from. When next
713 * looking for free pages, the search will restart here as
714 * page migration may have returned some pages to the allocator
715 */
Mel Gormanc89511a2012-10-08 16:32:45 -0700716 if (isolated) {
717 cc->finished_update_free = true;
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100718 high_pfn = max(high_pfn, pfn);
Mel Gormanc89511a2012-10-08 16:32:45 -0700719 }
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100720 }
721
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100722 /* split_free_page does not map the pages */
723 map_pages(freelist);
Michal Nazarewicz2fe86e02012-01-30 13:16:26 +0100724
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100725 cc->free_pfn = high_pfn;
726 cc->nr_freepages = nr_freepages;
Mel Gorman748446b2010-05-24 14:32:27 -0700727}
728
729/*
730 * This is a migrate-callback that "allocates" freepages by taking pages
731 * from the isolated freelists in the block we are migrating to.
732 */
733static struct page *compaction_alloc(struct page *migratepage,
734 unsigned long data,
735 int **result)
736{
737 struct compact_control *cc = (struct compact_control *)data;
738 struct page *freepage;
739
740 /* Isolate free pages if necessary */
741 if (list_empty(&cc->freepages)) {
742 isolate_freepages(cc->zone, cc);
743
744 if (list_empty(&cc->freepages))
745 return NULL;
746 }
747
748 freepage = list_entry(cc->freepages.next, struct page, lru);
749 list_del(&freepage->lru);
750 cc->nr_freepages--;
751
752 return freepage;
753}
754
755/*
756 * We cannot control nr_migratepages and nr_freepages fully when migration is
757 * running as migrate_pages() has no knowledge of compact_control. When
758 * migration is complete, we count the number of pages on the lists by hand.
759 */
760static void update_nr_listpages(struct compact_control *cc)
761{
762 int nr_migratepages = 0;
763 int nr_freepages = 0;
764 struct page *page;
765
766 list_for_each_entry(page, &cc->migratepages, lru)
767 nr_migratepages++;
768 list_for_each_entry(page, &cc->freepages, lru)
769 nr_freepages++;
770
771 cc->nr_migratepages = nr_migratepages;
772 cc->nr_freepages = nr_freepages;
773}
774
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100775/* possible outcome of isolate_migratepages */
776typedef enum {
777 ISOLATE_ABORT, /* Abort compaction now */
778 ISOLATE_NONE, /* No pages isolated, continue scanning */
779 ISOLATE_SUCCESS, /* Pages isolated, migrate */
780} isolate_migrate_t;
781
782/*
783 * Isolate all pages that can be migrated from the block pointed to by
784 * the migrate scanner within compact_control.
785 */
786static isolate_migrate_t isolate_migratepages(struct zone *zone,
787 struct compact_control *cc)
788{
789 unsigned long low_pfn, end_pfn;
790
791 /* Do not scan outside zone boundaries */
792 low_pfn = max(cc->migrate_pfn, zone->zone_start_pfn);
793
794 /* Only scan within a pageblock boundary */
795 end_pfn = ALIGN(low_pfn + pageblock_nr_pages, pageblock_nr_pages);
796
797 /* Do not cross the free scanner or scan within a memory hole */
798 if (end_pfn > cc->free_pfn || !pfn_valid(low_pfn)) {
799 cc->migrate_pfn = end_pfn;
800 return ISOLATE_NONE;
801 }
802
803 /* Perform the isolation */
804 low_pfn = isolate_migratepages_range(zone, cc, low_pfn, end_pfn);
Shaohua Lie64c5232012-10-08 16:32:27 -0700805 if (!low_pfn || cc->contended)
Michal Nazarewiczff9543f2011-12-29 13:09:50 +0100806 return ISOLATE_ABORT;
807
808 cc->migrate_pfn = low_pfn;
809
810 return ISOLATE_SUCCESS;
811}
812
Mel Gorman748446b2010-05-24 14:32:27 -0700813static int compact_finished(struct zone *zone,
Andrea Arcangeli5a03b052011-01-13 15:47:11 -0800814 struct compact_control *cc)
Mel Gorman748446b2010-05-24 14:32:27 -0700815{
Andrea Arcangeli5a03b052011-01-13 15:47:11 -0800816 unsigned long watermark;
Mel Gorman56de7262010-05-24 14:32:30 -0700817
Mel Gorman748446b2010-05-24 14:32:27 -0700818 if (fatal_signal_pending(current))
819 return COMPACT_PARTIAL;
820
Mel Gorman753341a2012-10-08 16:32:40 -0700821 /* Compaction run completes if the migrate and free scanner meet */
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700822 if (cc->free_pfn <= cc->migrate_pfn) {
823 reset_isolation_suitable(cc->zone);
Mel Gorman748446b2010-05-24 14:32:27 -0700824 return COMPACT_COMPLETE;
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700825 }
Mel Gorman748446b2010-05-24 14:32:27 -0700826
Johannes Weiner82478fb2011-01-20 14:44:21 -0800827 /*
828 * order == -1 is expected when compacting via
829 * /proc/sys/vm/compact_memory
830 */
Mel Gorman56de7262010-05-24 14:32:30 -0700831 if (cc->order == -1)
832 return COMPACT_CONTINUE;
833
Michal Hocko3957c772011-06-15 15:08:25 -0700834 /* Compaction run is not finished if the watermark is not met */
835 watermark = low_wmark_pages(zone);
836 watermark += (1 << cc->order);
837
838 if (!zone_watermark_ok(zone, cc->order, watermark, 0, 0))
839 return COMPACT_CONTINUE;
840
Mel Gorman56de7262010-05-24 14:32:30 -0700841 /* Direct compactor: Is a suitable page free? */
Mel Gorman1fb3f8c2012-10-08 16:29:12 -0700842 if (cc->page) {
843 /* Was a suitable page captured? */
844 if (*cc->page)
Mel Gorman56de7262010-05-24 14:32:30 -0700845 return COMPACT_PARTIAL;
Mel Gorman1fb3f8c2012-10-08 16:29:12 -0700846 } else {
847 unsigned int order;
848 for (order = cc->order; order < MAX_ORDER; order++) {
849 struct free_area *area = &zone->free_area[cc->order];
850 /* Job done if page is free of the right migratetype */
851 if (!list_empty(&area->free_list[cc->migratetype]))
852 return COMPACT_PARTIAL;
Mel Gorman56de7262010-05-24 14:32:30 -0700853
Mel Gorman1fb3f8c2012-10-08 16:29:12 -0700854 /* Job done if allocation would set block type */
855 if (cc->order >= pageblock_order && area->nr_free)
856 return COMPACT_PARTIAL;
857 }
Mel Gorman56de7262010-05-24 14:32:30 -0700858 }
859
Mel Gorman748446b2010-05-24 14:32:27 -0700860 return COMPACT_CONTINUE;
861}
862
Mel Gorman3e7d3442011-01-13 15:45:56 -0800863/*
864 * compaction_suitable: Is this suitable to run compaction on this zone now?
865 * Returns
866 * COMPACT_SKIPPED - If there are too few free pages for compaction
867 * COMPACT_PARTIAL - If the allocation would succeed without compaction
868 * COMPACT_CONTINUE - If compaction should run now
869 */
870unsigned long compaction_suitable(struct zone *zone, int order)
871{
872 int fragindex;
873 unsigned long watermark;
874
875 /*
Michal Hocko3957c772011-06-15 15:08:25 -0700876 * order == -1 is expected when compacting via
877 * /proc/sys/vm/compact_memory
878 */
879 if (order == -1)
880 return COMPACT_CONTINUE;
881
882 /*
Mel Gorman3e7d3442011-01-13 15:45:56 -0800883 * Watermarks for order-0 must be met for compaction. Note the 2UL.
884 * This is because during migration, copies of pages need to be
885 * allocated and for a short time, the footprint is higher
886 */
887 watermark = low_wmark_pages(zone) + (2UL << order);
888 if (!zone_watermark_ok(zone, 0, watermark, 0, 0))
889 return COMPACT_SKIPPED;
890
891 /*
892 * fragmentation index determines if allocation failures are due to
893 * low memory or external fragmentation
894 *
Shaohua Lia582a732011-06-15 15:08:49 -0700895 * index of -1000 implies allocations might succeed depending on
896 * watermarks
Mel Gorman3e7d3442011-01-13 15:45:56 -0800897 * index towards 0 implies failure is due to lack of memory
898 * index towards 1000 implies failure is due to fragmentation
899 *
900 * Only compact if a failure would be due to fragmentation.
901 */
902 fragindex = fragmentation_index(zone, order);
903 if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold)
904 return COMPACT_SKIPPED;
905
Shaohua Lia582a732011-06-15 15:08:49 -0700906 if (fragindex == -1000 && zone_watermark_ok(zone, order, watermark,
907 0, 0))
Mel Gorman3e7d3442011-01-13 15:45:56 -0800908 return COMPACT_PARTIAL;
909
910 return COMPACT_CONTINUE;
911}
912
Mel Gorman748446b2010-05-24 14:32:27 -0700913static int compact_zone(struct zone *zone, struct compact_control *cc)
914{
915 int ret;
Mel Gormanc89511a2012-10-08 16:32:45 -0700916 unsigned long start_pfn = zone->zone_start_pfn;
917 unsigned long end_pfn = zone->zone_start_pfn + zone->spanned_pages;
Mel Gorman748446b2010-05-24 14:32:27 -0700918
Mel Gorman3e7d3442011-01-13 15:45:56 -0800919 ret = compaction_suitable(zone, cc->order);
920 switch (ret) {
921 case COMPACT_PARTIAL:
922 case COMPACT_SKIPPED:
923 /* Compaction is likely to fail */
924 return ret;
925 case COMPACT_CONTINUE:
926 /* Fall through to compaction */
927 ;
928 }
929
Mel Gormanc89511a2012-10-08 16:32:45 -0700930 /*
931 * Setup to move all movable pages to the end of the zone. Used cached
932 * information on where the scanners should start but check that it
933 * is initialised by ensuring the values are within zone boundaries.
934 */
935 cc->migrate_pfn = zone->compact_cached_migrate_pfn;
936 cc->free_pfn = zone->compact_cached_free_pfn;
937 if (cc->free_pfn < start_pfn || cc->free_pfn > end_pfn) {
938 cc->free_pfn = end_pfn & ~(pageblock_nr_pages-1);
939 zone->compact_cached_free_pfn = cc->free_pfn;
940 }
941 if (cc->migrate_pfn < start_pfn || cc->migrate_pfn > end_pfn) {
942 cc->migrate_pfn = start_pfn;
943 zone->compact_cached_migrate_pfn = cc->migrate_pfn;
944 }
Mel Gorman748446b2010-05-24 14:32:27 -0700945
Mel Gormanbb13ffe2012-10-08 16:32:41 -0700946 /* Clear pageblock skip if there are numerous alloc failures */
947 if (zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT)
948 reset_isolation_suitable(zone);
949
Mel Gorman748446b2010-05-24 14:32:27 -0700950 migrate_prep_local();
951
952 while ((ret = compact_finished(zone, cc)) == COMPACT_CONTINUE) {
953 unsigned long nr_migrate, nr_remaining;
Minchan Kim9d502c12011-03-22 16:30:39 -0700954 int err;
Mel Gorman748446b2010-05-24 14:32:27 -0700955
Mel Gormanf9e35b32011-06-15 15:08:52 -0700956 switch (isolate_migratepages(zone, cc)) {
957 case ISOLATE_ABORT:
958 ret = COMPACT_PARTIAL;
Shaohua Lie64c5232012-10-08 16:32:27 -0700959 putback_lru_pages(&cc->migratepages);
960 cc->nr_migratepages = 0;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700961 goto out;
962 case ISOLATE_NONE:
Mel Gorman748446b2010-05-24 14:32:27 -0700963 continue;
Mel Gormanf9e35b32011-06-15 15:08:52 -0700964 case ISOLATE_SUCCESS:
965 ;
966 }
Mel Gorman748446b2010-05-24 14:32:27 -0700967
968 nr_migrate = cc->nr_migratepages;
Minchan Kim9d502c12011-03-22 16:30:39 -0700969 err = migrate_pages(&cc->migratepages, compaction_alloc,
Linus Torvalds68e3e922012-06-03 20:05:57 -0700970 (unsigned long)cc, false,
971 cc->sync ? MIGRATE_SYNC_LIGHT : MIGRATE_ASYNC);
Mel Gorman748446b2010-05-24 14:32:27 -0700972 update_nr_listpages(cc);
973 nr_remaining = cc->nr_migratepages;
974
975 count_vm_event(COMPACTBLOCKS);
976 count_vm_events(COMPACTPAGES, nr_migrate - nr_remaining);
977 if (nr_remaining)
978 count_vm_events(COMPACTPAGEFAILED, nr_remaining);
Mel Gormanb7aba692011-01-13 15:45:54 -0800979 trace_mm_compaction_migratepages(nr_migrate - nr_remaining,
980 nr_remaining);
Mel Gorman748446b2010-05-24 14:32:27 -0700981
982 /* Release LRU pages not migrated */
Minchan Kim9d502c12011-03-22 16:30:39 -0700983 if (err) {
Mel Gorman748446b2010-05-24 14:32:27 -0700984 putback_lru_pages(&cc->migratepages);
985 cc->nr_migratepages = 0;
David Rientjes4bf2bba2012-07-11 14:02:13 -0700986 if (err == -ENOMEM) {
987 ret = COMPACT_PARTIAL;
988 goto out;
989 }
Mel Gorman748446b2010-05-24 14:32:27 -0700990 }
Mel Gorman1fb3f8c2012-10-08 16:29:12 -0700991
992 /* Capture a page now if it is a suitable size */
993 compact_capture_page(cc);
Mel Gorman748446b2010-05-24 14:32:27 -0700994 }
995
Mel Gormanf9e35b32011-06-15 15:08:52 -0700996out:
Mel Gorman748446b2010-05-24 14:32:27 -0700997 /* Release free pages and check accounting */
998 cc->nr_freepages -= release_freepages(&cc->freepages);
999 VM_BUG_ON(cc->nr_freepages != 0);
1000
1001 return ret;
1002}
Mel Gorman76ab0f52010-05-24 14:32:28 -07001003
Kyungmin Parkd43a87e2011-10-31 17:09:08 -07001004static unsigned long compact_zone_order(struct zone *zone,
Andrea Arcangeli5a03b052011-01-13 15:47:11 -08001005 int order, gfp_t gfp_mask,
Mel Gorman1fb3f8c2012-10-08 16:29:12 -07001006 bool sync, bool *contended,
1007 struct page **page)
Mel Gorman56de7262010-05-24 14:32:30 -07001008{
Shaohua Lie64c5232012-10-08 16:32:27 -07001009 unsigned long ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001010 struct compact_control cc = {
1011 .nr_freepages = 0,
1012 .nr_migratepages = 0,
1013 .order = order,
1014 .migratetype = allocflags_to_migratetype(gfp_mask),
1015 .zone = zone,
Linus Torvalds68e3e922012-06-03 20:05:57 -07001016 .sync = sync,
Mel Gorman1fb3f8c2012-10-08 16:29:12 -07001017 .page = page,
Mel Gorman56de7262010-05-24 14:32:30 -07001018 };
1019 INIT_LIST_HEAD(&cc.freepages);
1020 INIT_LIST_HEAD(&cc.migratepages);
1021
Shaohua Lie64c5232012-10-08 16:32:27 -07001022 ret = compact_zone(zone, &cc);
1023
1024 VM_BUG_ON(!list_empty(&cc.freepages));
1025 VM_BUG_ON(!list_empty(&cc.migratepages));
1026
1027 *contended = cc.contended;
1028 return ret;
Mel Gorman56de7262010-05-24 14:32:30 -07001029}
1030
Mel Gorman5e771902010-05-24 14:32:31 -07001031int sysctl_extfrag_threshold = 500;
1032
Mel Gorman56de7262010-05-24 14:32:30 -07001033/**
1034 * try_to_compact_pages - Direct compact to satisfy a high-order allocation
1035 * @zonelist: The zonelist used for the current allocation
1036 * @order: The order of the current allocation
1037 * @gfp_mask: The GFP mask of the current allocation
1038 * @nodemask: The allowed nodes to allocate from
Mel Gorman77f1fe62011-01-13 15:45:57 -08001039 * @sync: Whether migration is synchronous or not
Mel Gorman661c4cb2012-10-08 16:32:31 -07001040 * @contended: Return value that is true if compaction was aborted due to lock contention
1041 * @page: Optionally capture a free page of the requested order during compaction
Mel Gorman56de7262010-05-24 14:32:30 -07001042 *
1043 * This is the main entry point for direct page compaction.
1044 */
1045unsigned long try_to_compact_pages(struct zonelist *zonelist,
Mel Gorman77f1fe62011-01-13 15:45:57 -08001046 int order, gfp_t gfp_mask, nodemask_t *nodemask,
Mel Gorman1fb3f8c2012-10-08 16:29:12 -07001047 bool sync, bool *contended, struct page **page)
Mel Gorman56de7262010-05-24 14:32:30 -07001048{
1049 enum zone_type high_zoneidx = gfp_zone(gfp_mask);
1050 int may_enter_fs = gfp_mask & __GFP_FS;
1051 int may_perform_io = gfp_mask & __GFP_IO;
Mel Gorman56de7262010-05-24 14:32:30 -07001052 struct zoneref *z;
1053 struct zone *zone;
1054 int rc = COMPACT_SKIPPED;
Bartlomiej Zolnierkiewiczd95ea5d2012-10-08 16:32:05 -07001055 int alloc_flags = 0;
Mel Gorman56de7262010-05-24 14:32:30 -07001056
Mel Gorman4ffb6332012-10-08 16:29:09 -07001057 /* Check if the GFP flags allow compaction */
Andrea Arcangelic5a73c32011-01-13 15:47:11 -08001058 if (!order || !may_enter_fs || !may_perform_io)
Mel Gorman56de7262010-05-24 14:32:30 -07001059 return rc;
1060
1061 count_vm_event(COMPACTSTALL);
1062
Bartlomiej Zolnierkiewiczd95ea5d2012-10-08 16:32:05 -07001063#ifdef CONFIG_CMA
1064 if (allocflags_to_migratetype(gfp_mask) == MIGRATE_MOVABLE)
1065 alloc_flags |= ALLOC_CMA;
1066#endif
Mel Gorman56de7262010-05-24 14:32:30 -07001067 /* Compact each zone in the list */
1068 for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx,
1069 nodemask) {
Mel Gorman56de7262010-05-24 14:32:30 -07001070 int status;
1071
Mel Gormanc67fe372012-08-21 16:16:17 -07001072 status = compact_zone_order(zone, order, gfp_mask, sync,
Mel Gorman1fb3f8c2012-10-08 16:29:12 -07001073 contended, page);
Mel Gorman56de7262010-05-24 14:32:30 -07001074 rc = max(status, rc);
1075
Mel Gorman3e7d3442011-01-13 15:45:56 -08001076 /* If a normal allocation would succeed, stop compacting */
Bartlomiej Zolnierkiewiczd95ea5d2012-10-08 16:32:05 -07001077 if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0,
1078 alloc_flags))
Mel Gorman56de7262010-05-24 14:32:30 -07001079 break;
1080 }
1081
1082 return rc;
1083}
1084
1085
Mel Gorman76ab0f52010-05-24 14:32:28 -07001086/* Compact all zones within a node */
Rik van Riel7be62de2012-03-21 16:33:52 -07001087static int __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc)
Mel Gorman76ab0f52010-05-24 14:32:28 -07001088{
1089 int zoneid;
Mel Gorman76ab0f52010-05-24 14:32:28 -07001090 struct zone *zone;
1091
Mel Gorman76ab0f52010-05-24 14:32:28 -07001092 for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) {
Mel Gorman76ab0f52010-05-24 14:32:28 -07001093
1094 zone = &pgdat->node_zones[zoneid];
1095 if (!populated_zone(zone))
1096 continue;
1097
Rik van Riel7be62de2012-03-21 16:33:52 -07001098 cc->nr_freepages = 0;
1099 cc->nr_migratepages = 0;
1100 cc->zone = zone;
1101 INIT_LIST_HEAD(&cc->freepages);
1102 INIT_LIST_HEAD(&cc->migratepages);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001103
Dan Carpenteraad6ec32012-03-21 16:33:54 -07001104 if (cc->order == -1 || !compaction_deferred(zone, cc->order))
Rik van Riel7be62de2012-03-21 16:33:52 -07001105 compact_zone(zone, cc);
Mel Gorman76ab0f52010-05-24 14:32:28 -07001106
Rik van Rielaff62242012-03-21 16:33:52 -07001107 if (cc->order > 0) {
1108 int ok = zone_watermark_ok(zone, cc->order,
1109 low_wmark_pages(zone), 0, 0);
Minchan Kimc81758f2012-08-21 16:16:03 -07001110 if (ok && cc->order >= zone->compact_order_failed)
Rik van Rielaff62242012-03-21 16:33:52 -07001111 zone->compact_order_failed = cc->order + 1;
1112 /* Currently async compaction is never deferred. */
Linus Torvalds68e3e922012-06-03 20:05:57 -07001113 else if (!ok && cc->sync)
Rik van Rielaff62242012-03-21 16:33:52 -07001114 defer_compaction(zone, cc->order);
1115 }
1116
Rik van Riel7be62de2012-03-21 16:33:52 -07001117 VM_BUG_ON(!list_empty(&cc->freepages));
1118 VM_BUG_ON(!list_empty(&cc->migratepages));
Mel Gorman76ab0f52010-05-24 14:32:28 -07001119 }
1120
1121 return 0;
1122}
1123
Rik van Riel7be62de2012-03-21 16:33:52 -07001124int compact_pgdat(pg_data_t *pgdat, int order)
1125{
1126 struct compact_control cc = {
1127 .order = order,
Linus Torvalds68e3e922012-06-03 20:05:57 -07001128 .sync = false,
Mel Gorman1fb3f8c2012-10-08 16:29:12 -07001129 .page = NULL,
Rik van Riel7be62de2012-03-21 16:33:52 -07001130 };
1131
1132 return __compact_pgdat(pgdat, &cc);
1133}
1134
1135static int compact_node(int nid)
1136{
Rik van Riel7be62de2012-03-21 16:33:52 -07001137 struct compact_control cc = {
1138 .order = -1,
Linus Torvalds68e3e922012-06-03 20:05:57 -07001139 .sync = true,
Mel Gorman1fb3f8c2012-10-08 16:29:12 -07001140 .page = NULL,
Rik van Riel7be62de2012-03-21 16:33:52 -07001141 };
1142
Hugh Dickins8575ec22012-03-21 16:33:53 -07001143 return __compact_pgdat(NODE_DATA(nid), &cc);
Rik van Riel7be62de2012-03-21 16:33:52 -07001144}
1145
Mel Gorman76ab0f52010-05-24 14:32:28 -07001146/* Compact all nodes in the system */
1147static int compact_nodes(void)
1148{
1149 int nid;
1150
Hugh Dickins8575ec22012-03-21 16:33:53 -07001151 /* Flush pending updates to the LRU lists */
1152 lru_add_drain_all();
1153
Mel Gorman76ab0f52010-05-24 14:32:28 -07001154 for_each_online_node(nid)
1155 compact_node(nid);
1156
1157 return COMPACT_COMPLETE;
1158}
1159
1160/* The written value is actually unused, all memory is compacted */
1161int sysctl_compact_memory;
1162
1163/* This is the entry point for compacting all nodes via /proc/sys/vm */
1164int sysctl_compaction_handler(struct ctl_table *table, int write,
1165 void __user *buffer, size_t *length, loff_t *ppos)
1166{
1167 if (write)
1168 return compact_nodes();
1169
1170 return 0;
1171}
Mel Gormaned4a6d72010-05-24 14:32:29 -07001172
Mel Gorman5e771902010-05-24 14:32:31 -07001173int sysctl_extfrag_handler(struct ctl_table *table, int write,
1174 void __user *buffer, size_t *length, loff_t *ppos)
1175{
1176 proc_dointvec_minmax(table, write, buffer, length, ppos);
1177
1178 return 0;
1179}
1180
Mel Gormaned4a6d72010-05-24 14:32:29 -07001181#if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
Kay Sievers10fbcf42011-12-21 14:48:43 -08001182ssize_t sysfs_compact_node(struct device *dev,
1183 struct device_attribute *attr,
Mel Gormaned4a6d72010-05-24 14:32:29 -07001184 const char *buf, size_t count)
1185{
Hugh Dickins8575ec22012-03-21 16:33:53 -07001186 int nid = dev->id;
1187
1188 if (nid >= 0 && nid < nr_node_ids && node_online(nid)) {
1189 /* Flush pending updates to the LRU lists */
1190 lru_add_drain_all();
1191
1192 compact_node(nid);
1193 }
Mel Gormaned4a6d72010-05-24 14:32:29 -07001194
1195 return count;
1196}
Kay Sievers10fbcf42011-12-21 14:48:43 -08001197static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001198
1199int compaction_register_node(struct node *node)
1200{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001201 return device_create_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001202}
1203
1204void compaction_unregister_node(struct node *node)
1205{
Kay Sievers10fbcf42011-12-21 14:48:43 -08001206 return device_remove_file(&node->dev, &dev_attr_compact);
Mel Gormaned4a6d72010-05-24 14:32:29 -07001207}
1208#endif /* CONFIG_SYSFS && CONFIG_NUMA */
Michal Nazarewiczff9543f2011-12-29 13:09:50 +01001209
1210#endif /* CONFIG_COMPACTION */