blob: 41eba21f10ba038f3d7147071c05e8746826ec82 [file] [log] [blame]
Christoph Lameterb20a3502006-03-22 00:09:12 -08001/*
2 * Memory Migration functionality - linux/mm/migration.c
3 *
4 * Copyright (C) 2006 Silicon Graphics, Inc., Christoph Lameter
5 *
6 * Page migration was first developed in the context of the memory hotplug
7 * project. The main authors of the migration code are:
8 *
9 * IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
10 * Hirokazu Takahashi <taka@valinux.co.jp>
11 * Dave Hansen <haveblue@us.ibm.com>
Christoph Lametercde53532008-07-04 09:59:22 -070012 * Christoph Lameter
Christoph Lameterb20a3502006-03-22 00:09:12 -080013 */
14
15#include <linux/migrate.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040016#include <linux/export.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080017#include <linux/swap.h>
Christoph Lameter06972122006-06-23 02:03:35 -070018#include <linux/swapops.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080019#include <linux/pagemap.h>
Christoph Lametere23ca002006-04-10 22:52:57 -070020#include <linux/buffer_head.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080021#include <linux/mm_inline.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070022#include <linux/nsproxy.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080023#include <linux/pagevec.h>
Hugh Dickinse9995ef2009-12-14 17:59:31 -080024#include <linux/ksm.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080025#include <linux/rmap.h>
26#include <linux/topology.h>
27#include <linux/cpu.h>
28#include <linux/cpuset.h>
Christoph Lameter04e62a22006-06-23 02:03:38 -070029#include <linux/writeback.h>
Christoph Lameter742755a2006-06-23 02:03:55 -070030#include <linux/mempolicy.h>
31#include <linux/vmalloc.h>
David Quigley86c3a762006-06-23 02:04:02 -070032#include <linux/security.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033#include <linux/memcontrol.h>
Adrian Bunk4f5ca262008-07-23 21:27:02 -070034#include <linux/syscalls.h>
Naoya Horiguchi290408d2010-09-08 10:19:35 +090035#include <linux/hugetlb.h>
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -070036#include <linux/hugetlb_cgroup.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/gfp.h>
Rafael Aquinibf6bddf2012-12-11 16:02:42 -080038#include <linux/balloon_compaction.h>
Mel Gormanf714f4f2013-12-18 17:08:33 -080039#include <linux/mmu_notifier.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080040
Michal Nazarewicz0d1836c2010-12-21 17:24:26 -080041#include <asm/tlbflush.h>
42
Mel Gorman7b2a2d42012-10-19 14:07:31 +010043#define CREATE_TRACE_POINTS
44#include <trace/events/migrate.h>
45
Christoph Lameterb20a3502006-03-22 00:09:12 -080046#include "internal.h"
47
Christoph Lameterb20a3502006-03-22 00:09:12 -080048/*
Christoph Lameter742755a2006-06-23 02:03:55 -070049 * migrate_prep() needs to be called before we start compiling a list of pages
Mel Gorman748446b2010-05-24 14:32:27 -070050 * to be migrated using isolate_lru_page(). If scheduling work on other CPUs is
51 * undesirable, use migrate_prep_local()
Christoph Lameterb20a3502006-03-22 00:09:12 -080052 */
53int migrate_prep(void)
54{
Christoph Lameterb20a3502006-03-22 00:09:12 -080055 /*
56 * Clear the LRU lists so pages can be isolated.
57 * Note that pages may be moved off the LRU after we have
58 * drained them. Those pages will fail to migrate like other
59 * pages that may be busy.
60 */
61 lru_add_drain_all();
62
63 return 0;
64}
65
Mel Gorman748446b2010-05-24 14:32:27 -070066/* Do the necessary work of migrate_prep but not if it involves other CPUs */
67int migrate_prep_local(void)
68{
69 lru_add_drain();
70
71 return 0;
72}
73
Christoph Lameterb20a3502006-03-22 00:09:12 -080074/*
Lee Schermerhorn894bc312008-10-18 20:26:39 -070075 * Add isolated pages on the list back to the LRU under page lock
76 * to avoid leaking evictable pages back onto unevictable list.
Christoph Lameterb20a3502006-03-22 00:09:12 -080077 */
Minchan Kime13861d2010-05-24 14:31:59 -070078void putback_lru_pages(struct list_head *l)
Christoph Lameterb20a3502006-03-22 00:09:12 -080079{
80 struct page *page;
81 struct page *page2;
Christoph Lameterb20a3502006-03-22 00:09:12 -080082
83 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -070084 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -070085 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -070086 page_is_file_cache(page));
Rafael Aquini5733c7d2012-12-11 16:02:47 -080087 putback_lru_page(page);
88 }
89}
90
91/*
92 * Put previously isolated pages back onto the appropriate lists
93 * from where they were once taken off for compaction/migration.
94 *
95 * This function shall be used instead of putback_lru_pages(),
96 * whenever the isolated pageset has been built by isolate_migratepages_range()
97 */
98void putback_movable_pages(struct list_head *l)
99{
100 struct page *page;
101 struct page *page2;
102
103 list_for_each_entry_safe(page, page2, l, lru) {
Naoya Horiguchi31caf662013-09-11 14:21:59 -0700104 if (unlikely(PageHuge(page))) {
105 putback_active_hugepage(page);
106 continue;
107 }
Rafael Aquini5733c7d2012-12-11 16:02:47 -0800108 list_del(&page->lru);
109 dec_zone_page_state(page, NR_ISOLATED_ANON +
110 page_is_file_cache(page));
Rafael Aquini117aad12013-09-30 13:45:16 -0700111 if (unlikely(isolated_balloon_page(page)))
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800112 balloon_page_putback(page);
113 else
114 putback_lru_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800115 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800116}
117
Christoph Lameter06972122006-06-23 02:03:35 -0700118/*
119 * Restore a potential migration pte to a working pte entry
120 */
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800121static int remove_migration_pte(struct page *new, struct vm_area_struct *vma,
122 unsigned long addr, void *old)
Christoph Lameter06972122006-06-23 02:03:35 -0700123{
124 struct mm_struct *mm = vma->vm_mm;
125 swp_entry_t entry;
Christoph Lameter06972122006-06-23 02:03:35 -0700126 pmd_t *pmd;
127 pte_t *ptep, pte;
128 spinlock_t *ptl;
129
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900130 if (unlikely(PageHuge(new))) {
131 ptep = huge_pte_offset(mm, addr);
132 if (!ptep)
133 goto out;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800134 ptl = huge_pte_lockptr(hstate_vma(vma), mm, ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900135 } else {
Bob Liu62190492012-12-11 16:00:37 -0800136 pmd = mm_find_pmd(mm, addr);
137 if (!pmd)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900138 goto out;
Andrea Arcangeli500d65d2011-01-13 15:46:55 -0800139 if (pmd_trans_huge(*pmd))
140 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700141
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900142 ptep = pte_offset_map(pmd, addr);
Christoph Lameter06972122006-06-23 02:03:35 -0700143
Hugh Dickins486cf462011-10-19 12:50:35 -0700144 /*
145 * Peek to check is_swap_pte() before taking ptlock? No, we
146 * can race mremap's move_ptes(), which skips anon_vma lock.
147 */
Christoph Lameter06972122006-06-23 02:03:35 -0700148
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900149 ptl = pte_lockptr(mm, pmd);
150 }
151
Christoph Lameter06972122006-06-23 02:03:35 -0700152 spin_lock(ptl);
153 pte = *ptep;
154 if (!is_swap_pte(pte))
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800155 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700156
157 entry = pte_to_swp_entry(pte);
158
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800159 if (!is_migration_entry(entry) ||
160 migration_entry_to_page(entry) != old)
161 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700162
Christoph Lameter06972122006-06-23 02:03:35 -0700163 get_page(new);
164 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -0700165 if (pte_swp_soft_dirty(*ptep))
166 pte = pte_mksoft_dirty(pte);
Christoph Lameter06972122006-06-23 02:03:35 -0700167 if (is_write_migration_entry(entry))
168 pte = pte_mkwrite(pte);
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200169#ifdef CONFIG_HUGETLB_PAGE
Tony Lube7517d2013-02-04 14:28:46 -0800170 if (PageHuge(new)) {
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900171 pte = pte_mkhuge(pte);
Tony Lube7517d2013-02-04 14:28:46 -0800172 pte = arch_make_huge_pte(pte, vma, new, 0);
173 }
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200174#endif
Leonid Yegoshinc2cc4992013-05-24 15:55:18 -0700175 flush_dcache_page(new);
Christoph Lameter06972122006-06-23 02:03:35 -0700176 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700177
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900178 if (PageHuge(new)) {
179 if (PageAnon(new))
180 hugepage_add_anon_rmap(new, vma, addr);
181 else
182 page_dup_rmap(new);
183 } else if (PageAnon(new))
Christoph Lameter04e62a22006-06-23 02:03:38 -0700184 page_add_anon_rmap(new, vma, addr);
185 else
186 page_add_file_rmap(new);
187
188 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +0000189 update_mmu_cache(vma, addr, ptep);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800190unlock:
Christoph Lameter06972122006-06-23 02:03:35 -0700191 pte_unmap_unlock(ptep, ptl);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800192out:
193 return SWAP_AGAIN;
Christoph Lameter06972122006-06-23 02:03:35 -0700194}
195
196/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700197 * Get rid of all migration entries and replace them by
198 * references to the indicated page.
199 */
200static void remove_migration_ptes(struct page *old, struct page *new)
201{
Joonsoo Kim051ac832014-01-21 15:49:48 -0800202 struct rmap_walk_control rwc = {
203 .rmap_one = remove_migration_pte,
204 .arg = old,
205 };
206
207 rmap_walk(new, &rwc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700208}
209
210/*
Christoph Lameter06972122006-06-23 02:03:35 -0700211 * Something used the pte of a page under migration. We need to
212 * get to the page and wait until migration is finished.
213 * When we return from this function the fault will be retried.
Christoph Lameter06972122006-06-23 02:03:35 -0700214 */
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700215static void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
216 spinlock_t *ptl)
Christoph Lameter06972122006-06-23 02:03:35 -0700217{
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700218 pte_t pte;
Christoph Lameter06972122006-06-23 02:03:35 -0700219 swp_entry_t entry;
220 struct page *page;
221
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700222 spin_lock(ptl);
Christoph Lameter06972122006-06-23 02:03:35 -0700223 pte = *ptep;
224 if (!is_swap_pte(pte))
225 goto out;
226
227 entry = pte_to_swp_entry(pte);
228 if (!is_migration_entry(entry))
229 goto out;
230
231 page = migration_entry_to_page(entry);
232
Nick Piggine2867812008-07-25 19:45:30 -0700233 /*
234 * Once radix-tree replacement of page migration started, page_count
235 * *must* be zero. And, we don't want to call wait_on_page_locked()
236 * against a page without get_page().
237 * So, we use get_page_unless_zero(), here. Even failed, page fault
238 * will occur again.
239 */
240 if (!get_page_unless_zero(page))
241 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700242 pte_unmap_unlock(ptep, ptl);
243 wait_on_page_locked(page);
244 put_page(page);
245 return;
246out:
247 pte_unmap_unlock(ptep, ptl);
248}
249
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700250void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
251 unsigned long address)
252{
253 spinlock_t *ptl = pte_lockptr(mm, pmd);
254 pte_t *ptep = pte_offset_map(pmd, address);
255 __migration_entry_wait(mm, ptep, ptl);
256}
257
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800258void migration_entry_wait_huge(struct vm_area_struct *vma,
259 struct mm_struct *mm, pte_t *pte)
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700260{
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800261 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), mm, pte);
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700262 __migration_entry_wait(mm, pte, ptl);
263}
264
Mel Gormanb969c4a2012-01-12 17:19:34 -0800265#ifdef CONFIG_BLOCK
266/* Returns true if all buffers are successfully locked */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800267static bool buffer_migrate_lock_buffers(struct buffer_head *head,
268 enum migrate_mode mode)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800269{
270 struct buffer_head *bh = head;
271
272 /* Simple case, sync compaction */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800273 if (mode != MIGRATE_ASYNC) {
Mel Gormanb969c4a2012-01-12 17:19:34 -0800274 do {
275 get_bh(bh);
276 lock_buffer(bh);
277 bh = bh->b_this_page;
278
279 } while (bh != head);
280
281 return true;
282 }
283
284 /* async case, we cannot block on lock_buffer so use trylock_buffer */
285 do {
286 get_bh(bh);
287 if (!trylock_buffer(bh)) {
288 /*
289 * We failed to lock the buffer and cannot stall in
290 * async migration. Release the taken locks
291 */
292 struct buffer_head *failed_bh = bh;
293 put_bh(failed_bh);
294 bh = head;
295 while (bh != failed_bh) {
296 unlock_buffer(bh);
297 put_bh(bh);
298 bh = bh->b_this_page;
299 }
300 return false;
301 }
302
303 bh = bh->b_this_page;
304 } while (bh != head);
305 return true;
306}
307#else
308static inline bool buffer_migrate_lock_buffers(struct buffer_head *head,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800309 enum migrate_mode mode)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800310{
311 return true;
312}
313#endif /* CONFIG_BLOCK */
314
Christoph Lameterb20a3502006-03-22 00:09:12 -0800315/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700316 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700317 *
318 * The number of remaining references must be:
319 * 1 for anonymous pages without a mapping
320 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100321 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800322 */
Gu Zheng36bc08c2013-07-16 17:56:16 +0800323int migrate_page_move_mapping(struct address_space *mapping,
Mel Gormanb969c4a2012-01-12 17:19:34 -0800324 struct page *newpage, struct page *page,
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500325 struct buffer_head *head, enum migrate_mode mode,
326 int extra_count)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800327{
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500328 int expected_count = 1 + extra_count;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800329 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800330
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700331 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700332 /* Anonymous page without mapping */
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500333 if (page_count(page) != expected_count)
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700334 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800335 return MIGRATEPAGE_SUCCESS;
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700336 }
337
Nick Piggin19fd6232008-07-25 19:45:32 -0700338 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800339
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800340 pslot = radix_tree_lookup_slot(&mapping->page_tree,
341 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800342
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500343 expected_count += 1 + page_has_private(page);
Nick Piggine2867812008-07-25 19:45:30 -0700344 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800345 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700346 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700347 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800348 }
349
Nick Piggine2867812008-07-25 19:45:30 -0700350 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700351 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700352 return -EAGAIN;
353 }
354
Christoph Lameterb20a3502006-03-22 00:09:12 -0800355 /*
Mel Gormanb969c4a2012-01-12 17:19:34 -0800356 * In the async migration case of moving a page with buffers, lock the
357 * buffers using trylock before the mapping is moved. If the mapping
358 * was moved, we later failed to lock the buffers and could not move
359 * the mapping back due to an elevated page count, we would have to
360 * block waiting on other references to be dropped.
361 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800362 if (mode == MIGRATE_ASYNC && head &&
363 !buffer_migrate_lock_buffers(head, mode)) {
Mel Gormanb969c4a2012-01-12 17:19:34 -0800364 page_unfreeze_refs(page, expected_count);
365 spin_unlock_irq(&mapping->tree_lock);
366 return -EAGAIN;
367 }
368
369 /*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800370 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800371 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800372 get_page(newpage); /* add cache reference */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800373 if (PageSwapCache(page)) {
374 SetPageSwapCache(newpage);
375 set_page_private(newpage, page_private(page));
376 }
377
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800378 radix_tree_replace_slot(pslot, newpage);
379
380 /*
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800381 * Drop cache reference from old page by unfreezing
382 * to one less reference.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800383 * We know this isn't the last reference.
384 */
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800385 page_unfreeze_refs(page, expected_count - 1);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800386
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700387 /*
388 * If moved to a different zone then also account
389 * the page for that zone. Other VM counters will be
390 * taken care of when we establish references to the
391 * new page and drop references to the old page.
392 *
393 * Note that anonymous pages are accounted for
394 * via NR_FILE_PAGES and NR_ANON_PAGES if they
395 * are mapped to swap space.
396 */
397 __dec_zone_page_state(page, NR_FILE_PAGES);
398 __inc_zone_page_state(newpage, NR_FILE_PAGES);
Andrea Arcangeli99a15e22011-06-16 12:56:19 -0700399 if (!PageSwapCache(page) && PageSwapBacked(page)) {
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700400 __dec_zone_page_state(page, NR_SHMEM);
401 __inc_zone_page_state(newpage, NR_SHMEM);
402 }
Nick Piggin19fd6232008-07-25 19:45:32 -0700403 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800404
Rafael Aquini78bd5202012-12-11 16:02:31 -0800405 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800406}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800407
408/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900409 * The expected number of remaining references is the same as that
410 * of migrate_page_move_mapping().
411 */
412int migrate_huge_page_move_mapping(struct address_space *mapping,
413 struct page *newpage, struct page *page)
414{
415 int expected_count;
416 void **pslot;
417
418 if (!mapping) {
419 if (page_count(page) != 1)
420 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800421 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900422 }
423
424 spin_lock_irq(&mapping->tree_lock);
425
426 pslot = radix_tree_lookup_slot(&mapping->page_tree,
427 page_index(page));
428
429 expected_count = 2 + page_has_private(page);
430 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800431 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900432 spin_unlock_irq(&mapping->tree_lock);
433 return -EAGAIN;
434 }
435
436 if (!page_freeze_refs(page, expected_count)) {
437 spin_unlock_irq(&mapping->tree_lock);
438 return -EAGAIN;
439 }
440
441 get_page(newpage);
442
443 radix_tree_replace_slot(pslot, newpage);
444
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800445 page_unfreeze_refs(page, expected_count - 1);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900446
447 spin_unlock_irq(&mapping->tree_lock);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800448 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900449}
450
451/*
Dave Hansen30b0a102013-11-21 14:31:58 -0800452 * Gigantic pages are so large that we do not guarantee that page++ pointer
453 * arithmetic will work across the entire page. We need something more
454 * specialized.
455 */
456static void __copy_gigantic_page(struct page *dst, struct page *src,
457 int nr_pages)
458{
459 int i;
460 struct page *dst_base = dst;
461 struct page *src_base = src;
462
463 for (i = 0; i < nr_pages; ) {
464 cond_resched();
465 copy_highpage(dst, src);
466
467 i++;
468 dst = mem_map_next(dst, dst_base, i);
469 src = mem_map_next(src, src_base, i);
470 }
471}
472
473static void copy_huge_page(struct page *dst, struct page *src)
474{
475 int i;
476 int nr_pages;
477
478 if (PageHuge(src)) {
479 /* hugetlbfs page */
480 struct hstate *h = page_hstate(src);
481 nr_pages = pages_per_huge_page(h);
482
483 if (unlikely(nr_pages > MAX_ORDER_NR_PAGES)) {
484 __copy_gigantic_page(dst, src, nr_pages);
485 return;
486 }
487 } else {
488 /* thp page */
489 BUG_ON(!PageTransHuge(src));
490 nr_pages = hpage_nr_pages(src);
491 }
492
493 for (i = 0; i < nr_pages; i++) {
494 cond_resched();
495 copy_highpage(dst + i, src + i);
496 }
497}
498
499/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800500 * Copy the page to its new location
501 */
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900502void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800503{
Rik van Riel7851a452013-10-07 11:29:23 +0100504 int cpupid;
505
Mel Gormanb32967f2012-11-19 12:35:47 +0000506 if (PageHuge(page) || PageTransHuge(page))
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900507 copy_huge_page(newpage, page);
508 else
509 copy_highpage(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800510
511 if (PageError(page))
512 SetPageError(newpage);
513 if (PageReferenced(page))
514 SetPageReferenced(newpage);
515 if (PageUptodate(page))
516 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700517 if (TestClearPageActive(page)) {
518 VM_BUG_ON(PageUnevictable(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800519 SetPageActive(newpage);
Lee Schermerhorn418b27e2009-12-14 17:59:54 -0800520 } else if (TestClearPageUnevictable(page))
521 SetPageUnevictable(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800522 if (PageChecked(page))
523 SetPageChecked(newpage);
524 if (PageMappedToDisk(page))
525 SetPageMappedToDisk(newpage);
526
527 if (PageDirty(page)) {
528 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700529 /*
530 * Want to mark the page and the radix tree as dirty, and
531 * redo the accounting that clear_page_dirty_for_io undid,
532 * but we can't use set_page_dirty because that function
533 * is actually a signal that all of the page has become dirty.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300534 * Whereas only part of our page may be dirty.
Nick Piggin3a902c52008-04-30 00:55:16 -0700535 */
Hugh Dickins752dc182012-06-02 00:27:47 -0700536 if (PageSwapBacked(page))
537 SetPageDirty(newpage);
538 else
539 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800540 }
541
Rik van Riel7851a452013-10-07 11:29:23 +0100542 /*
543 * Copy NUMA information to the new page, to prevent over-eager
544 * future migrations of this same page.
545 */
546 cpupid = page_cpupid_xchg_last(page, -1);
547 page_cpupid_xchg_last(newpage, cpupid);
548
Nick Pigginb291f002008-10-18 20:26:44 -0700549 mlock_migrate_page(newpage, page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800550 ksm_migrate_page(newpage, page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800551 /*
552 * Please do not reorder this without considering how mm/ksm.c's
553 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
554 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800555 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800556 ClearPagePrivate(page);
557 set_page_private(page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800558
559 /*
560 * If any waiters have accumulated on the new page then
561 * wake them up.
562 */
563 if (PageWriteback(newpage))
564 end_page_writeback(newpage);
565}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800566
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700567/************************************************************
568 * Migration functions
569 ***********************************************************/
570
571/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700572int fail_migrate_page(struct address_space *mapping,
573 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700574{
575 return -EIO;
576}
577EXPORT_SYMBOL(fail_migrate_page);
578
Christoph Lameterb20a3502006-03-22 00:09:12 -0800579/*
580 * Common logic to directly migrate a single page suitable for
David Howells266cf652009-04-03 16:42:36 +0100581 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800582 *
583 * Pages are locked upon entry and exit.
584 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700585int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800586 struct page *newpage, struct page *page,
587 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800588{
589 int rc;
590
591 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
592
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500593 rc = migrate_page_move_mapping(mapping, newpage, page, NULL, mode, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800594
Rafael Aquini78bd5202012-12-11 16:02:31 -0800595 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800596 return rc;
597
598 migrate_page_copy(newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800599 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800600}
601EXPORT_SYMBOL(migrate_page);
602
David Howells93614012006-09-30 20:45:40 +0200603#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800604/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700605 * Migration function for pages with buffers. This function can only be used
606 * if the underlying filesystem guarantees that no other references to "page"
607 * exist.
608 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700609int buffer_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800610 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700611{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700612 struct buffer_head *bh, *head;
613 int rc;
614
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700615 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800616 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700617
618 head = page_buffers(page);
619
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500620 rc = migrate_page_move_mapping(mapping, newpage, page, head, mode, 0);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700621
Rafael Aquini78bd5202012-12-11 16:02:31 -0800622 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700623 return rc;
624
Mel Gormanb969c4a2012-01-12 17:19:34 -0800625 /*
626 * In the async case, migrate_page_move_mapping locked the buffers
627 * with an IRQ-safe spinlock held. In the sync case, the buffers
628 * need to be locked now
629 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800630 if (mode != MIGRATE_ASYNC)
631 BUG_ON(!buffer_migrate_lock_buffers(head, mode));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700632
633 ClearPagePrivate(page);
634 set_page_private(newpage, page_private(page));
635 set_page_private(page, 0);
636 put_page(page);
637 get_page(newpage);
638
639 bh = head;
640 do {
641 set_bh_page(bh, newpage, bh_offset(bh));
642 bh = bh->b_this_page;
643
644 } while (bh != head);
645
646 SetPagePrivate(newpage);
647
648 migrate_page_copy(newpage, page);
649
650 bh = head;
651 do {
652 unlock_buffer(bh);
653 put_bh(bh);
654 bh = bh->b_this_page;
655
656 } while (bh != head);
657
Rafael Aquini78bd5202012-12-11 16:02:31 -0800658 return MIGRATEPAGE_SUCCESS;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700659}
660EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200661#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700662
Christoph Lameter04e62a22006-06-23 02:03:38 -0700663/*
664 * Writeback a page to clean the dirty state
665 */
666static int writeout(struct address_space *mapping, struct page *page)
667{
668 struct writeback_control wbc = {
669 .sync_mode = WB_SYNC_NONE,
670 .nr_to_write = 1,
671 .range_start = 0,
672 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700673 .for_reclaim = 1
674 };
675 int rc;
676
677 if (!mapping->a_ops->writepage)
678 /* No write method for the address space */
679 return -EINVAL;
680
681 if (!clear_page_dirty_for_io(page))
682 /* Someone else already triggered a write */
683 return -EAGAIN;
684
685 /*
686 * A dirty page may imply that the underlying filesystem has
687 * the page on some queue. So the page must be clean for
688 * migration. Writeout may mean we loose the lock and the
689 * page state is no longer what we checked for earlier.
690 * At this point we know that the migration attempt cannot
691 * be successful.
692 */
693 remove_migration_ptes(page, page);
694
695 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700696
697 if (rc != AOP_WRITEPAGE_ACTIVATE)
698 /* unlocked. Relock */
699 lock_page(page);
700
Hugh Dickinsbda85502008-11-19 15:36:36 -0800701 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700702}
703
704/*
705 * Default handling if a filesystem does not provide a migration function.
706 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700707static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800708 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700709{
Mel Gormanb969c4a2012-01-12 17:19:34 -0800710 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800711 /* Only writeback pages in full synchronous migration */
712 if (mode != MIGRATE_SYNC)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800713 return -EBUSY;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700714 return writeout(mapping, page);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800715 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700716
717 /*
718 * Buffers may be managed in a filesystem specific way.
719 * We must have no buffers or drop them.
720 */
David Howells266cf652009-04-03 16:42:36 +0100721 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700722 !try_to_release_page(page, GFP_KERNEL))
723 return -EAGAIN;
724
Mel Gormana6bc32b2012-01-12 17:19:43 -0800725 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700726}
727
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700728/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700729 * Move a page to a newly allocated page
730 * The page is locked and all ptes have been successfully removed.
731 *
732 * The new page will have replaced the old page if this function
733 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700734 *
735 * Return value:
736 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800737 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700738 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700739static int move_to_new_page(struct page *newpage, struct page *page,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800740 int remap_swapcache, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700741{
742 struct address_space *mapping;
743 int rc;
744
745 /*
746 * Block others from accessing the page when we get around to
747 * establishing additional references. We are the only one
748 * holding a reference to the new page at this point.
749 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200750 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700751 BUG();
752
753 /* Prepare mapping for the new page.*/
754 newpage->index = page->index;
755 newpage->mapping = page->mapping;
Rik van Rielb2e18532008-10-18 20:26:30 -0700756 if (PageSwapBacked(page))
757 SetPageSwapBacked(newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700758
759 mapping = page_mapping(page);
760 if (!mapping)
Mel Gormana6bc32b2012-01-12 17:19:43 -0800761 rc = migrate_page(mapping, newpage, page, mode);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800762 else if (mapping->a_ops->migratepage)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700763 /*
Mel Gormanb969c4a2012-01-12 17:19:34 -0800764 * Most pages have a mapping and most filesystems provide a
765 * migratepage callback. Anonymous pages are part of swap
766 * space which also has its own migratepage callback. This
767 * is the most common path for page migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700768 */
Mel Gormanb969c4a2012-01-12 17:19:34 -0800769 rc = mapping->a_ops->migratepage(mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800770 newpage, page, mode);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800771 else
Mel Gormana6bc32b2012-01-12 17:19:43 -0800772 rc = fallback_migrate_page(mapping, newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700773
Rafael Aquini78bd5202012-12-11 16:02:31 -0800774 if (rc != MIGRATEPAGE_SUCCESS) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700775 newpage->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700776 } else {
777 if (remap_swapcache)
778 remove_migration_ptes(page, newpage);
Konstantin Khlebnikov35512ec2012-02-03 15:37:13 -0800779 page->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700780 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700781
782 unlock_page(newpage);
783
784 return rc;
785}
786
Minchan Kim0dabec92011-10-31 17:06:57 -0700787static int __unmap_and_move(struct page *page, struct page *newpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800788 int force, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700789{
Minchan Kim0dabec92011-10-31 17:06:57 -0700790 int rc = -EAGAIN;
Mel Gorman3fe20112010-05-24 14:32:20 -0700791 int remap_swapcache = 1;
KAMEZAWA Hiroyuki56039ef2011-03-23 16:42:19 -0700792 struct mem_cgroup *mem;
Mel Gorman3f6c8272010-05-24 14:32:17 -0700793 struct anon_vma *anon_vma = NULL;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700794
Nick Piggin529ae9a2008-08-02 12:01:03 +0200795 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800796 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700797 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800798
799 /*
800 * It's not safe for direct compaction to call lock_page.
801 * For example, during page readahead pages are added locked
802 * to the LRU. Later, when the IO completes the pages are
803 * marked uptodate and unlocked. However, the queueing
804 * could be merging multiple pages for one bio (e.g.
805 * mpage_readpages). If an allocation happens for the
806 * second or third page, the process can end up locking
807 * the same page twice and deadlocking. Rather than
808 * trying to be clever about what pages can be locked,
809 * avoid the use of lock_page for direct compaction
810 * altogether.
811 */
812 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700813 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800814
Christoph Lametere24f0b82006-06-23 02:03:51 -0700815 lock_page(page);
816 }
817
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800818 /* charge against new page */
Johannes Weiner0030f532012-07-31 16:45:25 -0700819 mem_cgroup_prepare_migration(page, newpage, &mem);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800820
Christoph Lametere24f0b82006-06-23 02:03:51 -0700821 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700822 /*
Jianguo Wufed5b642013-04-29 15:07:58 -0700823 * Only in the case of a full synchronous migration is it
Mel Gormana6bc32b2012-01-12 17:19:43 -0800824 * necessary to wait for PageWriteback. In the async case,
825 * the retry loop is too short and in the sync-light case,
826 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700827 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800828 if (mode != MIGRATE_SYNC) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700829 rc = -EBUSY;
830 goto uncharge;
831 }
832 if (!force)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800833 goto uncharge;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700834 wait_on_page_writeback(page);
835 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700836 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700837 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
838 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800839 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700840 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700841 * File Caches may use write_page() or lock_page() in migration, then,
842 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700843 */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -0800844 if (PageAnon(page) && !PageKsm(page)) {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800845 /*
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000846 * Only page_lock_anon_vma_read() understands the subtleties of
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800847 * getting a hold on an anon_vma from outside one of its mms.
848 */
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700849 anon_vma = page_get_anon_vma(page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800850 if (anon_vma) {
851 /*
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700852 * Anon page
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800853 */
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800854 } else if (PageSwapCache(page)) {
Mel Gorman3fe20112010-05-24 14:32:20 -0700855 /*
856 * We cannot be sure that the anon_vma of an unmapped
857 * swapcache page is safe to use because we don't
858 * know in advance if the VMA that this page belonged
859 * to still exists. If the VMA and others sharing the
860 * data have been freed, then the anon_vma could
861 * already be invalid.
862 *
863 * To avoid this possibility, swapcache pages get
864 * migrated but are not remapped when migration
865 * completes
866 */
867 remap_swapcache = 0;
868 } else {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800869 goto uncharge;
Mel Gorman3fe20112010-05-24 14:32:20 -0700870 }
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700871 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800872
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800873 if (unlikely(balloon_page_movable(page))) {
874 /*
875 * A ballooned page does not need any special attention from
876 * physical to virtual reverse mapping procedures.
877 * Skip any attempt to unmap PTEs or to remap swap cache,
878 * in order to avoid burning cycles at rmap level, and perform
879 * the page migration right away (proteced by page lock).
880 */
881 rc = balloon_page_migrate(newpage, page, mode);
882 goto uncharge;
883 }
884
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700885 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800886 * Corner case handling:
887 * 1. When a new swap-cache page is read into, it is added to the LRU
888 * and treated as swapcache but it has no rmap yet.
889 * Calling try_to_unmap() against a page->mapping==NULL page will
890 * trigger a BUG. So handle it here.
891 * 2. An orphaned page (see truncate_complete_page) might have
892 * fs-private metadata. The page can be picked up due to memory
893 * offlining. Everywhere else except page reclaim, the page is
894 * invisible to the vm, so the page can not be migrated. So try to
895 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700896 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800897 if (!page->mapping) {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800898 VM_BUG_ON(PageAnon(page));
899 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -0800900 try_to_free_buffers(page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800901 goto uncharge;
Shaohua Li62e1c552008-02-04 22:29:33 -0800902 }
Shaohua Liabfc3482009-09-21 17:01:19 -0700903 goto skip_unmap;
Shaohua Li62e1c552008-02-04 22:29:33 -0800904 }
905
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700906 /* Establish migration ptes or remove ptes */
Andi Kleen14fa31b2009-09-16 11:50:10 +0200907 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700908
Shaohua Liabfc3482009-09-21 17:01:19 -0700909skip_unmap:
Christoph Lametere6a15302006-06-25 05:46:49 -0700910 if (!page_mapped(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800911 rc = move_to_new_page(newpage, page, remap_swapcache, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700912
Mel Gorman3fe20112010-05-24 14:32:20 -0700913 if (rc && remap_swapcache)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700914 remove_migration_ptes(page, page);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700915
916 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -0700917 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -0700918 put_anon_vma(anon_vma);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700919
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800920uncharge:
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800921 mem_cgroup_end_migration(mem, page, newpage,
922 (rc == MIGRATEPAGE_SUCCESS ||
923 rc == MIGRATEPAGE_BALLOON_SUCCESS));
Christoph Lametere24f0b82006-06-23 02:03:51 -0700924 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -0700925out:
926 return rc;
927}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700928
Minchan Kim0dabec92011-10-31 17:06:57 -0700929/*
930 * Obtain the lock on page, remove all ptes and migrate the page
931 * to the newly allocated page in newpage.
932 */
933static int unmap_and_move(new_page_t get_new_page, unsigned long private,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800934 struct page *page, int force, enum migrate_mode mode)
Minchan Kim0dabec92011-10-31 17:06:57 -0700935{
936 int rc = 0;
937 int *result = NULL;
938 struct page *newpage = get_new_page(page, private, &result);
939
940 if (!newpage)
941 return -ENOMEM;
942
943 if (page_count(page) == 1) {
944 /* page was freed from under us. So we are done. */
945 goto out;
946 }
947
948 if (unlikely(PageTransHuge(page)))
949 if (unlikely(split_huge_page(page)))
950 goto out;
951
Hugh Dickins9c620e22013-02-22 16:35:14 -0800952 rc = __unmap_and_move(page, newpage, force, mode);
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800953
954 if (unlikely(rc == MIGRATEPAGE_BALLOON_SUCCESS)) {
955 /*
956 * A ballooned page has been migrated already.
957 * Now, it's the time to wrap-up counters,
958 * handle the page back to Buddy and return.
959 */
960 dec_zone_page_state(page, NR_ISOLATED_ANON +
961 page_is_file_cache(page));
962 balloon_page_free(page);
963 return MIGRATEPAGE_SUCCESS;
964 }
Minchan Kim0dabec92011-10-31 17:06:57 -0700965out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700966 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -0700967 /*
968 * A page that has been migrated has all references
969 * removed and will be freed. A page that has not been
970 * migrated will have kepts its references and be
971 * restored.
972 */
973 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700974 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700975 page_is_file_cache(page));
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700976 putback_lru_page(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700977 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700978 /*
979 * Move the new page to the LRU. If migration was not successful
980 * then this will free the page.
981 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700982 putback_lru_page(newpage);
Christoph Lameter742755a2006-06-23 02:03:55 -0700983 if (result) {
984 if (rc)
985 *result = rc;
986 else
987 *result = page_to_nid(newpage);
988 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700989 return rc;
990}
991
992/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900993 * Counterpart of unmap_and_move_page() for hugepage migration.
994 *
995 * This function doesn't wait the completion of hugepage I/O
996 * because there is no race between I/O and migration for hugepage.
997 * Note that currently hugepage I/O occurs only in direct I/O
998 * where no lock is held and PG_writeback is irrelevant,
999 * and writeback status of all subpages are counted in the reference
1000 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1001 * under direct I/O, the reference of the head page is 512 and a bit more.)
1002 * This means that when we try to migrate hugepage whose subpages are
1003 * doing direct I/O, some references remain after try_to_unmap() and
1004 * hugepage migration fails without data corruption.
1005 *
1006 * There is also no race when direct I/O is issued on the page under migration,
1007 * because then pte is replaced with migration swap entry and direct I/O code
1008 * will wait in the page fault for migration to complete.
1009 */
1010static int unmap_and_move_huge_page(new_page_t get_new_page,
1011 unsigned long private, struct page *hpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001012 int force, enum migrate_mode mode)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001013{
1014 int rc = 0;
1015 int *result = NULL;
1016 struct page *new_hpage = get_new_page(hpage, private, &result);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001017 struct anon_vma *anon_vma = NULL;
1018
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001019 /*
1020 * Movability of hugepages depends on architectures and hugepage size.
1021 * This check is necessary because some callers of hugepage migration
1022 * like soft offline and memory hotremove don't walk through page
1023 * tables or check whether the hugepage is pmd-based or not before
1024 * kicking migration.
1025 */
1026 if (!hugepage_migration_support(page_hstate(hpage)))
1027 return -ENOSYS;
1028
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001029 if (!new_hpage)
1030 return -ENOMEM;
1031
1032 rc = -EAGAIN;
1033
1034 if (!trylock_page(hpage)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -08001035 if (!force || mode != MIGRATE_SYNC)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001036 goto out;
1037 lock_page(hpage);
1038 }
1039
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001040 if (PageAnon(hpage))
1041 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001042
1043 try_to_unmap(hpage, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
1044
1045 if (!page_mapped(hpage))
Mel Gormana6bc32b2012-01-12 17:19:43 -08001046 rc = move_to_new_page(new_hpage, hpage, 1, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001047
1048 if (rc)
1049 remove_migration_ptes(hpage, hpage);
1050
Hugh Dickinsfd4a4662011-01-13 15:47:31 -08001051 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001052 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001053
1054 if (!rc)
1055 hugetlb_cgroup_migrate(hpage, new_hpage);
1056
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001057 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -08001058out:
Naoya Horiguchib8ec1ce2013-09-11 14:22:01 -07001059 if (rc != -EAGAIN)
1060 putback_active_hugepage(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001061 put_page(new_hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001062 if (result) {
1063 if (rc)
1064 *result = rc;
1065 else
1066 *result = page_to_nid(new_hpage);
1067 }
1068 return rc;
1069}
1070
1071/*
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001072 * migrate_pages - migrate the pages specified in a list, to the free pages
1073 * supplied as the target for the page migration
Christoph Lameterb20a3502006-03-22 00:09:12 -08001074 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001075 * @from: The list of pages to be migrated.
1076 * @get_new_page: The function used to allocate free pages to be used
1077 * as the target of the page migration.
1078 * @private: Private data to be passed on to get_new_page()
1079 * @mode: The migration mode that specifies the constraints for
1080 * page migration, if any.
1081 * @reason: The reason for page migration.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001082 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001083 * The function returns after 10 attempts or if no pages are movable any more
1084 * because the list has become empty or no retryable pages exist any more.
1085 * The caller should call putback_lru_pages() to return pages to the LRU
Minchan Kim28bd6572011-01-25 15:07:26 -08001086 * or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001087 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001088 * Returns the number of pages that were not migrated, or an error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001089 */
Hugh Dickins9c620e22013-02-22 16:35:14 -08001090int migrate_pages(struct list_head *from, new_page_t get_new_page,
1091 unsigned long private, enum migrate_mode mode, int reason)
Christoph Lameterb20a3502006-03-22 00:09:12 -08001092{
Christoph Lametere24f0b82006-06-23 02:03:51 -07001093 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001094 int nr_failed = 0;
Mel Gorman5647bc22012-10-19 10:46:20 +01001095 int nr_succeeded = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001096 int pass = 0;
1097 struct page *page;
1098 struct page *page2;
1099 int swapwrite = current->flags & PF_SWAPWRITE;
1100 int rc;
1101
1102 if (!swapwrite)
1103 current->flags |= PF_SWAPWRITE;
1104
Christoph Lametere24f0b82006-06-23 02:03:51 -07001105 for(pass = 0; pass < 10 && retry; pass++) {
1106 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001107
Christoph Lametere24f0b82006-06-23 02:03:51 -07001108 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -07001109 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -08001110
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001111 if (PageHuge(page))
1112 rc = unmap_and_move_huge_page(get_new_page,
1113 private, page, pass > 2, mode);
1114 else
1115 rc = unmap_and_move(get_new_page, private,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001116 page, pass > 2, mode);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001117
Christoph Lametere24f0b82006-06-23 02:03:51 -07001118 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -07001119 case -ENOMEM:
1120 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001121 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001122 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001123 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001124 case MIGRATEPAGE_SUCCESS:
Mel Gorman5647bc22012-10-19 10:46:20 +01001125 nr_succeeded++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001126 break;
1127 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001128 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001129 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001130 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001131 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001132 }
1133 }
Rafael Aquini78bd5202012-12-11 16:02:31 -08001134 rc = nr_failed + retry;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001135out:
Mel Gorman5647bc22012-10-19 10:46:20 +01001136 if (nr_succeeded)
1137 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1138 if (nr_failed)
1139 count_vm_events(PGMIGRATE_FAIL, nr_failed);
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001140 trace_mm_migrate_pages(nr_succeeded, nr_failed, mode, reason);
1141
Christoph Lameterb20a3502006-03-22 00:09:12 -08001142 if (!swapwrite)
1143 current->flags &= ~PF_SWAPWRITE;
1144
Rafael Aquini78bd5202012-12-11 16:02:31 -08001145 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001146}
1147
Christoph Lameter742755a2006-06-23 02:03:55 -07001148#ifdef CONFIG_NUMA
1149/*
1150 * Move a list of individual pages
1151 */
1152struct page_to_node {
1153 unsigned long addr;
1154 struct page *page;
1155 int node;
1156 int status;
1157};
1158
1159static struct page *new_page_node(struct page *p, unsigned long private,
1160 int **result)
1161{
1162 struct page_to_node *pm = (struct page_to_node *)private;
1163
1164 while (pm->node != MAX_NUMNODES && pm->page != p)
1165 pm++;
1166
1167 if (pm->node == MAX_NUMNODES)
1168 return NULL;
1169
1170 *result = &pm->status;
1171
Naoya Horiguchie632a932013-09-11 14:22:04 -07001172 if (PageHuge(p))
1173 return alloc_huge_page_node(page_hstate(compound_head(p)),
1174 pm->node);
1175 else
1176 return alloc_pages_exact_node(pm->node,
Mel Gorman769848c2007-07-17 04:03:05 -07001177 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -07001178}
1179
1180/*
1181 * Move a set of pages as indicated in the pm array. The addr
1182 * field must be set to the virtual address of the page to be moved
1183 * and the node number must contain a valid target node.
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001184 * The pm array ends with node = MAX_NUMNODES.
Christoph Lameter742755a2006-06-23 02:03:55 -07001185 */
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001186static int do_move_page_to_node_array(struct mm_struct *mm,
1187 struct page_to_node *pm,
1188 int migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001189{
1190 int err;
1191 struct page_to_node *pp;
1192 LIST_HEAD(pagelist);
1193
1194 down_read(&mm->mmap_sem);
1195
1196 /*
1197 * Build a list of pages to migrate
1198 */
Christoph Lameter742755a2006-06-23 02:03:55 -07001199 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
1200 struct vm_area_struct *vma;
1201 struct page *page;
1202
Christoph Lameter742755a2006-06-23 02:03:55 -07001203 err = -EFAULT;
1204 vma = find_vma(mm, pp->addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001205 if (!vma || pp->addr < vma->vm_start || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -07001206 goto set_status;
1207
Andrea Arcangeli500d65d2011-01-13 15:46:55 -08001208 page = follow_page(vma, pp->addr, FOLL_GET|FOLL_SPLIT);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001209
1210 err = PTR_ERR(page);
1211 if (IS_ERR(page))
1212 goto set_status;
1213
Christoph Lameter742755a2006-06-23 02:03:55 -07001214 err = -ENOENT;
1215 if (!page)
1216 goto set_status;
1217
Hugh Dickins62b61f62009-12-14 17:59:33 -08001218 /* Use PageReserved to check for zero page */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -08001219 if (PageReserved(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001220 goto put_and_set;
1221
1222 pp->page = page;
1223 err = page_to_nid(page);
1224
1225 if (err == pp->node)
1226 /*
1227 * Node already in the right place
1228 */
1229 goto put_and_set;
1230
1231 err = -EACCES;
1232 if (page_mapcount(page) > 1 &&
1233 !migrate_all)
1234 goto put_and_set;
1235
Naoya Horiguchie632a932013-09-11 14:22:04 -07001236 if (PageHuge(page)) {
1237 isolate_huge_page(page, &pagelist);
1238 goto put_and_set;
1239 }
1240
Nick Piggin62695a82008-10-18 20:26:09 -07001241 err = isolate_lru_page(page);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001242 if (!err) {
Nick Piggin62695a82008-10-18 20:26:09 -07001243 list_add_tail(&page->lru, &pagelist);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001244 inc_zone_page_state(page, NR_ISOLATED_ANON +
1245 page_is_file_cache(page));
1246 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001247put_and_set:
1248 /*
1249 * Either remove the duplicate refcount from
1250 * isolate_lru_page() or drop the page ref if it was
1251 * not isolated.
1252 */
1253 put_page(page);
1254set_status:
1255 pp->status = err;
1256 }
1257
Brice Gogline78bbfa2008-10-18 20:27:15 -07001258 err = 0;
Minchan Kimcf608ac2010-10-26 14:21:29 -07001259 if (!list_empty(&pagelist)) {
Christoph Lameter742755a2006-06-23 02:03:55 -07001260 err = migrate_pages(&pagelist, new_page_node,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001261 (unsigned long)pm, MIGRATE_SYNC, MR_SYSCALL);
Minchan Kimcf608ac2010-10-26 14:21:29 -07001262 if (err)
Naoya Horiguchie632a932013-09-11 14:22:04 -07001263 putback_movable_pages(&pagelist);
Minchan Kimcf608ac2010-10-26 14:21:29 -07001264 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001265
1266 up_read(&mm->mmap_sem);
1267 return err;
1268}
1269
1270/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001271 * Migrate an array of page address onto an array of nodes and fill
1272 * the corresponding array of status.
1273 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001274static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001275 unsigned long nr_pages,
1276 const void __user * __user *pages,
1277 const int __user *nodes,
1278 int __user *status, int flags)
1279{
Brice Goglin3140a222009-01-06 14:38:57 -08001280 struct page_to_node *pm;
Brice Goglin3140a222009-01-06 14:38:57 -08001281 unsigned long chunk_nr_pages;
1282 unsigned long chunk_start;
1283 int err;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001284
Brice Goglin3140a222009-01-06 14:38:57 -08001285 err = -ENOMEM;
1286 pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
1287 if (!pm)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001288 goto out;
Brice Goglin35282a22009-06-16 15:32:43 -07001289
1290 migrate_prep();
1291
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001292 /*
Brice Goglin3140a222009-01-06 14:38:57 -08001293 * Store a chunk of page_to_node array in a page,
1294 * but keep the last one as a marker
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001295 */
Brice Goglin3140a222009-01-06 14:38:57 -08001296 chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001297
Brice Goglin3140a222009-01-06 14:38:57 -08001298 for (chunk_start = 0;
1299 chunk_start < nr_pages;
1300 chunk_start += chunk_nr_pages) {
1301 int j;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001302
Brice Goglin3140a222009-01-06 14:38:57 -08001303 if (chunk_start + chunk_nr_pages > nr_pages)
1304 chunk_nr_pages = nr_pages - chunk_start;
1305
1306 /* fill the chunk pm with addrs and nodes from user-space */
1307 for (j = 0; j < chunk_nr_pages; j++) {
1308 const void __user *p;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001309 int node;
1310
Brice Goglin3140a222009-01-06 14:38:57 -08001311 err = -EFAULT;
1312 if (get_user(p, pages + j + chunk_start))
1313 goto out_pm;
1314 pm[j].addr = (unsigned long) p;
1315
1316 if (get_user(node, nodes + j + chunk_start))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001317 goto out_pm;
1318
1319 err = -ENODEV;
Linus Torvalds6f5a55f2010-02-05 16:16:50 -08001320 if (node < 0 || node >= MAX_NUMNODES)
1321 goto out_pm;
1322
Lai Jiangshan389162c2012-12-12 13:51:30 -08001323 if (!node_state(node, N_MEMORY))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001324 goto out_pm;
1325
1326 err = -EACCES;
1327 if (!node_isset(node, task_nodes))
1328 goto out_pm;
1329
Brice Goglin3140a222009-01-06 14:38:57 -08001330 pm[j].node = node;
1331 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001332
Brice Goglin3140a222009-01-06 14:38:57 -08001333 /* End marker for this chunk */
1334 pm[chunk_nr_pages].node = MAX_NUMNODES;
1335
1336 /* Migrate this chunk */
1337 err = do_move_page_to_node_array(mm, pm,
1338 flags & MPOL_MF_MOVE_ALL);
1339 if (err < 0)
1340 goto out_pm;
1341
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001342 /* Return status information */
Brice Goglin3140a222009-01-06 14:38:57 -08001343 for (j = 0; j < chunk_nr_pages; j++)
1344 if (put_user(pm[j].status, status + j + chunk_start)) {
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001345 err = -EFAULT;
Brice Goglin3140a222009-01-06 14:38:57 -08001346 goto out_pm;
1347 }
1348 }
1349 err = 0;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001350
1351out_pm:
Brice Goglin3140a222009-01-06 14:38:57 -08001352 free_page((unsigned long)pm);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001353out:
1354 return err;
1355}
1356
1357/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001358 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001359 */
Brice Goglin80bba122008-12-09 13:14:23 -08001360static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1361 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001362{
Brice Goglin2f007e72008-10-18 20:27:16 -07001363 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001364
Christoph Lameter742755a2006-06-23 02:03:55 -07001365 down_read(&mm->mmap_sem);
1366
Brice Goglin2f007e72008-10-18 20:27:16 -07001367 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001368 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001369 struct vm_area_struct *vma;
1370 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001371 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001372
1373 vma = find_vma(mm, addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001374 if (!vma || addr < vma->vm_start)
Christoph Lameter742755a2006-06-23 02:03:55 -07001375 goto set_status;
1376
Brice Goglin2f007e72008-10-18 20:27:16 -07001377 page = follow_page(vma, addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001378
1379 err = PTR_ERR(page);
1380 if (IS_ERR(page))
1381 goto set_status;
1382
Christoph Lameter742755a2006-06-23 02:03:55 -07001383 err = -ENOENT;
1384 /* Use PageReserved to check for zero page */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -08001385 if (!page || PageReserved(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001386 goto set_status;
1387
1388 err = page_to_nid(page);
1389set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001390 *status = err;
1391
1392 pages++;
1393 status++;
1394 }
1395
1396 up_read(&mm->mmap_sem);
1397}
1398
1399/*
1400 * Determine the nodes of a user array of pages and store it in
1401 * a user array of status.
1402 */
1403static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1404 const void __user * __user *pages,
1405 int __user *status)
1406{
1407#define DO_PAGES_STAT_CHUNK_NR 16
1408 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1409 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001410
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001411 while (nr_pages) {
1412 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001413
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001414 chunk_nr = nr_pages;
1415 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1416 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1417
1418 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1419 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001420
1421 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1422
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001423 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1424 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001425
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001426 pages += chunk_nr;
1427 status += chunk_nr;
1428 nr_pages -= chunk_nr;
1429 }
1430 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001431}
1432
1433/*
1434 * Move a list of pages in the address space of the currently executing
1435 * process.
1436 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001437SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1438 const void __user * __user *, pages,
1439 const int __user *, nodes,
1440 int __user *, status, int, flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001441{
David Howellsc69e8d92008-11-14 10:39:19 +11001442 const struct cred *cred = current_cred(), *tcred;
Christoph Lameter742755a2006-06-23 02:03:55 -07001443 struct task_struct *task;
Christoph Lameter742755a2006-06-23 02:03:55 -07001444 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001445 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07001446 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07001447
1448 /* Check flags */
1449 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1450 return -EINVAL;
1451
1452 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1453 return -EPERM;
1454
1455 /* Find the mm_struct */
Greg Thelena879bf52011-02-25 14:44:13 -08001456 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07001457 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -07001458 if (!task) {
Greg Thelena879bf52011-02-25 14:44:13 -08001459 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001460 return -ESRCH;
1461 }
Christoph Lameter3268c632012-03-21 16:34:06 -07001462 get_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001463
1464 /*
1465 * Check if this process has the right to modify the specified
1466 * process. The right exists if the process has administrative
1467 * capabilities, superuser privileges or the same
1468 * userid as the target process.
1469 */
David Howellsc69e8d92008-11-14 10:39:19 +11001470 tcred = __task_cred(task);
Eric W. Biedermanb38a86e2012-03-12 15:48:24 -07001471 if (!uid_eq(cred->euid, tcred->suid) && !uid_eq(cred->euid, tcred->uid) &&
1472 !uid_eq(cred->uid, tcred->suid) && !uid_eq(cred->uid, tcred->uid) &&
Christoph Lameter742755a2006-06-23 02:03:55 -07001473 !capable(CAP_SYS_NICE)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001474 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001475 err = -EPERM;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001476 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001477 }
David Howellsc69e8d92008-11-14 10:39:19 +11001478 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001479
David Quigley86c3a762006-06-23 02:04:02 -07001480 err = security_task_movememory(task);
1481 if (err)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001482 goto out;
David Quigley86c3a762006-06-23 02:04:02 -07001483
Christoph Lameter3268c632012-03-21 16:34:06 -07001484 task_nodes = cpuset_mems_allowed(task);
1485 mm = get_task_mm(task);
1486 put_task_struct(task);
1487
Sasha Levin6e8b09e2012-04-25 16:01:53 -07001488 if (!mm)
1489 return -EINVAL;
1490
1491 if (nodes)
1492 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1493 nodes, status, flags);
1494 else
1495 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07001496
1497 mmput(mm);
1498 return err;
David Quigley86c3a762006-06-23 02:04:02 -07001499
Christoph Lameter742755a2006-06-23 02:03:55 -07001500out:
Christoph Lameter3268c632012-03-21 16:34:06 -07001501 put_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001502 return err;
1503}
Christoph Lameter742755a2006-06-23 02:03:55 -07001504
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001505/*
1506 * Call migration functions in the vma_ops that may prepare
1507 * memory in a vm for migration. migration functions may perform
1508 * the migration for vmas that do not have an underlying page struct.
1509 */
1510int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1511 const nodemask_t *from, unsigned long flags)
1512{
1513 struct vm_area_struct *vma;
1514 int err = 0;
1515
Daisuke Nishimura1001c9f2009-02-11 13:04:18 -08001516 for (vma = mm->mmap; vma && !err; vma = vma->vm_next) {
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001517 if (vma->vm_ops && vma->vm_ops->migrate) {
1518 err = vma->vm_ops->migrate(vma, to, from, flags);
1519 if (err)
1520 break;
1521 }
1522 }
1523 return err;
1524}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001525
1526#ifdef CONFIG_NUMA_BALANCING
1527/*
1528 * Returns true if this is a safe migration target node for misplaced NUMA
1529 * pages. Currently it only checks the watermarks which crude
1530 */
1531static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
Mel Gorman3abef4e2013-02-22 16:34:27 -08001532 unsigned long nr_migrate_pages)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001533{
1534 int z;
1535 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
1536 struct zone *zone = pgdat->node_zones + z;
1537
1538 if (!populated_zone(zone))
1539 continue;
1540
Lisa Du6e543d52013-09-11 14:22:36 -07001541 if (!zone_reclaimable(zone))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001542 continue;
1543
1544 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
1545 if (!zone_watermark_ok(zone, 0,
1546 high_wmark_pages(zone) +
1547 nr_migrate_pages,
1548 0, 0))
1549 continue;
1550 return true;
1551 }
1552 return false;
1553}
1554
1555static struct page *alloc_misplaced_dst_page(struct page *page,
1556 unsigned long data,
1557 int **result)
1558{
1559 int nid = (int) data;
1560 struct page *newpage;
1561
1562 newpage = alloc_pages_exact_node(nid,
1563 (GFP_HIGHUSER_MOVABLE | GFP_THISNODE |
1564 __GFP_NOMEMALLOC | __GFP_NORETRY |
1565 __GFP_NOWARN) &
1566 ~GFP_IOFS, 0);
Hillf Dantonbac03822012-11-27 14:46:24 +00001567 if (newpage)
Peter Zijlstra90572892013-10-07 11:29:20 +01001568 page_cpupid_xchg_last(newpage, page_cpupid_last(page));
Hillf Dantonbac03822012-11-27 14:46:24 +00001569
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001570 return newpage;
1571}
1572
1573/*
Mel Gormana8f60772012-11-14 21:41:46 +00001574 * page migration rate limiting control.
1575 * Do not migrate more than @pages_to_migrate in a @migrate_interval_millisecs
1576 * window of time. Default here says do not migrate more than 1280M per second.
Mel Gormane14808b2012-11-19 10:59:15 +00001577 * If a node is rate-limited then PTE NUMA updates are also rate-limited. However
1578 * as it is faults that reset the window, pte updates will happen unconditionally
1579 * if there has not been a fault since @pteupdate_interval_millisecs after the
1580 * throttle window closed.
Mel Gormana8f60772012-11-14 21:41:46 +00001581 */
1582static unsigned int migrate_interval_millisecs __read_mostly = 100;
Mel Gormane14808b2012-11-19 10:59:15 +00001583static unsigned int pteupdate_interval_millisecs __read_mostly = 1000;
Mel Gormana8f60772012-11-14 21:41:46 +00001584static unsigned int ratelimit_pages __read_mostly = 128 << (20 - PAGE_SHIFT);
1585
Mel Gormane14808b2012-11-19 10:59:15 +00001586/* Returns true if NUMA migration is currently rate limited */
1587bool migrate_ratelimited(int node)
1588{
1589 pg_data_t *pgdat = NODE_DATA(node);
1590
1591 if (time_after(jiffies, pgdat->numabalancing_migrate_next_window +
1592 msecs_to_jiffies(pteupdate_interval_millisecs)))
1593 return false;
1594
1595 if (pgdat->numabalancing_migrate_nr_pages < ratelimit_pages)
1596 return false;
1597
1598 return true;
1599}
1600
Mel Gormanb32967f2012-11-19 12:35:47 +00001601/* Returns true if the node is migrate rate-limited after the update */
Mel Gorman1c30e012014-01-21 15:50:58 -08001602static bool numamigrate_update_ratelimit(pg_data_t *pgdat,
1603 unsigned long nr_pages)
Mel Gormanb32967f2012-11-19 12:35:47 +00001604{
1605 bool rate_limited = false;
1606
1607 /*
1608 * Rate-limit the amount of data that is being migrated to a node.
1609 * Optimal placement is no good if the memory bus is saturated and
1610 * all the time is being spent migrating!
1611 */
1612 spin_lock(&pgdat->numabalancing_migrate_lock);
1613 if (time_after(jiffies, pgdat->numabalancing_migrate_next_window)) {
1614 pgdat->numabalancing_migrate_nr_pages = 0;
1615 pgdat->numabalancing_migrate_next_window = jiffies +
1616 msecs_to_jiffies(migrate_interval_millisecs);
1617 }
1618 if (pgdat->numabalancing_migrate_nr_pages > ratelimit_pages)
1619 rate_limited = true;
1620 else
Mel Gormand28d43352012-11-29 09:24:36 +00001621 pgdat->numabalancing_migrate_nr_pages += nr_pages;
Mel Gormanb32967f2012-11-19 12:35:47 +00001622 spin_unlock(&pgdat->numabalancing_migrate_lock);
1623
1624 return rate_limited;
1625}
1626
Mel Gorman1c30e012014-01-21 15:50:58 -08001627static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
Mel Gormanb32967f2012-11-19 12:35:47 +00001628{
Hugh Dickins340ef392013-02-22 16:34:33 -08001629 int page_lru;
Mel Gormanb32967f2012-11-19 12:35:47 +00001630
Mel Gorman3abef4e2013-02-22 16:34:27 -08001631 VM_BUG_ON(compound_order(page) && !PageTransHuge(page));
1632
Mel Gormanb32967f2012-11-19 12:35:47 +00001633 /* Avoid migrating to a node that is nearly full */
Hugh Dickins340ef392013-02-22 16:34:33 -08001634 if (!migrate_balanced_pgdat(pgdat, 1UL << compound_order(page)))
1635 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00001636
Hugh Dickins340ef392013-02-22 16:34:33 -08001637 if (isolate_lru_page(page))
1638 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00001639
1640 /*
Hugh Dickins340ef392013-02-22 16:34:33 -08001641 * migrate_misplaced_transhuge_page() skips page migration's usual
1642 * check on page_count(), so we must do it here, now that the page
1643 * has been isolated: a GUP pin, or any other pin, prevents migration.
1644 * The expected page count is 3: 1 for page's mapcount and 1 for the
1645 * caller's pin and 1 for the reference taken by isolate_lru_page().
1646 */
1647 if (PageTransHuge(page) && page_count(page) != 3) {
1648 putback_lru_page(page);
1649 return 0;
1650 }
1651
1652 page_lru = page_is_file_cache(page);
1653 mod_zone_page_state(page_zone(page), NR_ISOLATED_ANON + page_lru,
1654 hpage_nr_pages(page));
1655
1656 /*
1657 * Isolating the page has taken another reference, so the
1658 * caller's reference can be safely dropped without the page
1659 * disappearing underneath us during migration.
Mel Gormanb32967f2012-11-19 12:35:47 +00001660 */
1661 put_page(page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001662 return 1;
Mel Gormanb32967f2012-11-19 12:35:47 +00001663}
1664
Mel Gormande466bd2013-12-18 17:08:42 -08001665bool pmd_trans_migrating(pmd_t pmd)
1666{
1667 struct page *page = pmd_page(pmd);
1668 return PageLocked(page);
1669}
1670
1671void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd)
1672{
1673 struct page *page = pmd_page(*pmd);
1674 wait_on_page_locked(page);
1675}
1676
Mel Gormana8f60772012-11-14 21:41:46 +00001677/*
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001678 * Attempt to migrate a misplaced page to the specified destination
1679 * node. Caller is expected to have an elevated reference count on
1680 * the page that will be dropped by this function before returning.
1681 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01001682int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
1683 int node)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001684{
Mel Gormana8f60772012-11-14 21:41:46 +00001685 pg_data_t *pgdat = NODE_DATA(node);
Hugh Dickins340ef392013-02-22 16:34:33 -08001686 int isolated;
Mel Gormanb32967f2012-11-19 12:35:47 +00001687 int nr_remaining;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001688 LIST_HEAD(migratepages);
1689
1690 /*
Mel Gorman1bc115d2013-10-07 11:29:05 +01001691 * Don't migrate file pages that are mapped in multiple processes
1692 * with execute permissions as they are probably shared libraries.
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001693 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01001694 if (page_mapcount(page) != 1 && page_is_file_cache(page) &&
1695 (vma->vm_flags & VM_EXEC))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001696 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001697
Mel Gormana8f60772012-11-14 21:41:46 +00001698 /*
1699 * Rate-limit the amount of data that is being migrated to a node.
1700 * Optimal placement is no good if the memory bus is saturated and
1701 * all the time is being spent migrating!
1702 */
Hugh Dickins340ef392013-02-22 16:34:33 -08001703 if (numamigrate_update_ratelimit(pgdat, 1))
Mel Gormana8f60772012-11-14 21:41:46 +00001704 goto out;
Mel Gormana8f60772012-11-14 21:41:46 +00001705
Mel Gormanb32967f2012-11-19 12:35:47 +00001706 isolated = numamigrate_isolate_page(pgdat, page);
1707 if (!isolated)
1708 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001709
Mel Gormanb32967f2012-11-19 12:35:47 +00001710 list_add(&page->lru, &migratepages);
Hugh Dickins9c620e22013-02-22 16:35:14 -08001711 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
1712 node, MIGRATE_ASYNC, MR_NUMA_MISPLACED);
Mel Gormanb32967f2012-11-19 12:35:47 +00001713 if (nr_remaining) {
1714 putback_lru_pages(&migratepages);
1715 isolated = 0;
1716 } else
1717 count_vm_numa_event(NUMA_PAGE_MIGRATE);
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001718 BUG_ON(!list_empty(&migratepages));
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001719 return isolated;
Hugh Dickins340ef392013-02-22 16:34:33 -08001720
1721out:
1722 put_page(page);
1723 return 0;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001724}
Mel Gorman220018d2012-12-05 09:32:56 +00001725#endif /* CONFIG_NUMA_BALANCING */
Mel Gormanb32967f2012-11-19 12:35:47 +00001726
Mel Gorman220018d2012-12-05 09:32:56 +00001727#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Hugh Dickins340ef392013-02-22 16:34:33 -08001728/*
1729 * Migrates a THP to a given target node. page must be locked and is unlocked
1730 * before returning.
1731 */
Mel Gormanb32967f2012-11-19 12:35:47 +00001732int migrate_misplaced_transhuge_page(struct mm_struct *mm,
1733 struct vm_area_struct *vma,
1734 pmd_t *pmd, pmd_t entry,
1735 unsigned long address,
1736 struct page *page, int node)
1737{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001738 spinlock_t *ptl;
Mel Gormanb32967f2012-11-19 12:35:47 +00001739 pg_data_t *pgdat = NODE_DATA(node);
1740 int isolated = 0;
1741 struct page *new_page = NULL;
1742 struct mem_cgroup *memcg = NULL;
1743 int page_lru = page_is_file_cache(page);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001744 unsigned long mmun_start = address & HPAGE_PMD_MASK;
1745 unsigned long mmun_end = mmun_start + HPAGE_PMD_SIZE;
Mel Gorman2b4847e2013-12-18 17:08:32 -08001746 pmd_t orig_entry;
Mel Gormanb32967f2012-11-19 12:35:47 +00001747
1748 /*
Mel Gormanb32967f2012-11-19 12:35:47 +00001749 * Rate-limit the amount of data that is being migrated to a node.
1750 * Optimal placement is no good if the memory bus is saturated and
1751 * all the time is being spent migrating!
1752 */
Mel Gormand28d43352012-11-29 09:24:36 +00001753 if (numamigrate_update_ratelimit(pgdat, HPAGE_PMD_NR))
Mel Gormanb32967f2012-11-19 12:35:47 +00001754 goto out_dropref;
1755
1756 new_page = alloc_pages_node(node,
1757 (GFP_TRANSHUGE | GFP_THISNODE) & ~__GFP_WAIT, HPAGE_PMD_ORDER);
Hugh Dickins340ef392013-02-22 16:34:33 -08001758 if (!new_page)
1759 goto out_fail;
1760
Peter Zijlstra90572892013-10-07 11:29:20 +01001761 page_cpupid_xchg_last(new_page, page_cpupid_last(page));
Mel Gormanb32967f2012-11-19 12:35:47 +00001762
1763 isolated = numamigrate_isolate_page(pgdat, page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001764 if (!isolated) {
Mel Gormanb32967f2012-11-19 12:35:47 +00001765 put_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001766 goto out_fail;
Mel Gormanb32967f2012-11-19 12:35:47 +00001767 }
1768
Mel Gormanb0943d62013-12-18 17:08:46 -08001769 if (mm_tlb_flush_pending(mm))
1770 flush_tlb_range(vma, mmun_start, mmun_end);
1771
Mel Gormanb32967f2012-11-19 12:35:47 +00001772 /* Prepare a page as a migration target */
1773 __set_page_locked(new_page);
1774 SetPageSwapBacked(new_page);
1775
1776 /* anon mapping, we can simply copy page->mapping to the new page: */
1777 new_page->mapping = page->mapping;
1778 new_page->index = page->index;
1779 migrate_page_copy(new_page, page);
1780 WARN_ON(PageLRU(new_page));
1781
1782 /* Recheck the target PMD */
Mel Gormanf714f4f2013-12-18 17:08:33 -08001783 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001784 ptl = pmd_lock(mm, pmd);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001785 if (unlikely(!pmd_same(*pmd, entry) || page_count(page) != 2)) {
1786fail_putback:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001787 spin_unlock(ptl);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001788 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Mel Gormanb32967f2012-11-19 12:35:47 +00001789
1790 /* Reverse changes made by migrate_page_copy() */
1791 if (TestClearPageActive(new_page))
1792 SetPageActive(page);
1793 if (TestClearPageUnevictable(new_page))
1794 SetPageUnevictable(page);
1795 mlock_migrate_page(page, new_page);
1796
1797 unlock_page(new_page);
1798 put_page(new_page); /* Free it */
1799
Mel Gormana54a4072013-10-07 11:28:46 +01001800 /* Retake the callers reference and putback on LRU */
1801 get_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001802 putback_lru_page(page);
Mel Gormana54a4072013-10-07 11:28:46 +01001803 mod_zone_page_state(page_zone(page),
1804 NR_ISOLATED_ANON + page_lru, -HPAGE_PMD_NR);
Mel Gormaneb4489f62013-12-18 17:08:39 -08001805
1806 goto out_unlock;
Mel Gormanb32967f2012-11-19 12:35:47 +00001807 }
1808
1809 /*
1810 * Traditional migration needs to prepare the memcg charge
1811 * transaction early to prevent the old page from being
1812 * uncharged when installing migration entries. Here we can
1813 * save the potential rollback and start the charge transfer
1814 * only when migration is already known to end successfully.
1815 */
1816 mem_cgroup_prepare_migration(page, new_page, &memcg);
1817
Mel Gorman2b4847e2013-12-18 17:08:32 -08001818 orig_entry = *pmd;
Mel Gormanb32967f2012-11-19 12:35:47 +00001819 entry = mk_pmd(new_page, vma->vm_page_prot);
Mel Gormanb32967f2012-11-19 12:35:47 +00001820 entry = pmd_mkhuge(entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001821 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Mel Gormanb32967f2012-11-19 12:35:47 +00001822
Mel Gorman2b4847e2013-12-18 17:08:32 -08001823 /*
1824 * Clear the old entry under pagetable lock and establish the new PTE.
1825 * Any parallel GUP will either observe the old page blocking on the
1826 * page lock, block on the page table lock or observe the new page.
1827 * The SetPageUptodate on the new page and page_add_new_anon_rmap
1828 * guarantee the copy is visible before the pagetable update.
1829 */
Mel Gormanf714f4f2013-12-18 17:08:33 -08001830 flush_cache_range(vma, mmun_start, mmun_end);
1831 page_add_new_anon_rmap(new_page, vma, mmun_start);
1832 pmdp_clear_flush(vma, mmun_start, pmd);
1833 set_pmd_at(mm, mmun_start, pmd, entry);
1834 flush_tlb_range(vma, mmun_start, mmun_end);
Stephen Rothwellce4a9cc2012-12-10 19:50:57 +11001835 update_mmu_cache_pmd(vma, address, &entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001836
1837 if (page_count(page) != 2) {
Mel Gormanf714f4f2013-12-18 17:08:33 -08001838 set_pmd_at(mm, mmun_start, pmd, orig_entry);
1839 flush_tlb_range(vma, mmun_start, mmun_end);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001840 update_mmu_cache_pmd(vma, address, &entry);
1841 page_remove_rmap(new_page);
1842 goto fail_putback;
1843 }
1844
Mel Gormanb32967f2012-11-19 12:35:47 +00001845 page_remove_rmap(page);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001846
Mel Gormanb32967f2012-11-19 12:35:47 +00001847 /*
1848 * Finish the charge transaction under the page table lock to
1849 * prevent split_huge_page() from dividing up the charge
1850 * before it's fully transferred to the new page.
1851 */
1852 mem_cgroup_end_migration(memcg, page, new_page, true);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001853 spin_unlock(ptl);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001854 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Mel Gormanb32967f2012-11-19 12:35:47 +00001855
1856 unlock_page(new_page);
1857 unlock_page(page);
1858 put_page(page); /* Drop the rmap reference */
1859 put_page(page); /* Drop the LRU isolation reference */
1860
1861 count_vm_events(PGMIGRATE_SUCCESS, HPAGE_PMD_NR);
1862 count_vm_numa_events(NUMA_PAGE_MIGRATE, HPAGE_PMD_NR);
1863
Mel Gormanb32967f2012-11-19 12:35:47 +00001864 mod_zone_page_state(page_zone(page),
1865 NR_ISOLATED_ANON + page_lru,
1866 -HPAGE_PMD_NR);
1867 return isolated;
1868
Hugh Dickins340ef392013-02-22 16:34:33 -08001869out_fail:
1870 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
Mel Gormanb32967f2012-11-19 12:35:47 +00001871out_dropref:
Mel Gorman2b4847e2013-12-18 17:08:32 -08001872 ptl = pmd_lock(mm, pmd);
1873 if (pmd_same(*pmd, entry)) {
1874 entry = pmd_mknonnuma(entry);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001875 set_pmd_at(mm, mmun_start, pmd, entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001876 update_mmu_cache_pmd(vma, address, &entry);
1877 }
1878 spin_unlock(ptl);
Mel Gormana54a4072013-10-07 11:28:46 +01001879
Mel Gormaneb4489f62013-12-18 17:08:39 -08001880out_unlock:
Hugh Dickins340ef392013-02-22 16:34:33 -08001881 unlock_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001882 put_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001883 return 0;
1884}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001885#endif /* CONFIG_NUMA_BALANCING */
1886
1887#endif /* CONFIG_NUMA */