mm: page migration avoid touching newpage until no going back
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / mm / migrate.c
CommitLineData
b20a3503 1/*
14e0f9bc 2 * Memory Migration functionality - linux/mm/migrate.c
b20a3503
CL
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>
cde53535 12 * Christoph Lameter
b20a3503
CL
13 */
14
15#include <linux/migrate.h>
b95f1b31 16#include <linux/export.h>
b20a3503 17#include <linux/swap.h>
0697212a 18#include <linux/swapops.h>
b20a3503 19#include <linux/pagemap.h>
e23ca00b 20#include <linux/buffer_head.h>
b20a3503 21#include <linux/mm_inline.h>
b488893a 22#include <linux/nsproxy.h>
b20a3503 23#include <linux/pagevec.h>
e9995ef9 24#include <linux/ksm.h>
b20a3503
CL
25#include <linux/rmap.h>
26#include <linux/topology.h>
27#include <linux/cpu.h>
28#include <linux/cpuset.h>
04e62a29 29#include <linux/writeback.h>
742755a1
CL
30#include <linux/mempolicy.h>
31#include <linux/vmalloc.h>
86c3a764 32#include <linux/security.h>
4f5ca265 33#include <linux/syscalls.h>
290408d4 34#include <linux/hugetlb.h>
8e6ac7fa 35#include <linux/hugetlb_cgroup.h>
5a0e3ad6 36#include <linux/gfp.h>
bf6bddf1 37#include <linux/balloon_compaction.h>
f714f4f2 38#include <linux/mmu_notifier.h>
33c3fc71 39#include <linux/page_idle.h>
b20a3503 40
0d1836c3
MN
41#include <asm/tlbflush.h>
42
7b2a2d4a
MG
43#define CREATE_TRACE_POINTS
44#include <trace/events/migrate.h>
45
b20a3503
CL
46#include "internal.h"
47
b20a3503 48/*
742755a1 49 * migrate_prep() needs to be called before we start compiling a list of pages
748446bb
MG
50 * to be migrated using isolate_lru_page(). If scheduling work on other CPUs is
51 * undesirable, use migrate_prep_local()
b20a3503
CL
52 */
53int migrate_prep(void)
54{
b20a3503
CL
55 /*
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
748446bb
MG
66/* 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
5733c7d1
RA
74/*
75 * Put previously isolated pages back onto the appropriate lists
76 * from where they were once taken off for compaction/migration.
77 *
59c82b70
JK
78 * This function shall be used whenever the isolated pageset has been
79 * built from lru, balloon, hugetlbfs page. See isolate_migratepages_range()
80 * and isolate_huge_page().
5733c7d1
RA
81 */
82void putback_movable_pages(struct list_head *l)
83{
84 struct page *page;
85 struct page *page2;
86
b20a3503 87 list_for_each_entry_safe(page, page2, l, lru) {
31caf665
NH
88 if (unlikely(PageHuge(page))) {
89 putback_active_hugepage(page);
90 continue;
91 }
e24f0b8f 92 list_del(&page->lru);
a731286d 93 dec_zone_page_state(page, NR_ISOLATED_ANON +
6c0b1351 94 page_is_file_cache(page));
117aad1e 95 if (unlikely(isolated_balloon_page(page)))
bf6bddf1
RA
96 balloon_page_putback(page);
97 else
98 putback_lru_page(page);
b20a3503 99 }
b20a3503
CL
100}
101
0697212a
CL
102/*
103 * Restore a potential migration pte to a working pte entry
104 */
e9995ef9
HD
105static int remove_migration_pte(struct page *new, struct vm_area_struct *vma,
106 unsigned long addr, void *old)
0697212a
CL
107{
108 struct mm_struct *mm = vma->vm_mm;
109 swp_entry_t entry;
0697212a
CL
110 pmd_t *pmd;
111 pte_t *ptep, pte;
112 spinlock_t *ptl;
113
290408d4
NH
114 if (unlikely(PageHuge(new))) {
115 ptep = huge_pte_offset(mm, addr);
116 if (!ptep)
117 goto out;
cb900f41 118 ptl = huge_pte_lockptr(hstate_vma(vma), mm, ptep);
290408d4 119 } else {
6219049a
BL
120 pmd = mm_find_pmd(mm, addr);
121 if (!pmd)
290408d4 122 goto out;
0697212a 123
290408d4 124 ptep = pte_offset_map(pmd, addr);
0697212a 125
486cf46f
HD
126 /*
127 * Peek to check is_swap_pte() before taking ptlock? No, we
128 * can race mremap's move_ptes(), which skips anon_vma lock.
129 */
290408d4
NH
130
131 ptl = pte_lockptr(mm, pmd);
132 }
0697212a 133
0697212a
CL
134 spin_lock(ptl);
135 pte = *ptep;
136 if (!is_swap_pte(pte))
e9995ef9 137 goto unlock;
0697212a
CL
138
139 entry = pte_to_swp_entry(pte);
140
e9995ef9
HD
141 if (!is_migration_entry(entry) ||
142 migration_entry_to_page(entry) != old)
143 goto unlock;
0697212a 144
0697212a
CL
145 get_page(new);
146 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
c3d16e16
CG
147 if (pte_swp_soft_dirty(*ptep))
148 pte = pte_mksoft_dirty(pte);
d3cb8bf6
MG
149
150 /* Recheck VMA as permissions can change since migration started */
0697212a 151 if (is_write_migration_entry(entry))
d3cb8bf6
MG
152 pte = maybe_mkwrite(pte, vma);
153
3ef8fd7f 154#ifdef CONFIG_HUGETLB_PAGE
be7517d6 155 if (PageHuge(new)) {
290408d4 156 pte = pte_mkhuge(pte);
be7517d6
TL
157 pte = arch_make_huge_pte(pte, vma, new, 0);
158 }
3ef8fd7f 159#endif
c2cc499c 160 flush_dcache_page(new);
0697212a 161 set_pte_at(mm, addr, ptep, pte);
04e62a29 162
290408d4
NH
163 if (PageHuge(new)) {
164 if (PageAnon(new))
165 hugepage_add_anon_rmap(new, vma, addr);
166 else
167 page_dup_rmap(new);
168 } else if (PageAnon(new))
04e62a29
CL
169 page_add_anon_rmap(new, vma, addr);
170 else
171 page_add_file_rmap(new);
172
51afb12b
HD
173 if (vma->vm_flags & VM_LOCKED)
174 mlock_vma_page(new);
175
04e62a29 176 /* No need to invalidate - it was non-present before */
4b3073e1 177 update_mmu_cache(vma, addr, ptep);
e9995ef9 178unlock:
0697212a 179 pte_unmap_unlock(ptep, ptl);
e9995ef9
HD
180out:
181 return SWAP_AGAIN;
0697212a
CL
182}
183
04e62a29
CL
184/*
185 * Get rid of all migration entries and replace them by
186 * references to the indicated page.
187 */
188static void remove_migration_ptes(struct page *old, struct page *new)
189{
051ac83a
JK
190 struct rmap_walk_control rwc = {
191 .rmap_one = remove_migration_pte,
192 .arg = old,
193 };
194
195 rmap_walk(new, &rwc);
04e62a29
CL
196}
197
0697212a
CL
198/*
199 * Something used the pte of a page under migration. We need to
200 * get to the page and wait until migration is finished.
201 * When we return from this function the fault will be retried.
0697212a 202 */
e66f17ff 203void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
30dad309 204 spinlock_t *ptl)
0697212a 205{
30dad309 206 pte_t pte;
0697212a
CL
207 swp_entry_t entry;
208 struct page *page;
209
30dad309 210 spin_lock(ptl);
0697212a
CL
211 pte = *ptep;
212 if (!is_swap_pte(pte))
213 goto out;
214
215 entry = pte_to_swp_entry(pte);
216 if (!is_migration_entry(entry))
217 goto out;
218
219 page = migration_entry_to_page(entry);
220
e286781d
NP
221 /*
222 * Once radix-tree replacement of page migration started, page_count
223 * *must* be zero. And, we don't want to call wait_on_page_locked()
224 * against a page without get_page().
225 * So, we use get_page_unless_zero(), here. Even failed, page fault
226 * will occur again.
227 */
228 if (!get_page_unless_zero(page))
229 goto out;
0697212a
CL
230 pte_unmap_unlock(ptep, ptl);
231 wait_on_page_locked(page);
232 put_page(page);
233 return;
234out:
235 pte_unmap_unlock(ptep, ptl);
236}
237
30dad309
NH
238void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
239 unsigned long address)
240{
241 spinlock_t *ptl = pte_lockptr(mm, pmd);
242 pte_t *ptep = pte_offset_map(pmd, address);
243 __migration_entry_wait(mm, ptep, ptl);
244}
245
cb900f41
KS
246void migration_entry_wait_huge(struct vm_area_struct *vma,
247 struct mm_struct *mm, pte_t *pte)
30dad309 248{
cb900f41 249 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), mm, pte);
30dad309
NH
250 __migration_entry_wait(mm, pte, ptl);
251}
252
b969c4ab
MG
253#ifdef CONFIG_BLOCK
254/* Returns true if all buffers are successfully locked */
a6bc32b8
MG
255static bool buffer_migrate_lock_buffers(struct buffer_head *head,
256 enum migrate_mode mode)
b969c4ab
MG
257{
258 struct buffer_head *bh = head;
259
260 /* Simple case, sync compaction */
a6bc32b8 261 if (mode != MIGRATE_ASYNC) {
b969c4ab
MG
262 do {
263 get_bh(bh);
264 lock_buffer(bh);
265 bh = bh->b_this_page;
266
267 } while (bh != head);
268
269 return true;
270 }
271
272 /* async case, we cannot block on lock_buffer so use trylock_buffer */
273 do {
274 get_bh(bh);
275 if (!trylock_buffer(bh)) {
276 /*
277 * We failed to lock the buffer and cannot stall in
278 * async migration. Release the taken locks
279 */
280 struct buffer_head *failed_bh = bh;
281 put_bh(failed_bh);
282 bh = head;
283 while (bh != failed_bh) {
284 unlock_buffer(bh);
285 put_bh(bh);
286 bh = bh->b_this_page;
287 }
288 return false;
289 }
290
291 bh = bh->b_this_page;
292 } while (bh != head);
293 return true;
294}
295#else
296static inline bool buffer_migrate_lock_buffers(struct buffer_head *head,
a6bc32b8 297 enum migrate_mode mode)
b969c4ab
MG
298{
299 return true;
300}
301#endif /* CONFIG_BLOCK */
302
b20a3503 303/*
c3fcf8a5 304 * Replace the page in the mapping.
5b5c7120
CL
305 *
306 * The number of remaining references must be:
307 * 1 for anonymous pages without a mapping
308 * 2 for pages with a mapping
266cf658 309 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
b20a3503 310 */
36bc08cc 311int migrate_page_move_mapping(struct address_space *mapping,
b969c4ab 312 struct page *newpage, struct page *page,
8e321fef
BL
313 struct buffer_head *head, enum migrate_mode mode,
314 int extra_count)
b20a3503 315{
8e321fef 316 int expected_count = 1 + extra_count;
7cf9c2c7 317 void **pslot;
b20a3503 318
6c5240ae 319 if (!mapping) {
0e8c7d0f 320 /* Anonymous page without mapping */
8e321fef 321 if (page_count(page) != expected_count)
6c5240ae 322 return -EAGAIN;
cf4b769a
HD
323
324 /* No turning back from here */
325 set_page_memcg(newpage, page_memcg(page));
326 newpage->index = page->index;
327 newpage->mapping = page->mapping;
328 if (PageSwapBacked(page))
329 SetPageSwapBacked(newpage);
330
78bd5209 331 return MIGRATEPAGE_SUCCESS;
6c5240ae
CL
332 }
333
19fd6231 334 spin_lock_irq(&mapping->tree_lock);
b20a3503 335
7cf9c2c7
NP
336 pslot = radix_tree_lookup_slot(&mapping->page_tree,
337 page_index(page));
b20a3503 338
8e321fef 339 expected_count += 1 + page_has_private(page);
e286781d 340 if (page_count(page) != expected_count ||
29c1f677 341 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
19fd6231 342 spin_unlock_irq(&mapping->tree_lock);
e23ca00b 343 return -EAGAIN;
b20a3503
CL
344 }
345
e286781d 346 if (!page_freeze_refs(page, expected_count)) {
19fd6231 347 spin_unlock_irq(&mapping->tree_lock);
e286781d
NP
348 return -EAGAIN;
349 }
350
b969c4ab
MG
351 /*
352 * In the async migration case of moving a page with buffers, lock the
353 * buffers using trylock before the mapping is moved. If the mapping
354 * was moved, we later failed to lock the buffers and could not move
355 * the mapping back due to an elevated page count, we would have to
356 * block waiting on other references to be dropped.
357 */
a6bc32b8
MG
358 if (mode == MIGRATE_ASYNC && head &&
359 !buffer_migrate_lock_buffers(head, mode)) {
b969c4ab
MG
360 page_unfreeze_refs(page, expected_count);
361 spin_unlock_irq(&mapping->tree_lock);
362 return -EAGAIN;
363 }
364
b20a3503 365 /*
cf4b769a
HD
366 * Now we know that no one else is looking at the page:
367 * no turning back from here.
b20a3503 368 */
cf4b769a
HD
369 set_page_memcg(newpage, page_memcg(page));
370 newpage->index = page->index;
371 newpage->mapping = page->mapping;
372 if (PageSwapBacked(page))
373 SetPageSwapBacked(newpage);
374
7cf9c2c7 375 get_page(newpage); /* add cache reference */
b20a3503
CL
376 if (PageSwapCache(page)) {
377 SetPageSwapCache(newpage);
378 set_page_private(newpage, page_private(page));
379 }
380
7cf9c2c7
NP
381 radix_tree_replace_slot(pslot, newpage);
382
383 /*
937a94c9
JG
384 * Drop cache reference from old page by unfreezing
385 * to one less reference.
7cf9c2c7
NP
386 * We know this isn't the last reference.
387 */
937a94c9 388 page_unfreeze_refs(page, expected_count - 1);
7cf9c2c7 389
0e8c7d0f
CL
390 /*
391 * If moved to a different zone then also account
392 * the page for that zone. Other VM counters will be
393 * taken care of when we establish references to the
394 * new page and drop references to the old page.
395 *
396 * Note that anonymous pages are accounted for
397 * via NR_FILE_PAGES and NR_ANON_PAGES if they
398 * are mapped to swap space.
399 */
400 __dec_zone_page_state(page, NR_FILE_PAGES);
401 __inc_zone_page_state(newpage, NR_FILE_PAGES);
99a15e21 402 if (!PageSwapCache(page) && PageSwapBacked(page)) {
4b02108a
KM
403 __dec_zone_page_state(page, NR_SHMEM);
404 __inc_zone_page_state(newpage, NR_SHMEM);
405 }
19fd6231 406 spin_unlock_irq(&mapping->tree_lock);
b20a3503 407
78bd5209 408 return MIGRATEPAGE_SUCCESS;
b20a3503 409}
b20a3503 410
290408d4
NH
411/*
412 * The expected number of remaining references is the same as that
413 * of migrate_page_move_mapping().
414 */
415int migrate_huge_page_move_mapping(struct address_space *mapping,
416 struct page *newpage, struct page *page)
417{
418 int expected_count;
419 void **pslot;
420
290408d4
NH
421 spin_lock_irq(&mapping->tree_lock);
422
423 pslot = radix_tree_lookup_slot(&mapping->page_tree,
424 page_index(page));
425
426 expected_count = 2 + page_has_private(page);
427 if (page_count(page) != expected_count ||
29c1f677 428 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
290408d4
NH
429 spin_unlock_irq(&mapping->tree_lock);
430 return -EAGAIN;
431 }
432
433 if (!page_freeze_refs(page, expected_count)) {
434 spin_unlock_irq(&mapping->tree_lock);
435 return -EAGAIN;
436 }
437
cf4b769a
HD
438 set_page_memcg(newpage, page_memcg(page));
439 newpage->index = page->index;
440 newpage->mapping = page->mapping;
290408d4
NH
441 get_page(newpage);
442
443 radix_tree_replace_slot(pslot, newpage);
444
937a94c9 445 page_unfreeze_refs(page, expected_count - 1);
290408d4
NH
446
447 spin_unlock_irq(&mapping->tree_lock);
78bd5209 448 return MIGRATEPAGE_SUCCESS;
290408d4
NH
449}
450
30b0a105
DH
451/*
452 * 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
b20a3503
CL
499/*
500 * Copy the page to its new location
501 */
290408d4 502void migrate_page_copy(struct page *newpage, struct page *page)
b20a3503 503{
7851a45c
RR
504 int cpupid;
505
b32967ff 506 if (PageHuge(page) || PageTransHuge(page))
290408d4
NH
507 copy_huge_page(newpage, page);
508 else
509 copy_highpage(newpage, page);
b20a3503
CL
510
511 if (PageError(page))
512 SetPageError(newpage);
513 if (PageReferenced(page))
514 SetPageReferenced(newpage);
515 if (PageUptodate(page))
516 SetPageUptodate(newpage);
894bc310 517 if (TestClearPageActive(page)) {
309381fe 518 VM_BUG_ON_PAGE(PageUnevictable(page), page);
b20a3503 519 SetPageActive(newpage);
418b27ef
LS
520 } else if (TestClearPageUnevictable(page))
521 SetPageUnevictable(newpage);
b20a3503
CL
522 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);
3a902c5f
NP
529 /*
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.
25985edc 534 * Whereas only part of our page may be dirty.
3a902c5f 535 */
752dc185
HD
536 if (PageSwapBacked(page))
537 SetPageDirty(newpage);
538 else
539 __set_page_dirty_nobuffers(newpage);
b20a3503
CL
540 }
541
33c3fc71
VD
542 if (page_is_young(page))
543 set_page_young(newpage);
544 if (page_is_idle(page))
545 set_page_idle(newpage);
546
7851a45c
RR
547 /*
548 * Copy NUMA information to the new page, to prevent over-eager
549 * future migrations of this same page.
550 */
551 cpupid = page_cpupid_xchg_last(page, -1);
552 page_cpupid_xchg_last(newpage, cpupid);
553
e9995ef9 554 ksm_migrate_page(newpage, page);
c8d6553b
HD
555 /*
556 * Please do not reorder this without considering how mm/ksm.c's
557 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
558 */
b3b3a99c
NH
559 if (PageSwapCache(page))
560 ClearPageSwapCache(page);
b20a3503
CL
561 ClearPagePrivate(page);
562 set_page_private(page, 0);
b20a3503
CL
563
564 /*
565 * If any waiters have accumulated on the new page then
566 * wake them up.
567 */
568 if (PageWriteback(newpage))
569 end_page_writeback(newpage);
570}
b20a3503 571
1d8b85cc
CL
572/************************************************************
573 * Migration functions
574 ***********************************************************/
575
b20a3503
CL
576/*
577 * Common logic to directly migrate a single page suitable for
266cf658 578 * pages that do not use PagePrivate/PagePrivate2.
b20a3503
CL
579 *
580 * Pages are locked upon entry and exit.
581 */
2d1db3b1 582int migrate_page(struct address_space *mapping,
a6bc32b8
MG
583 struct page *newpage, struct page *page,
584 enum migrate_mode mode)
b20a3503
CL
585{
586 int rc;
587
588 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
589
8e321fef 590 rc = migrate_page_move_mapping(mapping, newpage, page, NULL, mode, 0);
b20a3503 591
78bd5209 592 if (rc != MIGRATEPAGE_SUCCESS)
b20a3503
CL
593 return rc;
594
595 migrate_page_copy(newpage, page);
78bd5209 596 return MIGRATEPAGE_SUCCESS;
b20a3503
CL
597}
598EXPORT_SYMBOL(migrate_page);
599
9361401e 600#ifdef CONFIG_BLOCK
1d8b85cc
CL
601/*
602 * Migration function for pages with buffers. This function can only be used
603 * if the underlying filesystem guarantees that no other references to "page"
604 * exist.
605 */
2d1db3b1 606int buffer_migrate_page(struct address_space *mapping,
a6bc32b8 607 struct page *newpage, struct page *page, enum migrate_mode mode)
1d8b85cc 608{
1d8b85cc
CL
609 struct buffer_head *bh, *head;
610 int rc;
611
1d8b85cc 612 if (!page_has_buffers(page))
a6bc32b8 613 return migrate_page(mapping, newpage, page, mode);
1d8b85cc
CL
614
615 head = page_buffers(page);
616
8e321fef 617 rc = migrate_page_move_mapping(mapping, newpage, page, head, mode, 0);
1d8b85cc 618
78bd5209 619 if (rc != MIGRATEPAGE_SUCCESS)
1d8b85cc
CL
620 return rc;
621
b969c4ab
MG
622 /*
623 * In the async case, migrate_page_move_mapping locked the buffers
624 * with an IRQ-safe spinlock held. In the sync case, the buffers
625 * need to be locked now
626 */
a6bc32b8
MG
627 if (mode != MIGRATE_ASYNC)
628 BUG_ON(!buffer_migrate_lock_buffers(head, mode));
1d8b85cc
CL
629
630 ClearPagePrivate(page);
631 set_page_private(newpage, page_private(page));
632 set_page_private(page, 0);
633 put_page(page);
634 get_page(newpage);
635
636 bh = head;
637 do {
638 set_bh_page(bh, newpage, bh_offset(bh));
639 bh = bh->b_this_page;
640
641 } while (bh != head);
642
643 SetPagePrivate(newpage);
644
645 migrate_page_copy(newpage, page);
646
647 bh = head;
648 do {
649 unlock_buffer(bh);
650 put_bh(bh);
651 bh = bh->b_this_page;
652
653 } while (bh != head);
654
78bd5209 655 return MIGRATEPAGE_SUCCESS;
1d8b85cc
CL
656}
657EXPORT_SYMBOL(buffer_migrate_page);
9361401e 658#endif
1d8b85cc 659
04e62a29
CL
660/*
661 * Writeback a page to clean the dirty state
662 */
663static int writeout(struct address_space *mapping, struct page *page)
8351a6e4 664{
04e62a29
CL
665 struct writeback_control wbc = {
666 .sync_mode = WB_SYNC_NONE,
667 .nr_to_write = 1,
668 .range_start = 0,
669 .range_end = LLONG_MAX,
04e62a29
CL
670 .for_reclaim = 1
671 };
672 int rc;
673
674 if (!mapping->a_ops->writepage)
675 /* No write method for the address space */
676 return -EINVAL;
677
678 if (!clear_page_dirty_for_io(page))
679 /* Someone else already triggered a write */
680 return -EAGAIN;
681
8351a6e4 682 /*
04e62a29
CL
683 * A dirty page may imply that the underlying filesystem has
684 * the page on some queue. So the page must be clean for
685 * migration. Writeout may mean we loose the lock and the
686 * page state is no longer what we checked for earlier.
687 * At this point we know that the migration attempt cannot
688 * be successful.
8351a6e4 689 */
04e62a29 690 remove_migration_ptes(page, page);
8351a6e4 691
04e62a29 692 rc = mapping->a_ops->writepage(page, &wbc);
8351a6e4 693
04e62a29
CL
694 if (rc != AOP_WRITEPAGE_ACTIVATE)
695 /* unlocked. Relock */
696 lock_page(page);
697
bda8550d 698 return (rc < 0) ? -EIO : -EAGAIN;
04e62a29
CL
699}
700
701/*
702 * Default handling if a filesystem does not provide a migration function.
703 */
704static int fallback_migrate_page(struct address_space *mapping,
a6bc32b8 705 struct page *newpage, struct page *page, enum migrate_mode mode)
04e62a29 706{
b969c4ab 707 if (PageDirty(page)) {
a6bc32b8
MG
708 /* Only writeback pages in full synchronous migration */
709 if (mode != MIGRATE_SYNC)
b969c4ab 710 return -EBUSY;
04e62a29 711 return writeout(mapping, page);
b969c4ab 712 }
8351a6e4
CL
713
714 /*
715 * Buffers may be managed in a filesystem specific way.
716 * We must have no buffers or drop them.
717 */
266cf658 718 if (page_has_private(page) &&
8351a6e4
CL
719 !try_to_release_page(page, GFP_KERNEL))
720 return -EAGAIN;
721
a6bc32b8 722 return migrate_page(mapping, newpage, page, mode);
8351a6e4
CL
723}
724
e24f0b8f
CL
725/*
726 * Move a page to a newly allocated page
727 * The page is locked and all ptes have been successfully removed.
728 *
729 * The new page will have replaced the old page if this function
730 * is successful.
894bc310
LS
731 *
732 * Return value:
733 * < 0 - error code
78bd5209 734 * MIGRATEPAGE_SUCCESS - success
e24f0b8f 735 */
3fe2011f 736static int move_to_new_page(struct page *newpage, struct page *page,
5c3f9a67 737 enum migrate_mode mode)
e24f0b8f
CL
738{
739 struct address_space *mapping;
740 int rc;
741
7db7671f
HD
742 VM_BUG_ON_PAGE(!PageLocked(page), page);
743 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
e24f0b8f 744
e24f0b8f
CL
745 mapping = page_mapping(page);
746 if (!mapping)
a6bc32b8 747 rc = migrate_page(mapping, newpage, page, mode);
b969c4ab 748 else if (mapping->a_ops->migratepage)
e24f0b8f 749 /*
b969c4ab
MG
750 * Most pages have a mapping and most filesystems provide a
751 * migratepage callback. Anonymous pages are part of swap
752 * space which also has its own migratepage callback. This
753 * is the most common path for page migration.
e24f0b8f 754 */
5c3f9a67 755 rc = mapping->a_ops->migratepage(mapping, newpage, page, mode);
b969c4ab 756 else
a6bc32b8 757 rc = fallback_migrate_page(mapping, newpage, page, mode);
e24f0b8f 758
5c3f9a67
HD
759 /*
760 * When successful, old pagecache page->mapping must be cleared before
761 * page is freed; but stats require that PageAnon be left as PageAnon.
762 */
763 if (rc == MIGRATEPAGE_SUCCESS) {
764 set_page_memcg(page, NULL);
765 if (!PageAnon(page))
766 page->mapping = NULL;
3fe2011f 767 }
e24f0b8f
CL
768 return rc;
769}
770
0dabec93 771static int __unmap_and_move(struct page *page, struct page *newpage,
9c620e2b 772 int force, enum migrate_mode mode)
e24f0b8f 773{
0dabec93 774 int rc = -EAGAIN;
2ebba6b7 775 int page_was_mapped = 0;
3f6c8272 776 struct anon_vma *anon_vma = NULL;
95a402c3 777
529ae9aa 778 if (!trylock_page(page)) {
a6bc32b8 779 if (!force || mode == MIGRATE_ASYNC)
0dabec93 780 goto out;
3e7d3449
MG
781
782 /*
783 * It's not safe for direct compaction to call lock_page.
784 * For example, during page readahead pages are added locked
785 * to the LRU. Later, when the IO completes the pages are
786 * marked uptodate and unlocked. However, the queueing
787 * could be merging multiple pages for one bio (e.g.
788 * mpage_readpages). If an allocation happens for the
789 * second or third page, the process can end up locking
790 * the same page twice and deadlocking. Rather than
791 * trying to be clever about what pages can be locked,
792 * avoid the use of lock_page for direct compaction
793 * altogether.
794 */
795 if (current->flags & PF_MEMALLOC)
0dabec93 796 goto out;
3e7d3449 797
e24f0b8f
CL
798 lock_page(page);
799 }
800
801 if (PageWriteback(page)) {
11bc82d6 802 /*
fed5b64a 803 * Only in the case of a full synchronous migration is it
a6bc32b8
MG
804 * necessary to wait for PageWriteback. In the async case,
805 * the retry loop is too short and in the sync-light case,
806 * the overhead of stalling is too much
11bc82d6 807 */
a6bc32b8 808 if (mode != MIGRATE_SYNC) {
11bc82d6 809 rc = -EBUSY;
0a31bc97 810 goto out_unlock;
11bc82d6
AA
811 }
812 if (!force)
0a31bc97 813 goto out_unlock;
e24f0b8f
CL
814 wait_on_page_writeback(page);
815 }
03f15c86 816
e24f0b8f 817 /*
dc386d4d
KH
818 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
819 * we cannot notice that anon_vma is freed while we migrates a page.
1ce82b69 820 * This get_anon_vma() delays freeing anon_vma pointer until the end
dc386d4d 821 * of migration. File cache pages are no problem because of page_lock()
989f89c5
KH
822 * File Caches may use write_page() or lock_page() in migration, then,
823 * just care Anon page here.
03f15c86
HD
824 *
825 * Only page_get_anon_vma() understands the subtleties of
826 * getting a hold on an anon_vma from outside one of its mms.
827 * But if we cannot get anon_vma, then we won't need it anyway,
828 * because that implies that the anon page is no longer mapped
829 * (and cannot be remapped so long as we hold the page lock).
dc386d4d 830 */
03f15c86 831 if (PageAnon(page) && !PageKsm(page))
746b18d4 832 anon_vma = page_get_anon_vma(page);
62e1c553 833
7db7671f
HD
834 /*
835 * Block others from accessing the new page when we get around to
836 * establishing additional references. We are usually the only one
837 * holding a reference to newpage at this point. We used to have a BUG
838 * here if trylock_page(newpage) fails, but would like to allow for
839 * cases where there might be a race with the previous use of newpage.
840 * This is much like races on refcount of oldpage: just don't BUG().
841 */
842 if (unlikely(!trylock_page(newpage)))
843 goto out_unlock;
844
d6d86c0a 845 if (unlikely(isolated_balloon_page(page))) {
bf6bddf1
RA
846 /*
847 * A ballooned page does not need any special attention from
848 * physical to virtual reverse mapping procedures.
849 * Skip any attempt to unmap PTEs or to remap swap cache,
850 * in order to avoid burning cycles at rmap level, and perform
851 * the page migration right away (proteced by page lock).
852 */
853 rc = balloon_page_migrate(newpage, page, mode);
7db7671f 854 goto out_unlock_both;
bf6bddf1
RA
855 }
856
dc386d4d 857 /*
62e1c553
SL
858 * Corner case handling:
859 * 1. When a new swap-cache page is read into, it is added to the LRU
860 * and treated as swapcache but it has no rmap yet.
861 * Calling try_to_unmap() against a page->mapping==NULL page will
862 * trigger a BUG. So handle it here.
863 * 2. An orphaned page (see truncate_complete_page) might have
864 * fs-private metadata. The page can be picked up due to memory
865 * offlining. Everywhere else except page reclaim, the page is
866 * invisible to the vm, so the page can not be migrated. So try to
867 * free the metadata, so the page can be freed.
e24f0b8f 868 */
62e1c553 869 if (!page->mapping) {
309381fe 870 VM_BUG_ON_PAGE(PageAnon(page), page);
1ce82b69 871 if (page_has_private(page)) {
62e1c553 872 try_to_free_buffers(page);
7db7671f 873 goto out_unlock_both;
62e1c553 874 }
7db7671f
HD
875 } else if (page_mapped(page)) {
876 /* Establish migration ptes */
03f15c86
HD
877 VM_BUG_ON_PAGE(PageAnon(page) && !PageKsm(page) && !anon_vma,
878 page);
2ebba6b7 879 try_to_unmap(page,
da1b13cc 880 TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
2ebba6b7
HD
881 page_was_mapped = 1;
882 }
dc386d4d 883
e6a1530d 884 if (!page_mapped(page))
5c3f9a67 885 rc = move_to_new_page(newpage, page, mode);
e24f0b8f 886
5c3f9a67
HD
887 if (page_was_mapped)
888 remove_migration_ptes(page,
889 rc == MIGRATEPAGE_SUCCESS ? newpage : page);
3f6c8272 890
7db7671f
HD
891out_unlock_both:
892 unlock_page(newpage);
893out_unlock:
3f6c8272 894 /* Drop an anon_vma reference if we took one */
76545066 895 if (anon_vma)
9e60109f 896 put_anon_vma(anon_vma);
e24f0b8f 897 unlock_page(page);
0dabec93
MK
898out:
899 return rc;
900}
95a402c3 901
ef2a5153
GU
902/*
903 * gcc 4.7 and 4.8 on arm get an ICEs when inlining unmap_and_move(). Work
904 * around it.
905 */
906#if (GCC_VERSION >= 40700 && GCC_VERSION < 40900) && defined(CONFIG_ARM)
907#define ICE_noinline noinline
908#else
909#define ICE_noinline
910#endif
911
0dabec93
MK
912/*
913 * Obtain the lock on page, remove all ptes and migrate the page
914 * to the newly allocated page in newpage.
915 */
ef2a5153
GU
916static ICE_noinline int unmap_and_move(new_page_t get_new_page,
917 free_page_t put_new_page,
918 unsigned long private, struct page *page,
add05cec
NH
919 int force, enum migrate_mode mode,
920 enum migrate_reason reason)
0dabec93 921{
2def7424 922 int rc = MIGRATEPAGE_SUCCESS;
0dabec93 923 int *result = NULL;
2def7424 924 struct page *newpage;
0dabec93 925
2def7424 926 newpage = get_new_page(page, private, &result);
0dabec93
MK
927 if (!newpage)
928 return -ENOMEM;
929
930 if (page_count(page) == 1) {
931 /* page was freed from under us. So we are done. */
932 goto out;
933 }
934
935 if (unlikely(PageTransHuge(page)))
936 if (unlikely(split_huge_page(page)))
937 goto out;
938
9c620e2b 939 rc = __unmap_and_move(page, newpage, force, mode);
2def7424
HD
940 if (rc == MIGRATEPAGE_SUCCESS)
941 put_new_page = NULL;
bf6bddf1 942
0dabec93 943out:
e24f0b8f 944 if (rc != -EAGAIN) {
0dabec93
MK
945 /*
946 * A page that has been migrated has all references
947 * removed and will be freed. A page that has not been
948 * migrated will have kepts its references and be
949 * restored.
950 */
951 list_del(&page->lru);
a731286d 952 dec_zone_page_state(page, NR_ISOLATED_ANON +
6c0b1351 953 page_is_file_cache(page));
f4c18e6f 954 /* Soft-offlined page shouldn't go through lru cache list */
da1b13cc 955 if (reason == MR_MEMORY_FAILURE) {
f4c18e6f 956 put_page(page);
da1b13cc
WL
957 if (!test_set_page_hwpoison(page))
958 num_poisoned_pages_inc();
959 } else
add05cec 960 putback_lru_page(page);
e24f0b8f 961 }
68711a74 962
95a402c3 963 /*
68711a74
DR
964 * If migration was not successful and there's a freeing callback, use
965 * it. Otherwise, putback_lru_page() will drop the reference grabbed
966 * during isolation.
95a402c3 967 */
cf4b769a 968 if (put_new_page)
68711a74 969 put_new_page(newpage, private);
cf4b769a 970 else if (unlikely(__is_movable_balloon_page(newpage))) {
d6d86c0a
KK
971 /* drop our reference, page already in the balloon */
972 put_page(newpage);
8bdd6380 973 } else
68711a74
DR
974 putback_lru_page(newpage);
975
742755a1
CL
976 if (result) {
977 if (rc)
978 *result = rc;
979 else
980 *result = page_to_nid(newpage);
981 }
e24f0b8f
CL
982 return rc;
983}
984
290408d4
NH
985/*
986 * Counterpart of unmap_and_move_page() for hugepage migration.
987 *
988 * This function doesn't wait the completion of hugepage I/O
989 * because there is no race between I/O and migration for hugepage.
990 * Note that currently hugepage I/O occurs only in direct I/O
991 * where no lock is held and PG_writeback is irrelevant,
992 * and writeback status of all subpages are counted in the reference
993 * count of the head page (i.e. if all subpages of a 2MB hugepage are
994 * under direct I/O, the reference of the head page is 512 and a bit more.)
995 * This means that when we try to migrate hugepage whose subpages are
996 * doing direct I/O, some references remain after try_to_unmap() and
997 * hugepage migration fails without data corruption.
998 *
999 * There is also no race when direct I/O is issued on the page under migration,
1000 * because then pte is replaced with migration swap entry and direct I/O code
1001 * will wait in the page fault for migration to complete.
1002 */
1003static int unmap_and_move_huge_page(new_page_t get_new_page,
68711a74
DR
1004 free_page_t put_new_page, unsigned long private,
1005 struct page *hpage, int force,
1006 enum migrate_mode mode)
290408d4 1007{
2def7424 1008 int rc = -EAGAIN;
290408d4 1009 int *result = NULL;
2ebba6b7 1010 int page_was_mapped = 0;
32665f2b 1011 struct page *new_hpage;
290408d4
NH
1012 struct anon_vma *anon_vma = NULL;
1013
83467efb
NH
1014 /*
1015 * Movability of hugepages depends on architectures and hugepage size.
1016 * This check is necessary because some callers of hugepage migration
1017 * like soft offline and memory hotremove don't walk through page
1018 * tables or check whether the hugepage is pmd-based or not before
1019 * kicking migration.
1020 */
100873d7 1021 if (!hugepage_migration_supported(page_hstate(hpage))) {
32665f2b 1022 putback_active_hugepage(hpage);
83467efb 1023 return -ENOSYS;
32665f2b 1024 }
83467efb 1025
32665f2b 1026 new_hpage = get_new_page(hpage, private, &result);
290408d4
NH
1027 if (!new_hpage)
1028 return -ENOMEM;
1029
290408d4 1030 if (!trylock_page(hpage)) {
a6bc32b8 1031 if (!force || mode != MIGRATE_SYNC)
290408d4
NH
1032 goto out;
1033 lock_page(hpage);
1034 }
1035
746b18d4
PZ
1036 if (PageAnon(hpage))
1037 anon_vma = page_get_anon_vma(hpage);
290408d4 1038
7db7671f
HD
1039 if (unlikely(!trylock_page(new_hpage)))
1040 goto put_anon;
1041
2ebba6b7
HD
1042 if (page_mapped(hpage)) {
1043 try_to_unmap(hpage,
1044 TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
1045 page_was_mapped = 1;
1046 }
290408d4
NH
1047
1048 if (!page_mapped(hpage))
5c3f9a67 1049 rc = move_to_new_page(new_hpage, hpage, mode);
290408d4 1050
5c3f9a67
HD
1051 if (page_was_mapped)
1052 remove_migration_ptes(hpage,
1053 rc == MIGRATEPAGE_SUCCESS ? new_hpage : hpage);
290408d4 1054
7db7671f
HD
1055 unlock_page(new_hpage);
1056
1057put_anon:
fd4a4663 1058 if (anon_vma)
9e60109f 1059 put_anon_vma(anon_vma);
8e6ac7fa 1060
2def7424 1061 if (rc == MIGRATEPAGE_SUCCESS) {
8e6ac7fa 1062 hugetlb_cgroup_migrate(hpage, new_hpage);
2def7424
HD
1063 put_new_page = NULL;
1064 }
8e6ac7fa 1065
290408d4 1066 unlock_page(hpage);
09761333 1067out:
b8ec1cee
NH
1068 if (rc != -EAGAIN)
1069 putback_active_hugepage(hpage);
68711a74
DR
1070
1071 /*
1072 * If migration was not successful and there's a freeing callback, use
1073 * it. Otherwise, put_page() will drop the reference grabbed during
1074 * isolation.
1075 */
2def7424 1076 if (put_new_page)
68711a74
DR
1077 put_new_page(new_hpage, private);
1078 else
3aaa76e1 1079 putback_active_hugepage(new_hpage);
68711a74 1080
290408d4
NH
1081 if (result) {
1082 if (rc)
1083 *result = rc;
1084 else
1085 *result = page_to_nid(new_hpage);
1086 }
1087 return rc;
1088}
1089
b20a3503 1090/*
c73e5c9c
SB
1091 * migrate_pages - migrate the pages specified in a list, to the free pages
1092 * supplied as the target for the page migration
b20a3503 1093 *
c73e5c9c
SB
1094 * @from: The list of pages to be migrated.
1095 * @get_new_page: The function used to allocate free pages to be used
1096 * as the target of the page migration.
68711a74
DR
1097 * @put_new_page: The function used to free target pages if migration
1098 * fails, or NULL if no special handling is necessary.
c73e5c9c
SB
1099 * @private: Private data to be passed on to get_new_page()
1100 * @mode: The migration mode that specifies the constraints for
1101 * page migration, if any.
1102 * @reason: The reason for page migration.
b20a3503 1103 *
c73e5c9c
SB
1104 * The function returns after 10 attempts or if no pages are movable any more
1105 * because the list has become empty or no retryable pages exist any more.
14e0f9bc 1106 * The caller should call putback_movable_pages() to return pages to the LRU
28bd6578 1107 * or free list only if ret != 0.
b20a3503 1108 *
c73e5c9c 1109 * Returns the number of pages that were not migrated, or an error code.
b20a3503 1110 */
9c620e2b 1111int migrate_pages(struct list_head *from, new_page_t get_new_page,
68711a74
DR
1112 free_page_t put_new_page, unsigned long private,
1113 enum migrate_mode mode, int reason)
b20a3503 1114{
e24f0b8f 1115 int retry = 1;
b20a3503 1116 int nr_failed = 0;
5647bc29 1117 int nr_succeeded = 0;
b20a3503
CL
1118 int pass = 0;
1119 struct page *page;
1120 struct page *page2;
1121 int swapwrite = current->flags & PF_SWAPWRITE;
1122 int rc;
1123
1124 if (!swapwrite)
1125 current->flags |= PF_SWAPWRITE;
1126
e24f0b8f
CL
1127 for(pass = 0; pass < 10 && retry; pass++) {
1128 retry = 0;
b20a3503 1129
e24f0b8f 1130 list_for_each_entry_safe(page, page2, from, lru) {
e24f0b8f 1131 cond_resched();
2d1db3b1 1132
31caf665
NH
1133 if (PageHuge(page))
1134 rc = unmap_and_move_huge_page(get_new_page,
68711a74
DR
1135 put_new_page, private, page,
1136 pass > 2, mode);
31caf665 1137 else
68711a74 1138 rc = unmap_and_move(get_new_page, put_new_page,
add05cec
NH
1139 private, page, pass > 2, mode,
1140 reason);
2d1db3b1 1141
e24f0b8f 1142 switch(rc) {
95a402c3
CL
1143 case -ENOMEM:
1144 goto out;
e24f0b8f 1145 case -EAGAIN:
2d1db3b1 1146 retry++;
e24f0b8f 1147 break;
78bd5209 1148 case MIGRATEPAGE_SUCCESS:
5647bc29 1149 nr_succeeded++;
e24f0b8f
CL
1150 break;
1151 default:
354a3363
NH
1152 /*
1153 * Permanent failure (-EBUSY, -ENOSYS, etc.):
1154 * unlike -EAGAIN case, the failed page is
1155 * removed from migration page list and not
1156 * retried in the next outer loop.
1157 */
2d1db3b1 1158 nr_failed++;
e24f0b8f 1159 break;
2d1db3b1 1160 }
b20a3503
CL
1161 }
1162 }
f2f81fb2
VB
1163 nr_failed += retry;
1164 rc = nr_failed;
95a402c3 1165out:
5647bc29
MG
1166 if (nr_succeeded)
1167 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1168 if (nr_failed)
1169 count_vm_events(PGMIGRATE_FAIL, nr_failed);
7b2a2d4a
MG
1170 trace_mm_migrate_pages(nr_succeeded, nr_failed, mode, reason);
1171
b20a3503
CL
1172 if (!swapwrite)
1173 current->flags &= ~PF_SWAPWRITE;
1174
78bd5209 1175 return rc;
b20a3503 1176}
95a402c3 1177
742755a1
CL
1178#ifdef CONFIG_NUMA
1179/*
1180 * Move a list of individual pages
1181 */
1182struct page_to_node {
1183 unsigned long addr;
1184 struct page *page;
1185 int node;
1186 int status;
1187};
1188
1189static struct page *new_page_node(struct page *p, unsigned long private,
1190 int **result)
1191{
1192 struct page_to_node *pm = (struct page_to_node *)private;
1193
1194 while (pm->node != MAX_NUMNODES && pm->page != p)
1195 pm++;
1196
1197 if (pm->node == MAX_NUMNODES)
1198 return NULL;
1199
1200 *result = &pm->status;
1201
e632a938
NH
1202 if (PageHuge(p))
1203 return alloc_huge_page_node(page_hstate(compound_head(p)),
1204 pm->node);
1205 else
96db800f 1206 return __alloc_pages_node(pm->node,
e97ca8e5 1207 GFP_HIGHUSER_MOVABLE | __GFP_THISNODE, 0);
742755a1
CL
1208}
1209
1210/*
1211 * Move a set of pages as indicated in the pm array. The addr
1212 * field must be set to the virtual address of the page to be moved
1213 * and the node number must contain a valid target node.
5e9a0f02 1214 * The pm array ends with node = MAX_NUMNODES.
742755a1 1215 */
5e9a0f02
BG
1216static int do_move_page_to_node_array(struct mm_struct *mm,
1217 struct page_to_node *pm,
1218 int migrate_all)
742755a1
CL
1219{
1220 int err;
1221 struct page_to_node *pp;
1222 LIST_HEAD(pagelist);
1223
1224 down_read(&mm->mmap_sem);
1225
1226 /*
1227 * Build a list of pages to migrate
1228 */
742755a1
CL
1229 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
1230 struct vm_area_struct *vma;
1231 struct page *page;
1232
742755a1
CL
1233 err = -EFAULT;
1234 vma = find_vma(mm, pp->addr);
70384dc6 1235 if (!vma || pp->addr < vma->vm_start || !vma_migratable(vma))
742755a1
CL
1236 goto set_status;
1237
d899844e
KS
1238 /* FOLL_DUMP to ignore special (like zero) pages */
1239 page = follow_page(vma, pp->addr,
1240 FOLL_GET | FOLL_SPLIT | FOLL_DUMP);
89f5b7da
LT
1241
1242 err = PTR_ERR(page);
1243 if (IS_ERR(page))
1244 goto set_status;
1245
742755a1
CL
1246 err = -ENOENT;
1247 if (!page)
1248 goto set_status;
1249
742755a1
CL
1250 pp->page = page;
1251 err = page_to_nid(page);
1252
1253 if (err == pp->node)
1254 /*
1255 * Node already in the right place
1256 */
1257 goto put_and_set;
1258
1259 err = -EACCES;
1260 if (page_mapcount(page) > 1 &&
1261 !migrate_all)
1262 goto put_and_set;
1263
e632a938 1264 if (PageHuge(page)) {
e66f17ff
NH
1265 if (PageHead(page))
1266 isolate_huge_page(page, &pagelist);
e632a938
NH
1267 goto put_and_set;
1268 }
1269
62695a84 1270 err = isolate_lru_page(page);
6d9c285a 1271 if (!err) {
62695a84 1272 list_add_tail(&page->lru, &pagelist);
6d9c285a
KM
1273 inc_zone_page_state(page, NR_ISOLATED_ANON +
1274 page_is_file_cache(page));
1275 }
742755a1
CL
1276put_and_set:
1277 /*
1278 * Either remove the duplicate refcount from
1279 * isolate_lru_page() or drop the page ref if it was
1280 * not isolated.
1281 */
1282 put_page(page);
1283set_status:
1284 pp->status = err;
1285 }
1286
e78bbfa8 1287 err = 0;
cf608ac1 1288 if (!list_empty(&pagelist)) {
68711a74 1289 err = migrate_pages(&pagelist, new_page_node, NULL,
9c620e2b 1290 (unsigned long)pm, MIGRATE_SYNC, MR_SYSCALL);
cf608ac1 1291 if (err)
e632a938 1292 putback_movable_pages(&pagelist);
cf608ac1 1293 }
742755a1
CL
1294
1295 up_read(&mm->mmap_sem);
1296 return err;
1297}
1298
5e9a0f02
BG
1299/*
1300 * Migrate an array of page address onto an array of nodes and fill
1301 * the corresponding array of status.
1302 */
3268c63e 1303static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
5e9a0f02
BG
1304 unsigned long nr_pages,
1305 const void __user * __user *pages,
1306 const int __user *nodes,
1307 int __user *status, int flags)
1308{
3140a227 1309 struct page_to_node *pm;
3140a227
BG
1310 unsigned long chunk_nr_pages;
1311 unsigned long chunk_start;
1312 int err;
5e9a0f02 1313
3140a227
BG
1314 err = -ENOMEM;
1315 pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
1316 if (!pm)
5e9a0f02 1317 goto out;
35282a2d
BG
1318
1319 migrate_prep();
1320
5e9a0f02 1321 /*
3140a227
BG
1322 * Store a chunk of page_to_node array in a page,
1323 * but keep the last one as a marker
5e9a0f02 1324 */
3140a227 1325 chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
5e9a0f02 1326
3140a227
BG
1327 for (chunk_start = 0;
1328 chunk_start < nr_pages;
1329 chunk_start += chunk_nr_pages) {
1330 int j;
5e9a0f02 1331
3140a227
BG
1332 if (chunk_start + chunk_nr_pages > nr_pages)
1333 chunk_nr_pages = nr_pages - chunk_start;
1334
1335 /* fill the chunk pm with addrs and nodes from user-space */
1336 for (j = 0; j < chunk_nr_pages; j++) {
1337 const void __user *p;
5e9a0f02
BG
1338 int node;
1339
3140a227
BG
1340 err = -EFAULT;
1341 if (get_user(p, pages + j + chunk_start))
1342 goto out_pm;
1343 pm[j].addr = (unsigned long) p;
1344
1345 if (get_user(node, nodes + j + chunk_start))
5e9a0f02
BG
1346 goto out_pm;
1347
1348 err = -ENODEV;
6f5a55f1
LT
1349 if (node < 0 || node >= MAX_NUMNODES)
1350 goto out_pm;
1351
389162c2 1352 if (!node_state(node, N_MEMORY))
5e9a0f02
BG
1353 goto out_pm;
1354
1355 err = -EACCES;
1356 if (!node_isset(node, task_nodes))
1357 goto out_pm;
1358
3140a227
BG
1359 pm[j].node = node;
1360 }
1361
1362 /* End marker for this chunk */
1363 pm[chunk_nr_pages].node = MAX_NUMNODES;
1364
1365 /* Migrate this chunk */
1366 err = do_move_page_to_node_array(mm, pm,
1367 flags & MPOL_MF_MOVE_ALL);
1368 if (err < 0)
1369 goto out_pm;
5e9a0f02 1370
5e9a0f02 1371 /* Return status information */
3140a227
BG
1372 for (j = 0; j < chunk_nr_pages; j++)
1373 if (put_user(pm[j].status, status + j + chunk_start)) {
5e9a0f02 1374 err = -EFAULT;
3140a227
BG
1375 goto out_pm;
1376 }
1377 }
1378 err = 0;
5e9a0f02
BG
1379
1380out_pm:
3140a227 1381 free_page((unsigned long)pm);
5e9a0f02
BG
1382out:
1383 return err;
1384}
1385
742755a1 1386/*
2f007e74 1387 * Determine the nodes of an array of pages and store it in an array of status.
742755a1 1388 */
80bba129
BG
1389static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1390 const void __user **pages, int *status)
742755a1 1391{
2f007e74 1392 unsigned long i;
2f007e74 1393
742755a1
CL
1394 down_read(&mm->mmap_sem);
1395
2f007e74 1396 for (i = 0; i < nr_pages; i++) {
80bba129 1397 unsigned long addr = (unsigned long)(*pages);
742755a1
CL
1398 struct vm_area_struct *vma;
1399 struct page *page;
c095adbc 1400 int err = -EFAULT;
2f007e74
BG
1401
1402 vma = find_vma(mm, addr);
70384dc6 1403 if (!vma || addr < vma->vm_start)
742755a1
CL
1404 goto set_status;
1405
d899844e
KS
1406 /* FOLL_DUMP to ignore special (like zero) pages */
1407 page = follow_page(vma, addr, FOLL_DUMP);
89f5b7da
LT
1408
1409 err = PTR_ERR(page);
1410 if (IS_ERR(page))
1411 goto set_status;
1412
d899844e 1413 err = page ? page_to_nid(page) : -ENOENT;
742755a1 1414set_status:
80bba129
BG
1415 *status = err;
1416
1417 pages++;
1418 status++;
1419 }
1420
1421 up_read(&mm->mmap_sem);
1422}
1423
1424/*
1425 * Determine the nodes of a user array of pages and store it in
1426 * a user array of status.
1427 */
1428static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1429 const void __user * __user *pages,
1430 int __user *status)
1431{
1432#define DO_PAGES_STAT_CHUNK_NR 16
1433 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1434 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
80bba129 1435
87b8d1ad
PA
1436 while (nr_pages) {
1437 unsigned long chunk_nr;
80bba129 1438
87b8d1ad
PA
1439 chunk_nr = nr_pages;
1440 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1441 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1442
1443 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1444 break;
80bba129
BG
1445
1446 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1447
87b8d1ad
PA
1448 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1449 break;
742755a1 1450
87b8d1ad
PA
1451 pages += chunk_nr;
1452 status += chunk_nr;
1453 nr_pages -= chunk_nr;
1454 }
1455 return nr_pages ? -EFAULT : 0;
742755a1
CL
1456}
1457
1458/*
1459 * Move a list of pages in the address space of the currently executing
1460 * process.
1461 */
938bb9f5
HC
1462SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1463 const void __user * __user *, pages,
1464 const int __user *, nodes,
1465 int __user *, status, int, flags)
742755a1 1466{
c69e8d9c 1467 const struct cred *cred = current_cred(), *tcred;
742755a1 1468 struct task_struct *task;
742755a1 1469 struct mm_struct *mm;
5e9a0f02 1470 int err;
3268c63e 1471 nodemask_t task_nodes;
742755a1
CL
1472
1473 /* Check flags */
1474 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1475 return -EINVAL;
1476
1477 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1478 return -EPERM;
1479
1480 /* Find the mm_struct */
a879bf58 1481 rcu_read_lock();
228ebcbe 1482 task = pid ? find_task_by_vpid(pid) : current;
742755a1 1483 if (!task) {
a879bf58 1484 rcu_read_unlock();
742755a1
CL
1485 return -ESRCH;
1486 }
3268c63e 1487 get_task_struct(task);
742755a1
CL
1488
1489 /*
1490 * Check if this process has the right to modify the specified
1491 * process. The right exists if the process has administrative
1492 * capabilities, superuser privileges or the same
1493 * userid as the target process.
1494 */
c69e8d9c 1495 tcred = __task_cred(task);
b38a86eb
EB
1496 if (!uid_eq(cred->euid, tcred->suid) && !uid_eq(cred->euid, tcred->uid) &&
1497 !uid_eq(cred->uid, tcred->suid) && !uid_eq(cred->uid, tcred->uid) &&
742755a1 1498 !capable(CAP_SYS_NICE)) {
c69e8d9c 1499 rcu_read_unlock();
742755a1 1500 err = -EPERM;
5e9a0f02 1501 goto out;
742755a1 1502 }
c69e8d9c 1503 rcu_read_unlock();
742755a1 1504
86c3a764
DQ
1505 err = security_task_movememory(task);
1506 if (err)
5e9a0f02 1507 goto out;
86c3a764 1508
3268c63e
CL
1509 task_nodes = cpuset_mems_allowed(task);
1510 mm = get_task_mm(task);
1511 put_task_struct(task);
1512
6e8b09ea
SL
1513 if (!mm)
1514 return -EINVAL;
1515
1516 if (nodes)
1517 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1518 nodes, status, flags);
1519 else
1520 err = do_pages_stat(mm, nr_pages, pages, status);
742755a1 1521
742755a1
CL
1522 mmput(mm);
1523 return err;
3268c63e
CL
1524
1525out:
1526 put_task_struct(task);
1527 return err;
742755a1 1528}
742755a1 1529
7039e1db
PZ
1530#ifdef CONFIG_NUMA_BALANCING
1531/*
1532 * Returns true if this is a safe migration target node for misplaced NUMA
1533 * pages. Currently it only checks the watermarks which crude
1534 */
1535static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
3abef4e6 1536 unsigned long nr_migrate_pages)
7039e1db
PZ
1537{
1538 int z;
1539 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
1540 struct zone *zone = pgdat->node_zones + z;
1541
1542 if (!populated_zone(zone))
1543 continue;
1544
6e543d57 1545 if (!zone_reclaimable(zone))
7039e1db
PZ
1546 continue;
1547
1548 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
1549 if (!zone_watermark_ok(zone, 0,
1550 high_wmark_pages(zone) +
1551 nr_migrate_pages,
1552 0, 0))
1553 continue;
1554 return true;
1555 }
1556 return false;
1557}
1558
1559static struct page *alloc_misplaced_dst_page(struct page *page,
1560 unsigned long data,
1561 int **result)
1562{
1563 int nid = (int) data;
1564 struct page *newpage;
1565
96db800f 1566 newpage = __alloc_pages_node(nid,
e97ca8e5
JW
1567 (GFP_HIGHUSER_MOVABLE |
1568 __GFP_THISNODE | __GFP_NOMEMALLOC |
1569 __GFP_NORETRY | __GFP_NOWARN) &
7039e1db 1570 ~GFP_IOFS, 0);
bac0382c 1571
7039e1db
PZ
1572 return newpage;
1573}
1574
a8f60772
MG
1575/*
1576 * page migration rate limiting control.
1577 * Do not migrate more than @pages_to_migrate in a @migrate_interval_millisecs
1578 * window of time. Default here says do not migrate more than 1280M per second.
1579 */
1580static unsigned int migrate_interval_millisecs __read_mostly = 100;
1581static unsigned int ratelimit_pages __read_mostly = 128 << (20 - PAGE_SHIFT);
1582
b32967ff 1583/* Returns true if the node is migrate rate-limited after the update */
1c30e017
MG
1584static bool numamigrate_update_ratelimit(pg_data_t *pgdat,
1585 unsigned long nr_pages)
7039e1db 1586{
a8f60772
MG
1587 /*
1588 * Rate-limit the amount of data that is being migrated to a node.
1589 * Optimal placement is no good if the memory bus is saturated and
1590 * all the time is being spent migrating!
1591 */
a8f60772 1592 if (time_after(jiffies, pgdat->numabalancing_migrate_next_window)) {
1c5e9c27 1593 spin_lock(&pgdat->numabalancing_migrate_lock);
a8f60772
MG
1594 pgdat->numabalancing_migrate_nr_pages = 0;
1595 pgdat->numabalancing_migrate_next_window = jiffies +
1596 msecs_to_jiffies(migrate_interval_millisecs);
1c5e9c27 1597 spin_unlock(&pgdat->numabalancing_migrate_lock);
a8f60772 1598 }
af1839d7
MG
1599 if (pgdat->numabalancing_migrate_nr_pages > ratelimit_pages) {
1600 trace_mm_numa_migrate_ratelimit(current, pgdat->node_id,
1601 nr_pages);
1c5e9c27 1602 return true;
af1839d7 1603 }
1c5e9c27
MG
1604
1605 /*
1606 * This is an unlocked non-atomic update so errors are possible.
1607 * The consequences are failing to migrate when we potentiall should
1608 * have which is not severe enough to warrant locking. If it is ever
1609 * a problem, it can be converted to a per-cpu counter.
1610 */
1611 pgdat->numabalancing_migrate_nr_pages += nr_pages;
1612 return false;
b32967ff
MG
1613}
1614
1c30e017 1615static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
b32967ff 1616{
340ef390 1617 int page_lru;
a8f60772 1618
309381fe 1619 VM_BUG_ON_PAGE(compound_order(page) && !PageTransHuge(page), page);
3abef4e6 1620
7039e1db 1621 /* Avoid migrating to a node that is nearly full */
340ef390
HD
1622 if (!migrate_balanced_pgdat(pgdat, 1UL << compound_order(page)))
1623 return 0;
7039e1db 1624
340ef390
HD
1625 if (isolate_lru_page(page))
1626 return 0;
7039e1db 1627
340ef390
HD
1628 /*
1629 * migrate_misplaced_transhuge_page() skips page migration's usual
1630 * check on page_count(), so we must do it here, now that the page
1631 * has been isolated: a GUP pin, or any other pin, prevents migration.
1632 * The expected page count is 3: 1 for page's mapcount and 1 for the
1633 * caller's pin and 1 for the reference taken by isolate_lru_page().
1634 */
1635 if (PageTransHuge(page) && page_count(page) != 3) {
1636 putback_lru_page(page);
1637 return 0;
7039e1db
PZ
1638 }
1639
340ef390
HD
1640 page_lru = page_is_file_cache(page);
1641 mod_zone_page_state(page_zone(page), NR_ISOLATED_ANON + page_lru,
1642 hpage_nr_pages(page));
1643
149c33e1 1644 /*
340ef390
HD
1645 * Isolating the page has taken another reference, so the
1646 * caller's reference can be safely dropped without the page
1647 * disappearing underneath us during migration.
149c33e1
MG
1648 */
1649 put_page(page);
340ef390 1650 return 1;
b32967ff
MG
1651}
1652
de466bd6
MG
1653bool pmd_trans_migrating(pmd_t pmd)
1654{
1655 struct page *page = pmd_page(pmd);
1656 return PageLocked(page);
1657}
1658
b32967ff
MG
1659/*
1660 * Attempt to migrate a misplaced page to the specified destination
1661 * node. Caller is expected to have an elevated reference count on
1662 * the page that will be dropped by this function before returning.
1663 */
1bc115d8
MG
1664int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
1665 int node)
b32967ff
MG
1666{
1667 pg_data_t *pgdat = NODE_DATA(node);
340ef390 1668 int isolated;
b32967ff
MG
1669 int nr_remaining;
1670 LIST_HEAD(migratepages);
1671
1672 /*
1bc115d8
MG
1673 * Don't migrate file pages that are mapped in multiple processes
1674 * with execute permissions as they are probably shared libraries.
b32967ff 1675 */
1bc115d8
MG
1676 if (page_mapcount(page) != 1 && page_is_file_cache(page) &&
1677 (vma->vm_flags & VM_EXEC))
b32967ff 1678 goto out;
b32967ff
MG
1679
1680 /*
1681 * Rate-limit the amount of data that is being migrated to a node.
1682 * Optimal placement is no good if the memory bus is saturated and
1683 * all the time is being spent migrating!
1684 */
340ef390 1685 if (numamigrate_update_ratelimit(pgdat, 1))
b32967ff 1686 goto out;
b32967ff
MG
1687
1688 isolated = numamigrate_isolate_page(pgdat, page);
1689 if (!isolated)
1690 goto out;
1691
1692 list_add(&page->lru, &migratepages);
9c620e2b 1693 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
68711a74
DR
1694 NULL, node, MIGRATE_ASYNC,
1695 MR_NUMA_MISPLACED);
b32967ff 1696 if (nr_remaining) {
59c82b70
JK
1697 if (!list_empty(&migratepages)) {
1698 list_del(&page->lru);
1699 dec_zone_page_state(page, NR_ISOLATED_ANON +
1700 page_is_file_cache(page));
1701 putback_lru_page(page);
1702 }
b32967ff
MG
1703 isolated = 0;
1704 } else
1705 count_vm_numa_event(NUMA_PAGE_MIGRATE);
7039e1db 1706 BUG_ON(!list_empty(&migratepages));
7039e1db 1707 return isolated;
340ef390
HD
1708
1709out:
1710 put_page(page);
1711 return 0;
7039e1db 1712}
220018d3 1713#endif /* CONFIG_NUMA_BALANCING */
b32967ff 1714
220018d3 1715#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
340ef390
HD
1716/*
1717 * Migrates a THP to a given target node. page must be locked and is unlocked
1718 * before returning.
1719 */
b32967ff
MG
1720int migrate_misplaced_transhuge_page(struct mm_struct *mm,
1721 struct vm_area_struct *vma,
1722 pmd_t *pmd, pmd_t entry,
1723 unsigned long address,
1724 struct page *page, int node)
1725{
c4088ebd 1726 spinlock_t *ptl;
b32967ff
MG
1727 pg_data_t *pgdat = NODE_DATA(node);
1728 int isolated = 0;
1729 struct page *new_page = NULL;
b32967ff 1730 int page_lru = page_is_file_cache(page);
f714f4f2
MG
1731 unsigned long mmun_start = address & HPAGE_PMD_MASK;
1732 unsigned long mmun_end = mmun_start + HPAGE_PMD_SIZE;
2b4847e7 1733 pmd_t orig_entry;
b32967ff 1734
b32967ff
MG
1735 /*
1736 * Rate-limit the amount of data that is being migrated to a node.
1737 * Optimal placement is no good if the memory bus is saturated and
1738 * all the time is being spent migrating!
1739 */
d28d4335 1740 if (numamigrate_update_ratelimit(pgdat, HPAGE_PMD_NR))
b32967ff
MG
1741 goto out_dropref;
1742
1743 new_page = alloc_pages_node(node,
e97ca8e5
JW
1744 (GFP_TRANSHUGE | __GFP_THISNODE) & ~__GFP_WAIT,
1745 HPAGE_PMD_ORDER);
340ef390
HD
1746 if (!new_page)
1747 goto out_fail;
1748
b32967ff 1749 isolated = numamigrate_isolate_page(pgdat, page);
340ef390 1750 if (!isolated) {
b32967ff 1751 put_page(new_page);
340ef390 1752 goto out_fail;
b32967ff
MG
1753 }
1754
b0943d61
MG
1755 if (mm_tlb_flush_pending(mm))
1756 flush_tlb_range(vma, mmun_start, mmun_end);
1757
b32967ff
MG
1758 /* Prepare a page as a migration target */
1759 __set_page_locked(new_page);
1760 SetPageSwapBacked(new_page);
1761
1762 /* anon mapping, we can simply copy page->mapping to the new page: */
1763 new_page->mapping = page->mapping;
1764 new_page->index = page->index;
1765 migrate_page_copy(new_page, page);
1766 WARN_ON(PageLRU(new_page));
1767
1768 /* Recheck the target PMD */
f714f4f2 1769 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
c4088ebd 1770 ptl = pmd_lock(mm, pmd);
2b4847e7
MG
1771 if (unlikely(!pmd_same(*pmd, entry) || page_count(page) != 2)) {
1772fail_putback:
c4088ebd 1773 spin_unlock(ptl);
f714f4f2 1774 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
b32967ff
MG
1775
1776 /* Reverse changes made by migrate_page_copy() */
1777 if (TestClearPageActive(new_page))
1778 SetPageActive(page);
1779 if (TestClearPageUnevictable(new_page))
1780 SetPageUnevictable(page);
b32967ff
MG
1781
1782 unlock_page(new_page);
1783 put_page(new_page); /* Free it */
1784
a54a407f
MG
1785 /* Retake the callers reference and putback on LRU */
1786 get_page(page);
b32967ff 1787 putback_lru_page(page);
a54a407f
MG
1788 mod_zone_page_state(page_zone(page),
1789 NR_ISOLATED_ANON + page_lru, -HPAGE_PMD_NR);
eb4489f6
MG
1790
1791 goto out_unlock;
b32967ff
MG
1792 }
1793
2b4847e7 1794 orig_entry = *pmd;
b32967ff 1795 entry = mk_pmd(new_page, vma->vm_page_prot);
b32967ff 1796 entry = pmd_mkhuge(entry);
2b4847e7 1797 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
b32967ff 1798
2b4847e7
MG
1799 /*
1800 * Clear the old entry under pagetable lock and establish the new PTE.
1801 * Any parallel GUP will either observe the old page blocking on the
1802 * page lock, block on the page table lock or observe the new page.
1803 * The SetPageUptodate on the new page and page_add_new_anon_rmap
1804 * guarantee the copy is visible before the pagetable update.
1805 */
f714f4f2 1806 flush_cache_range(vma, mmun_start, mmun_end);
11de9927 1807 page_add_anon_rmap(new_page, vma, mmun_start);
8809aa2d 1808 pmdp_huge_clear_flush_notify(vma, mmun_start, pmd);
f714f4f2
MG
1809 set_pmd_at(mm, mmun_start, pmd, entry);
1810 flush_tlb_range(vma, mmun_start, mmun_end);
ce4a9cc5 1811 update_mmu_cache_pmd(vma, address, &entry);
2b4847e7
MG
1812
1813 if (page_count(page) != 2) {
f714f4f2
MG
1814 set_pmd_at(mm, mmun_start, pmd, orig_entry);
1815 flush_tlb_range(vma, mmun_start, mmun_end);
34ee645e 1816 mmu_notifier_invalidate_range(mm, mmun_start, mmun_end);
2b4847e7
MG
1817 update_mmu_cache_pmd(vma, address, &entry);
1818 page_remove_rmap(new_page);
1819 goto fail_putback;
1820 }
1821
51afb12b 1822 mlock_migrate_page(new_page, page);
45637bab
HD
1823 set_page_memcg(new_page, page_memcg(page));
1824 set_page_memcg(page, NULL);
b32967ff 1825 page_remove_rmap(page);
2b4847e7 1826
c4088ebd 1827 spin_unlock(ptl);
f714f4f2 1828 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
b32967ff 1829
11de9927
MG
1830 /* Take an "isolate" reference and put new page on the LRU. */
1831 get_page(new_page);
1832 putback_lru_page(new_page);
1833
b32967ff
MG
1834 unlock_page(new_page);
1835 unlock_page(page);
1836 put_page(page); /* Drop the rmap reference */
1837 put_page(page); /* Drop the LRU isolation reference */
1838
1839 count_vm_events(PGMIGRATE_SUCCESS, HPAGE_PMD_NR);
1840 count_vm_numa_events(NUMA_PAGE_MIGRATE, HPAGE_PMD_NR);
1841
b32967ff
MG
1842 mod_zone_page_state(page_zone(page),
1843 NR_ISOLATED_ANON + page_lru,
1844 -HPAGE_PMD_NR);
1845 return isolated;
1846
340ef390
HD
1847out_fail:
1848 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
b32967ff 1849out_dropref:
2b4847e7
MG
1850 ptl = pmd_lock(mm, pmd);
1851 if (pmd_same(*pmd, entry)) {
4d942466 1852 entry = pmd_modify(entry, vma->vm_page_prot);
f714f4f2 1853 set_pmd_at(mm, mmun_start, pmd, entry);
2b4847e7
MG
1854 update_mmu_cache_pmd(vma, address, &entry);
1855 }
1856 spin_unlock(ptl);
a54a407f 1857
eb4489f6 1858out_unlock:
340ef390 1859 unlock_page(page);
b32967ff 1860 put_page(page);
b32967ff
MG
1861 return 0;
1862}
7039e1db
PZ
1863#endif /* CONFIG_NUMA_BALANCING */
1864
1865#endif /* CONFIG_NUMA */