blob: cd4fd10c4ec3aebbea946ce3a2c862cf29688a40 [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/*
Rafael Aquini5733c7d2012-12-11 16:02:47 -080075 * Put previously isolated pages back onto the appropriate lists
76 * from where they were once taken off for compaction/migration.
77 *
Joonsoo Kim59c82b72014-01-21 15:51:17 -080078 * 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().
Rafael Aquini5733c7d2012-12-11 16:02:47 -080081 */
82void putback_movable_pages(struct list_head *l)
83{
84 struct page *page;
85 struct page *page2;
86
87 list_for_each_entry_safe(page, page2, l, lru) {
Naoya Horiguchi31caf662013-09-11 14:21:59 -070088 if (unlikely(PageHuge(page))) {
89 putback_active_hugepage(page);
90 continue;
91 }
Rafael Aquini5733c7d2012-12-11 16:02:47 -080092 list_del(&page->lru);
93 dec_zone_page_state(page, NR_ISOLATED_ANON +
94 page_is_file_cache(page));
Rafael Aquini117aad12013-09-30 13:45:16 -070095 if (unlikely(isolated_balloon_page(page)))
Rafael Aquinibf6bddf2012-12-11 16:02:42 -080096 balloon_page_putback(page);
97 else
98 putback_lru_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -080099 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800100}
101
Christoph Lameter06972122006-06-23 02:03:35 -0700102/*
103 * Restore a potential migration pte to a working pte entry
104 */
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800105static int remove_migration_pte(struct page *new, struct vm_area_struct *vma,
106 unsigned long addr, void *old)
Christoph Lameter06972122006-06-23 02:03:35 -0700107{
108 struct mm_struct *mm = vma->vm_mm;
109 swp_entry_t entry;
Christoph Lameter06972122006-06-23 02:03:35 -0700110 pmd_t *pmd;
111 pte_t *ptep, pte;
112 spinlock_t *ptl;
113
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900114 if (unlikely(PageHuge(new))) {
115 ptep = huge_pte_offset(mm, addr);
116 if (!ptep)
117 goto out;
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800118 ptl = huge_pte_lockptr(hstate_vma(vma), mm, ptep);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900119 } else {
Bob Liu62190492012-12-11 16:00:37 -0800120 pmd = mm_find_pmd(mm, addr);
121 if (!pmd)
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900122 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700123
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900124 ptep = pte_offset_map(pmd, addr);
Christoph Lameter06972122006-06-23 02:03:35 -0700125
Hugh Dickins486cf462011-10-19 12:50:35 -0700126 /*
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 */
Christoph Lameter06972122006-06-23 02:03:35 -0700130
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900131 ptl = pte_lockptr(mm, pmd);
132 }
133
Christoph Lameter06972122006-06-23 02:03:35 -0700134 spin_lock(ptl);
135 pte = *ptep;
136 if (!is_swap_pte(pte))
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800137 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700138
139 entry = pte_to_swp_entry(pte);
140
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800141 if (!is_migration_entry(entry) ||
142 migration_entry_to_page(entry) != old)
143 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700144
Christoph Lameter06972122006-06-23 02:03:35 -0700145 get_page(new);
146 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
Cyrill Gorcunovc3d16e12013-10-16 13:46:51 -0700147 if (pte_swp_soft_dirty(*ptep))
148 pte = pte_mksoft_dirty(pte);
Mel Gormand3cb8bf2014-10-02 19:47:41 +0100149
150 /* Recheck VMA as permissions can change since migration started */
Christoph Lameter06972122006-06-23 02:03:35 -0700151 if (is_write_migration_entry(entry))
Mel Gormand3cb8bf2014-10-02 19:47:41 +0100152 pte = maybe_mkwrite(pte, vma);
153
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200154#ifdef CONFIG_HUGETLB_PAGE
Tony Lube7517d2013-02-04 14:28:46 -0800155 if (PageHuge(new)) {
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900156 pte = pte_mkhuge(pte);
Tony Lube7517d2013-02-04 14:28:46 -0800157 pte = arch_make_huge_pte(pte, vma, new, 0);
158 }
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200159#endif
Leonid Yegoshinc2cc4992013-05-24 15:55:18 -0700160 flush_dcache_page(new);
Christoph Lameter06972122006-06-23 02:03:35 -0700161 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700162
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900163 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))
Christoph Lameter04e62a22006-06-23 02:03:38 -0700169 page_add_anon_rmap(new, vma, addr);
170 else
171 page_add_file_rmap(new);
172
173 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +0000174 update_mmu_cache(vma, addr, ptep);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800175unlock:
Christoph Lameter06972122006-06-23 02:03:35 -0700176 pte_unmap_unlock(ptep, ptl);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800177out:
178 return SWAP_AGAIN;
Christoph Lameter06972122006-06-23 02:03:35 -0700179}
180
181/*
Hugh Dickins7e09e732014-03-20 21:52:17 -0700182 * Congratulations to trinity for discovering this bug.
183 * mm/fremap.c's remap_file_pages() accepts any range within a single vma to
184 * convert that vma to VM_NONLINEAR; and generic_file_remap_pages() will then
185 * replace the specified range by file ptes throughout (maybe populated after).
186 * If page migration finds a page within that range, while it's still located
187 * by vma_interval_tree rather than lost to i_mmap_nonlinear list, no problem:
188 * zap_pte() clears the temporary migration entry before mmap_sem is dropped.
189 * But if the migrating page is in a part of the vma outside the range to be
190 * remapped, then it will not be cleared, and remove_migration_ptes() needs to
191 * deal with it. Fortunately, this part of the vma is of course still linear,
192 * so we just need to use linear location on the nonlinear list.
193 */
194static int remove_linear_migration_ptes_from_nonlinear(struct page *page,
195 struct address_space *mapping, void *arg)
196{
197 struct vm_area_struct *vma;
198 /* hugetlbfs does not support remap_pages, so no huge pgoff worries */
199 pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
200 unsigned long addr;
201
202 list_for_each_entry(vma,
203 &mapping->i_mmap_nonlinear, shared.nonlinear) {
204
205 addr = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
206 if (addr >= vma->vm_start && addr < vma->vm_end)
207 remove_migration_pte(page, vma, addr, arg);
208 }
209 return SWAP_AGAIN;
210}
211
212/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700213 * Get rid of all migration entries and replace them by
214 * references to the indicated page.
215 */
216static void remove_migration_ptes(struct page *old, struct page *new)
217{
Joonsoo Kim051ac832014-01-21 15:49:48 -0800218 struct rmap_walk_control rwc = {
219 .rmap_one = remove_migration_pte,
220 .arg = old,
Hugh Dickins7e09e732014-03-20 21:52:17 -0700221 .file_nonlinear = remove_linear_migration_ptes_from_nonlinear,
Joonsoo Kim051ac832014-01-21 15:49:48 -0800222 };
223
224 rmap_walk(new, &rwc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700225}
226
227/*
Christoph Lameter06972122006-06-23 02:03:35 -0700228 * Something used the pte of a page under migration. We need to
229 * get to the page and wait until migration is finished.
230 * When we return from this function the fault will be retried.
Christoph Lameter06972122006-06-23 02:03:35 -0700231 */
Naoya Horiguchi35d44e92015-02-11 15:25:22 -0800232void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700233 spinlock_t *ptl)
Christoph Lameter06972122006-06-23 02:03:35 -0700234{
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700235 pte_t pte;
Christoph Lameter06972122006-06-23 02:03:35 -0700236 swp_entry_t entry;
237 struct page *page;
238
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700239 spin_lock(ptl);
Christoph Lameter06972122006-06-23 02:03:35 -0700240 pte = *ptep;
241 if (!is_swap_pte(pte))
242 goto out;
243
244 entry = pte_to_swp_entry(pte);
245 if (!is_migration_entry(entry))
246 goto out;
247
248 page = migration_entry_to_page(entry);
249
Nick Piggine2867812008-07-25 19:45:30 -0700250 /*
251 * Once radix-tree replacement of page migration started, page_count
252 * *must* be zero. And, we don't want to call wait_on_page_locked()
253 * against a page without get_page().
254 * So, we use get_page_unless_zero(), here. Even failed, page fault
255 * will occur again.
256 */
257 if (!get_page_unless_zero(page))
258 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700259 pte_unmap_unlock(ptep, ptl);
260 wait_on_page_locked(page);
261 put_page(page);
262 return;
263out:
264 pte_unmap_unlock(ptep, ptl);
265}
266
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700267void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
268 unsigned long address)
269{
270 spinlock_t *ptl = pte_lockptr(mm, pmd);
271 pte_t *ptep = pte_offset_map(pmd, address);
272 __migration_entry_wait(mm, ptep, ptl);
273}
274
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800275void migration_entry_wait_huge(struct vm_area_struct *vma,
276 struct mm_struct *mm, pte_t *pte)
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700277{
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800278 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), mm, pte);
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700279 __migration_entry_wait(mm, pte, ptl);
280}
281
Mel Gormanb969c4a2012-01-12 17:19:34 -0800282#ifdef CONFIG_BLOCK
283/* Returns true if all buffers are successfully locked */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800284static bool buffer_migrate_lock_buffers(struct buffer_head *head,
285 enum migrate_mode mode)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800286{
287 struct buffer_head *bh = head;
288
289 /* Simple case, sync compaction */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800290 if (mode != MIGRATE_ASYNC) {
Mel Gormanb969c4a2012-01-12 17:19:34 -0800291 do {
292 get_bh(bh);
293 lock_buffer(bh);
294 bh = bh->b_this_page;
295
296 } while (bh != head);
297
298 return true;
299 }
300
301 /* async case, we cannot block on lock_buffer so use trylock_buffer */
302 do {
303 get_bh(bh);
304 if (!trylock_buffer(bh)) {
305 /*
306 * We failed to lock the buffer and cannot stall in
307 * async migration. Release the taken locks
308 */
309 struct buffer_head *failed_bh = bh;
310 put_bh(failed_bh);
311 bh = head;
312 while (bh != failed_bh) {
313 unlock_buffer(bh);
314 put_bh(bh);
315 bh = bh->b_this_page;
316 }
317 return false;
318 }
319
320 bh = bh->b_this_page;
321 } while (bh != head);
322 return true;
323}
324#else
325static inline bool buffer_migrate_lock_buffers(struct buffer_head *head,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800326 enum migrate_mode mode)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800327{
328 return true;
329}
330#endif /* CONFIG_BLOCK */
331
Christoph Lameterb20a3502006-03-22 00:09:12 -0800332/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700333 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700334 *
335 * The number of remaining references must be:
336 * 1 for anonymous pages without a mapping
337 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100338 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800339 */
Gu Zheng36bc08c2013-07-16 17:56:16 +0800340int migrate_page_move_mapping(struct address_space *mapping,
Mel Gormanb969c4a2012-01-12 17:19:34 -0800341 struct page *newpage, struct page *page,
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500342 struct buffer_head *head, enum migrate_mode mode,
343 int extra_count)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800344{
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500345 int expected_count = 1 + extra_count;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800346 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800347
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700348 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700349 /* Anonymous page without mapping */
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500350 if (page_count(page) != expected_count)
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700351 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800352 return MIGRATEPAGE_SUCCESS;
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700353 }
354
Nick Piggin19fd6232008-07-25 19:45:32 -0700355 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800356
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800357 pslot = radix_tree_lookup_slot(&mapping->page_tree,
358 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800359
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500360 expected_count += 1 + page_has_private(page);
Nick Piggine2867812008-07-25 19:45:30 -0700361 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800362 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700363 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700364 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800365 }
366
Nick Piggine2867812008-07-25 19:45:30 -0700367 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700368 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700369 return -EAGAIN;
370 }
371
Christoph Lameterb20a3502006-03-22 00:09:12 -0800372 /*
Mel Gormanb969c4a2012-01-12 17:19:34 -0800373 * In the async migration case of moving a page with buffers, lock the
374 * buffers using trylock before the mapping is moved. If the mapping
375 * was moved, we later failed to lock the buffers and could not move
376 * the mapping back due to an elevated page count, we would have to
377 * block waiting on other references to be dropped.
378 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800379 if (mode == MIGRATE_ASYNC && head &&
380 !buffer_migrate_lock_buffers(head, mode)) {
Mel Gormanb969c4a2012-01-12 17:19:34 -0800381 page_unfreeze_refs(page, expected_count);
382 spin_unlock_irq(&mapping->tree_lock);
383 return -EAGAIN;
384 }
385
386 /*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800387 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800388 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800389 get_page(newpage); /* add cache reference */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800390 if (PageSwapCache(page)) {
391 SetPageSwapCache(newpage);
392 set_page_private(newpage, page_private(page));
393 }
394
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800395 radix_tree_replace_slot(pslot, newpage);
396
397 /*
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800398 * Drop cache reference from old page by unfreezing
399 * to one less reference.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800400 * We know this isn't the last reference.
401 */
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800402 page_unfreeze_refs(page, expected_count - 1);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800403
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700404 /*
405 * If moved to a different zone then also account
406 * the page for that zone. Other VM counters will be
407 * taken care of when we establish references to the
408 * new page and drop references to the old page.
409 *
410 * Note that anonymous pages are accounted for
411 * via NR_FILE_PAGES and NR_ANON_PAGES if they
412 * are mapped to swap space.
413 */
414 __dec_zone_page_state(page, NR_FILE_PAGES);
415 __inc_zone_page_state(newpage, NR_FILE_PAGES);
Andrea Arcangeli99a15e22011-06-16 12:56:19 -0700416 if (!PageSwapCache(page) && PageSwapBacked(page)) {
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700417 __dec_zone_page_state(page, NR_SHMEM);
418 __inc_zone_page_state(newpage, NR_SHMEM);
419 }
Nick Piggin19fd6232008-07-25 19:45:32 -0700420 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800421
Rafael Aquini78bd5202012-12-11 16:02:31 -0800422 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800423}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800424
425/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900426 * The expected number of remaining references is the same as that
427 * of migrate_page_move_mapping().
428 */
429int migrate_huge_page_move_mapping(struct address_space *mapping,
430 struct page *newpage, struct page *page)
431{
432 int expected_count;
433 void **pslot;
434
435 if (!mapping) {
436 if (page_count(page) != 1)
437 return -EAGAIN;
Rafael Aquini78bd5202012-12-11 16:02:31 -0800438 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900439 }
440
441 spin_lock_irq(&mapping->tree_lock);
442
443 pslot = radix_tree_lookup_slot(&mapping->page_tree,
444 page_index(page));
445
446 expected_count = 2 + page_has_private(page);
447 if (page_count(page) != expected_count ||
Mel Gorman29c1f672011-01-13 15:47:21 -0800448 radix_tree_deref_slot_protected(pslot, &mapping->tree_lock) != page) {
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900449 spin_unlock_irq(&mapping->tree_lock);
450 return -EAGAIN;
451 }
452
453 if (!page_freeze_refs(page, expected_count)) {
454 spin_unlock_irq(&mapping->tree_lock);
455 return -EAGAIN;
456 }
457
458 get_page(newpage);
459
460 radix_tree_replace_slot(pslot, newpage);
461
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800462 page_unfreeze_refs(page, expected_count - 1);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900463
464 spin_unlock_irq(&mapping->tree_lock);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800465 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900466}
467
468/*
Dave Hansen30b0a102013-11-21 14:31:58 -0800469 * Gigantic pages are so large that we do not guarantee that page++ pointer
470 * arithmetic will work across the entire page. We need something more
471 * specialized.
472 */
473static void __copy_gigantic_page(struct page *dst, struct page *src,
474 int nr_pages)
475{
476 int i;
477 struct page *dst_base = dst;
478 struct page *src_base = src;
479
480 for (i = 0; i < nr_pages; ) {
481 cond_resched();
482 copy_highpage(dst, src);
483
484 i++;
485 dst = mem_map_next(dst, dst_base, i);
486 src = mem_map_next(src, src_base, i);
487 }
488}
489
490static void copy_huge_page(struct page *dst, struct page *src)
491{
492 int i;
493 int nr_pages;
494
495 if (PageHuge(src)) {
496 /* hugetlbfs page */
497 struct hstate *h = page_hstate(src);
498 nr_pages = pages_per_huge_page(h);
499
500 if (unlikely(nr_pages > MAX_ORDER_NR_PAGES)) {
501 __copy_gigantic_page(dst, src, nr_pages);
502 return;
503 }
504 } else {
505 /* thp page */
506 BUG_ON(!PageTransHuge(src));
507 nr_pages = hpage_nr_pages(src);
508 }
509
510 for (i = 0; i < nr_pages; i++) {
511 cond_resched();
512 copy_highpage(dst + i, src + i);
513 }
514}
515
516/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800517 * Copy the page to its new location
518 */
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900519void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800520{
Rik van Riel7851a452013-10-07 11:29:23 +0100521 int cpupid;
522
Mel Gormanb32967f2012-11-19 12:35:47 +0000523 if (PageHuge(page) || PageTransHuge(page))
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900524 copy_huge_page(newpage, page);
525 else
526 copy_highpage(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800527
528 if (PageError(page))
529 SetPageError(newpage);
530 if (PageReferenced(page))
531 SetPageReferenced(newpage);
532 if (PageUptodate(page))
533 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700534 if (TestClearPageActive(page)) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800535 VM_BUG_ON_PAGE(PageUnevictable(page), page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800536 SetPageActive(newpage);
Lee Schermerhorn418b27e2009-12-14 17:59:54 -0800537 } else if (TestClearPageUnevictable(page))
538 SetPageUnevictable(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800539 if (PageChecked(page))
540 SetPageChecked(newpage);
541 if (PageMappedToDisk(page))
542 SetPageMappedToDisk(newpage);
543
544 if (PageDirty(page)) {
545 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700546 /*
547 * Want to mark the page and the radix tree as dirty, and
548 * redo the accounting that clear_page_dirty_for_io undid,
549 * but we can't use set_page_dirty because that function
550 * is actually a signal that all of the page has become dirty.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300551 * Whereas only part of our page may be dirty.
Nick Piggin3a902c52008-04-30 00:55:16 -0700552 */
Hugh Dickins752dc182012-06-02 00:27:47 -0700553 if (PageSwapBacked(page))
554 SetPageDirty(newpage);
555 else
556 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800557 }
558
Rik van Riel7851a452013-10-07 11:29:23 +0100559 /*
560 * Copy NUMA information to the new page, to prevent over-eager
561 * future migrations of this same page.
562 */
563 cpupid = page_cpupid_xchg_last(page, -1);
564 page_cpupid_xchg_last(newpage, cpupid);
565
Nick Pigginb291f002008-10-18 20:26:44 -0700566 mlock_migrate_page(newpage, page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800567 ksm_migrate_page(newpage, page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800568 /*
569 * Please do not reorder this without considering how mm/ksm.c's
570 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
571 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800572 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800573 ClearPagePrivate(page);
574 set_page_private(page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800575
576 /*
577 * If any waiters have accumulated on the new page then
578 * wake them up.
579 */
580 if (PageWriteback(newpage))
581 end_page_writeback(newpage);
582}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800583
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700584/************************************************************
585 * Migration functions
586 ***********************************************************/
587
Christoph Lameterb20a3502006-03-22 00:09:12 -0800588/*
589 * Common logic to directly migrate a single page suitable for
David Howells266cf652009-04-03 16:42:36 +0100590 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800591 *
592 * Pages are locked upon entry and exit.
593 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700594int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800595 struct page *newpage, struct page *page,
596 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800597{
598 int rc;
599
600 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
601
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500602 rc = migrate_page_move_mapping(mapping, newpage, page, NULL, mode, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800603
Rafael Aquini78bd5202012-12-11 16:02:31 -0800604 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800605 return rc;
606
607 migrate_page_copy(newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800608 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800609}
610EXPORT_SYMBOL(migrate_page);
611
David Howells93614012006-09-30 20:45:40 +0200612#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800613/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700614 * Migration function for pages with buffers. This function can only be used
615 * if the underlying filesystem guarantees that no other references to "page"
616 * exist.
617 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700618int buffer_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800619 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700620{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700621 struct buffer_head *bh, *head;
622 int rc;
623
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700624 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800625 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700626
627 head = page_buffers(page);
628
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500629 rc = migrate_page_move_mapping(mapping, newpage, page, head, mode, 0);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700630
Rafael Aquini78bd5202012-12-11 16:02:31 -0800631 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700632 return rc;
633
Mel Gormanb969c4a2012-01-12 17:19:34 -0800634 /*
635 * In the async case, migrate_page_move_mapping locked the buffers
636 * with an IRQ-safe spinlock held. In the sync case, the buffers
637 * need to be locked now
638 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800639 if (mode != MIGRATE_ASYNC)
640 BUG_ON(!buffer_migrate_lock_buffers(head, mode));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700641
642 ClearPagePrivate(page);
643 set_page_private(newpage, page_private(page));
644 set_page_private(page, 0);
645 put_page(page);
646 get_page(newpage);
647
648 bh = head;
649 do {
650 set_bh_page(bh, newpage, bh_offset(bh));
651 bh = bh->b_this_page;
652
653 } while (bh != head);
654
655 SetPagePrivate(newpage);
656
657 migrate_page_copy(newpage, page);
658
659 bh = head;
660 do {
661 unlock_buffer(bh);
662 put_bh(bh);
663 bh = bh->b_this_page;
664
665 } while (bh != head);
666
Rafael Aquini78bd5202012-12-11 16:02:31 -0800667 return MIGRATEPAGE_SUCCESS;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700668}
669EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200670#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700671
Christoph Lameter04e62a22006-06-23 02:03:38 -0700672/*
673 * Writeback a page to clean the dirty state
674 */
675static int writeout(struct address_space *mapping, struct page *page)
676{
677 struct writeback_control wbc = {
678 .sync_mode = WB_SYNC_NONE,
679 .nr_to_write = 1,
680 .range_start = 0,
681 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700682 .for_reclaim = 1
683 };
684 int rc;
685
686 if (!mapping->a_ops->writepage)
687 /* No write method for the address space */
688 return -EINVAL;
689
690 if (!clear_page_dirty_for_io(page))
691 /* Someone else already triggered a write */
692 return -EAGAIN;
693
694 /*
695 * A dirty page may imply that the underlying filesystem has
696 * the page on some queue. So the page must be clean for
697 * migration. Writeout may mean we loose the lock and the
698 * page state is no longer what we checked for earlier.
699 * At this point we know that the migration attempt cannot
700 * be successful.
701 */
702 remove_migration_ptes(page, page);
703
704 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700705
706 if (rc != AOP_WRITEPAGE_ACTIVATE)
707 /* unlocked. Relock */
708 lock_page(page);
709
Hugh Dickinsbda85502008-11-19 15:36:36 -0800710 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700711}
712
713/*
714 * Default handling if a filesystem does not provide a migration function.
715 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700716static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800717 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700718{
Mel Gormanb969c4a2012-01-12 17:19:34 -0800719 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800720 /* Only writeback pages in full synchronous migration */
721 if (mode != MIGRATE_SYNC)
Mel Gormanb969c4a2012-01-12 17:19:34 -0800722 return -EBUSY;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700723 return writeout(mapping, page);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800724 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700725
726 /*
727 * Buffers may be managed in a filesystem specific way.
728 * We must have no buffers or drop them.
729 */
David Howells266cf652009-04-03 16:42:36 +0100730 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700731 !try_to_release_page(page, GFP_KERNEL))
732 return -EAGAIN;
733
Mel Gormana6bc32b2012-01-12 17:19:43 -0800734 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700735}
736
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700737/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700738 * Move a page to a newly allocated page
739 * The page is locked and all ptes have been successfully removed.
740 *
741 * The new page will have replaced the old page if this function
742 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700743 *
744 * Return value:
745 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800746 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700747 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700748static int move_to_new_page(struct page *newpage, struct page *page,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800749 int remap_swapcache, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700750{
751 struct address_space *mapping;
752 int rc;
753
754 /*
755 * Block others from accessing the page when we get around to
756 * establishing additional references. We are the only one
757 * holding a reference to the new page at this point.
758 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200759 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700760 BUG();
761
762 /* Prepare mapping for the new page.*/
763 newpage->index = page->index;
764 newpage->mapping = page->mapping;
Rik van Rielb2e18532008-10-18 20:26:30 -0700765 if (PageSwapBacked(page))
766 SetPageSwapBacked(newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700767
768 mapping = page_mapping(page);
769 if (!mapping)
Mel Gormana6bc32b2012-01-12 17:19:43 -0800770 rc = migrate_page(mapping, newpage, page, mode);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800771 else if (mapping->a_ops->migratepage)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700772 /*
Mel Gormanb969c4a2012-01-12 17:19:34 -0800773 * Most pages have a mapping and most filesystems provide a
774 * migratepage callback. Anonymous pages are part of swap
775 * space which also has its own migratepage callback. This
776 * is the most common path for page migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700777 */
Mel Gormanb969c4a2012-01-12 17:19:34 -0800778 rc = mapping->a_ops->migratepage(mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800779 newpage, page, mode);
Mel Gormanb969c4a2012-01-12 17:19:34 -0800780 else
Mel Gormana6bc32b2012-01-12 17:19:43 -0800781 rc = fallback_migrate_page(mapping, newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700782
Rafael Aquini78bd5202012-12-11 16:02:31 -0800783 if (rc != MIGRATEPAGE_SUCCESS) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700784 newpage->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700785 } else {
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700786 mem_cgroup_migrate(page, newpage, false);
Mel Gorman3fe20112010-05-24 14:32:20 -0700787 if (remap_swapcache)
788 remove_migration_ptes(page, newpage);
Konstantin Khlebnikov35512ec2012-02-03 15:37:13 -0800789 page->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700790 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700791
792 unlock_page(newpage);
793
794 return rc;
795}
796
Minchan Kim0dabec92011-10-31 17:06:57 -0700797static int __unmap_and_move(struct page *page, struct page *newpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800798 int force, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700799{
Minchan Kim0dabec92011-10-31 17:06:57 -0700800 int rc = -EAGAIN;
Mel Gorman3fe20112010-05-24 14:32:20 -0700801 int remap_swapcache = 1;
Mel Gorman3f6c8272010-05-24 14:32:17 -0700802 struct anon_vma *anon_vma = NULL;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700803
Nick Piggin529ae9a2008-08-02 12:01:03 +0200804 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800805 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700806 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800807
808 /*
809 * It's not safe for direct compaction to call lock_page.
810 * For example, during page readahead pages are added locked
811 * to the LRU. Later, when the IO completes the pages are
812 * marked uptodate and unlocked. However, the queueing
813 * could be merging multiple pages for one bio (e.g.
814 * mpage_readpages). If an allocation happens for the
815 * second or third page, the process can end up locking
816 * the same page twice and deadlocking. Rather than
817 * trying to be clever about what pages can be locked,
818 * avoid the use of lock_page for direct compaction
819 * altogether.
820 */
821 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700822 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800823
Christoph Lametere24f0b82006-06-23 02:03:51 -0700824 lock_page(page);
825 }
826
827 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700828 /*
Jianguo Wufed5b642013-04-29 15:07:58 -0700829 * Only in the case of a full synchronous migration is it
Mel Gormana6bc32b2012-01-12 17:19:43 -0800830 * necessary to wait for PageWriteback. In the async case,
831 * the retry loop is too short and in the sync-light case,
832 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700833 */
Mel Gormana6bc32b2012-01-12 17:19:43 -0800834 if (mode != MIGRATE_SYNC) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700835 rc = -EBUSY;
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700836 goto out_unlock;
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700837 }
838 if (!force)
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700839 goto out_unlock;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700840 wait_on_page_writeback(page);
841 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700842 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700843 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
844 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800845 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700846 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700847 * File Caches may use write_page() or lock_page() in migration, then,
848 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700849 */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -0800850 if (PageAnon(page) && !PageKsm(page)) {
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800851 /*
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000852 * Only page_lock_anon_vma_read() understands the subtleties of
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800853 * getting a hold on an anon_vma from outside one of its mms.
854 */
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700855 anon_vma = page_get_anon_vma(page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800856 if (anon_vma) {
857 /*
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700858 * Anon page
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800859 */
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800860 } else if (PageSwapCache(page)) {
Mel Gorman3fe20112010-05-24 14:32:20 -0700861 /*
862 * We cannot be sure that the anon_vma of an unmapped
863 * swapcache page is safe to use because we don't
864 * know in advance if the VMA that this page belonged
865 * to still exists. If the VMA and others sharing the
866 * data have been freed, then the anon_vma could
867 * already be invalid.
868 *
869 * To avoid this possibility, swapcache pages get
870 * migrated but are not remapped when migration
871 * completes
872 */
873 remap_swapcache = 0;
874 } else {
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700875 goto out_unlock;
Mel Gorman3fe20112010-05-24 14:32:20 -0700876 }
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700877 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800878
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700879 if (unlikely(isolated_balloon_page(page))) {
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800880 /*
881 * A ballooned page does not need any special attention from
882 * physical to virtual reverse mapping procedures.
883 * Skip any attempt to unmap PTEs or to remap swap cache,
884 * in order to avoid burning cycles at rmap level, and perform
885 * the page migration right away (proteced by page lock).
886 */
887 rc = balloon_page_migrate(newpage, page, mode);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700888 goto out_unlock;
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800889 }
890
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700891 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800892 * Corner case handling:
893 * 1. When a new swap-cache page is read into, it is added to the LRU
894 * and treated as swapcache but it has no rmap yet.
895 * Calling try_to_unmap() against a page->mapping==NULL page will
896 * trigger a BUG. So handle it here.
897 * 2. An orphaned page (see truncate_complete_page) might have
898 * fs-private metadata. The page can be picked up due to memory
899 * offlining. Everywhere else except page reclaim, the page is
900 * invisible to the vm, so the page can not be migrated. So try to
901 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700902 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800903 if (!page->mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800904 VM_BUG_ON_PAGE(PageAnon(page), page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -0800905 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -0800906 try_to_free_buffers(page);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700907 goto out_unlock;
Shaohua Li62e1c552008-02-04 22:29:33 -0800908 }
Shaohua Liabfc3482009-09-21 17:01:19 -0700909 goto skip_unmap;
Shaohua Li62e1c552008-02-04 22:29:33 -0800910 }
911
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700912 /* Establish migration ptes or remove ptes */
Andi Kleen14fa31b2009-09-16 11:50:10 +0200913 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700914
Shaohua Liabfc3482009-09-21 17:01:19 -0700915skip_unmap:
Christoph Lametere6a15302006-06-25 05:46:49 -0700916 if (!page_mapped(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800917 rc = move_to_new_page(newpage, page, remap_swapcache, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700918
Mel Gorman3fe20112010-05-24 14:32:20 -0700919 if (rc && remap_swapcache)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700920 remove_migration_ptes(page, page);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700921
922 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -0700923 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -0700924 put_anon_vma(anon_vma);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700925
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700926out_unlock:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700927 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -0700928out:
929 return rc;
930}
Christoph Lameter95a402c2006-06-23 02:03:53 -0700931
Minchan Kim0dabec92011-10-31 17:06:57 -0700932/*
933 * Obtain the lock on page, remove all ptes and migrate the page
934 * to the newly allocated page in newpage.
935 */
David Rientjes68711a72014-06-04 16:08:25 -0700936static int unmap_and_move(new_page_t get_new_page, free_page_t put_new_page,
937 unsigned long private, struct page *page, int force,
938 enum migrate_mode mode)
Minchan Kim0dabec92011-10-31 17:06:57 -0700939{
940 int rc = 0;
941 int *result = NULL;
942 struct page *newpage = get_new_page(page, private, &result);
943
944 if (!newpage)
945 return -ENOMEM;
946
947 if (page_count(page) == 1) {
948 /* page was freed from under us. So we are done. */
949 goto out;
950 }
951
952 if (unlikely(PageTransHuge(page)))
953 if (unlikely(split_huge_page(page)))
954 goto out;
955
Hugh Dickins9c620e22013-02-22 16:35:14 -0800956 rc = __unmap_and_move(page, newpage, force, mode);
Rafael Aquinibf6bddf2012-12-11 16:02:42 -0800957
Minchan Kim0dabec92011-10-31 17:06:57 -0700958out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700959 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -0700960 /*
961 * A page that has been migrated has all references
962 * removed and will be freed. A page that has not been
963 * migrated will have kepts its references and be
964 * restored.
965 */
966 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700967 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700968 page_is_file_cache(page));
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700969 putback_lru_page(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700970 }
David Rientjes68711a72014-06-04 16:08:25 -0700971
Christoph Lameter95a402c2006-06-23 02:03:53 -0700972 /*
David Rientjes68711a72014-06-04 16:08:25 -0700973 * If migration was not successful and there's a freeing callback, use
974 * it. Otherwise, putback_lru_page() will drop the reference grabbed
975 * during isolation.
Christoph Lameter95a402c2006-06-23 02:03:53 -0700976 */
Hugh Dickins8bdd6382014-07-26 12:58:23 -0700977 if (rc != MIGRATEPAGE_SUCCESS && put_new_page) {
978 ClearPageSwapBacked(newpage);
David Rientjes68711a72014-06-04 16:08:25 -0700979 put_new_page(newpage, private);
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700980 } else if (unlikely(__is_movable_balloon_page(newpage))) {
981 /* drop our reference, page already in the balloon */
982 put_page(newpage);
Hugh Dickins8bdd6382014-07-26 12:58:23 -0700983 } else
David Rientjes68711a72014-06-04 16:08:25 -0700984 putback_lru_page(newpage);
985
Christoph Lameter742755a2006-06-23 02:03:55 -0700986 if (result) {
987 if (rc)
988 *result = rc;
989 else
990 *result = page_to_nid(newpage);
991 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700992 return rc;
993}
994
995/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900996 * Counterpart of unmap_and_move_page() for hugepage migration.
997 *
998 * This function doesn't wait the completion of hugepage I/O
999 * because there is no race between I/O and migration for hugepage.
1000 * Note that currently hugepage I/O occurs only in direct I/O
1001 * where no lock is held and PG_writeback is irrelevant,
1002 * and writeback status of all subpages are counted in the reference
1003 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1004 * under direct I/O, the reference of the head page is 512 and a bit more.)
1005 * This means that when we try to migrate hugepage whose subpages are
1006 * doing direct I/O, some references remain after try_to_unmap() and
1007 * hugepage migration fails without data corruption.
1008 *
1009 * There is also no race when direct I/O is issued on the page under migration,
1010 * because then pte is replaced with migration swap entry and direct I/O code
1011 * will wait in the page fault for migration to complete.
1012 */
1013static int unmap_and_move_huge_page(new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001014 free_page_t put_new_page, unsigned long private,
1015 struct page *hpage, int force,
1016 enum migrate_mode mode)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001017{
1018 int rc = 0;
1019 int *result = NULL;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001020 struct page *new_hpage;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001021 struct anon_vma *anon_vma = NULL;
1022
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001023 /*
1024 * Movability of hugepages depends on architectures and hugepage size.
1025 * This check is necessary because some callers of hugepage migration
1026 * like soft offline and memory hotremove don't walk through page
1027 * tables or check whether the hugepage is pmd-based or not before
1028 * kicking migration.
1029 */
Naoya Horiguchi100873d2014-06-04 16:10:56 -07001030 if (!hugepage_migration_supported(page_hstate(hpage))) {
Joonsoo Kim32665f22014-01-21 15:51:15 -08001031 putback_active_hugepage(hpage);
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001032 return -ENOSYS;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001033 }
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001034
Joonsoo Kim32665f22014-01-21 15:51:15 -08001035 new_hpage = get_new_page(hpage, private, &result);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001036 if (!new_hpage)
1037 return -ENOMEM;
1038
1039 rc = -EAGAIN;
1040
1041 if (!trylock_page(hpage)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -08001042 if (!force || mode != MIGRATE_SYNC)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001043 goto out;
1044 lock_page(hpage);
1045 }
1046
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001047 if (PageAnon(hpage))
1048 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001049
1050 try_to_unmap(hpage, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
1051
1052 if (!page_mapped(hpage))
Mel Gormana6bc32b2012-01-12 17:19:43 -08001053 rc = move_to_new_page(new_hpage, hpage, 1, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001054
David Rientjes68711a72014-06-04 16:08:25 -07001055 if (rc != MIGRATEPAGE_SUCCESS)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001056 remove_migration_ptes(hpage, hpage);
1057
Hugh Dickinsfd4a4662011-01-13 15:47:31 -08001058 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001059 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001060
David Rientjes68711a72014-06-04 16:08:25 -07001061 if (rc == MIGRATEPAGE_SUCCESS)
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001062 hugetlb_cgroup_migrate(hpage, new_hpage);
1063
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001064 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -08001065out:
Naoya Horiguchib8ec1ce2013-09-11 14:22:01 -07001066 if (rc != -EAGAIN)
1067 putback_active_hugepage(hpage);
David Rientjes68711a72014-06-04 16:08:25 -07001068
1069 /*
1070 * If migration was not successful and there's a freeing callback, use
1071 * it. Otherwise, put_page() will drop the reference grabbed during
1072 * isolation.
1073 */
1074 if (rc != MIGRATEPAGE_SUCCESS && put_new_page)
1075 put_new_page(new_hpage, private);
1076 else
1077 put_page(new_hpage);
1078
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001079 if (result) {
1080 if (rc)
1081 *result = rc;
1082 else
1083 *result = page_to_nid(new_hpage);
1084 }
1085 return rc;
1086}
1087
1088/*
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001089 * migrate_pages - migrate the pages specified in a list, to the free pages
1090 * supplied as the target for the page migration
Christoph Lameterb20a3502006-03-22 00:09:12 -08001091 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001092 * @from: The list of pages to be migrated.
1093 * @get_new_page: The function used to allocate free pages to be used
1094 * as the target of the page migration.
David Rientjes68711a72014-06-04 16:08:25 -07001095 * @put_new_page: The function used to free target pages if migration
1096 * fails, or NULL if no special handling is necessary.
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001097 * @private: Private data to be passed on to get_new_page()
1098 * @mode: The migration mode that specifies the constraints for
1099 * page migration, if any.
1100 * @reason: The reason for page migration.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001101 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001102 * The function returns after 10 attempts or if no pages are movable any more
1103 * because the list has become empty or no retryable pages exist any more.
1104 * The caller should call putback_lru_pages() to return pages to the LRU
Minchan Kim28bd6572011-01-25 15:07:26 -08001105 * or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001106 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001107 * Returns the number of pages that were not migrated, or an error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001108 */
Hugh Dickins9c620e22013-02-22 16:35:14 -08001109int migrate_pages(struct list_head *from, new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001110 free_page_t put_new_page, unsigned long private,
1111 enum migrate_mode mode, int reason)
Christoph Lameterb20a3502006-03-22 00:09:12 -08001112{
Christoph Lametere24f0b82006-06-23 02:03:51 -07001113 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001114 int nr_failed = 0;
Mel Gorman5647bc22012-10-19 10:46:20 +01001115 int nr_succeeded = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001116 int pass = 0;
1117 struct page *page;
1118 struct page *page2;
1119 int swapwrite = current->flags & PF_SWAPWRITE;
1120 int rc;
1121
1122 if (!swapwrite)
1123 current->flags |= PF_SWAPWRITE;
1124
Christoph Lametere24f0b82006-06-23 02:03:51 -07001125 for(pass = 0; pass < 10 && retry; pass++) {
1126 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001127
Christoph Lametere24f0b82006-06-23 02:03:51 -07001128 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -07001129 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -08001130
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001131 if (PageHuge(page))
1132 rc = unmap_and_move_huge_page(get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001133 put_new_page, private, page,
1134 pass > 2, mode);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001135 else
David Rientjes68711a72014-06-04 16:08:25 -07001136 rc = unmap_and_move(get_new_page, put_new_page,
1137 private, page, pass > 2, mode);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001138
Christoph Lametere24f0b82006-06-23 02:03:51 -07001139 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -07001140 case -ENOMEM:
1141 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001142 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001143 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001144 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001145 case MIGRATEPAGE_SUCCESS:
Mel Gorman5647bc22012-10-19 10:46:20 +01001146 nr_succeeded++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001147 break;
1148 default:
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001149 /*
1150 * Permanent failure (-EBUSY, -ENOSYS, etc.):
1151 * unlike -EAGAIN case, the failed page is
1152 * removed from migration page list and not
1153 * retried in the next outer loop.
1154 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001155 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001156 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001157 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001158 }
1159 }
Rafael Aquini78bd5202012-12-11 16:02:31 -08001160 rc = nr_failed + retry;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001161out:
Mel Gorman5647bc22012-10-19 10:46:20 +01001162 if (nr_succeeded)
1163 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1164 if (nr_failed)
1165 count_vm_events(PGMIGRATE_FAIL, nr_failed);
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001166 trace_mm_migrate_pages(nr_succeeded, nr_failed, mode, reason);
1167
Christoph Lameterb20a3502006-03-22 00:09:12 -08001168 if (!swapwrite)
1169 current->flags &= ~PF_SWAPWRITE;
1170
Rafael Aquini78bd5202012-12-11 16:02:31 -08001171 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001172}
1173
Christoph Lameter742755a2006-06-23 02:03:55 -07001174#ifdef CONFIG_NUMA
1175/*
1176 * Move a list of individual pages
1177 */
1178struct page_to_node {
1179 unsigned long addr;
1180 struct page *page;
1181 int node;
1182 int status;
1183};
1184
1185static struct page *new_page_node(struct page *p, unsigned long private,
1186 int **result)
1187{
1188 struct page_to_node *pm = (struct page_to_node *)private;
1189
1190 while (pm->node != MAX_NUMNODES && pm->page != p)
1191 pm++;
1192
1193 if (pm->node == MAX_NUMNODES)
1194 return NULL;
1195
1196 *result = &pm->status;
1197
Naoya Horiguchie632a932013-09-11 14:22:04 -07001198 if (PageHuge(p))
1199 return alloc_huge_page_node(page_hstate(compound_head(p)),
1200 pm->node);
1201 else
1202 return alloc_pages_exact_node(pm->node,
Johannes Weinere97ca8e2014-03-10 15:49:43 -07001203 GFP_HIGHUSER_MOVABLE | __GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -07001204}
1205
1206/*
1207 * Move a set of pages as indicated in the pm array. The addr
1208 * field must be set to the virtual address of the page to be moved
1209 * and the node number must contain a valid target node.
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001210 * The pm array ends with node = MAX_NUMNODES.
Christoph Lameter742755a2006-06-23 02:03:55 -07001211 */
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001212static int do_move_page_to_node_array(struct mm_struct *mm,
1213 struct page_to_node *pm,
1214 int migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001215{
1216 int err;
1217 struct page_to_node *pp;
1218 LIST_HEAD(pagelist);
1219
1220 down_read(&mm->mmap_sem);
1221
1222 /*
1223 * Build a list of pages to migrate
1224 */
Christoph Lameter742755a2006-06-23 02:03:55 -07001225 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
1226 struct vm_area_struct *vma;
1227 struct page *page;
1228
Christoph Lameter742755a2006-06-23 02:03:55 -07001229 err = -EFAULT;
1230 vma = find_vma(mm, pp->addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001231 if (!vma || pp->addr < vma->vm_start || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -07001232 goto set_status;
1233
Andrea Arcangeli500d65d2011-01-13 15:46:55 -08001234 page = follow_page(vma, pp->addr, FOLL_GET|FOLL_SPLIT);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001235
1236 err = PTR_ERR(page);
1237 if (IS_ERR(page))
1238 goto set_status;
1239
Christoph Lameter742755a2006-06-23 02:03:55 -07001240 err = -ENOENT;
1241 if (!page)
1242 goto set_status;
1243
Hugh Dickins62b61f62009-12-14 17:59:33 -08001244 /* Use PageReserved to check for zero page */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -08001245 if (PageReserved(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001246 goto put_and_set;
1247
1248 pp->page = page;
1249 err = page_to_nid(page);
1250
1251 if (err == pp->node)
1252 /*
1253 * Node already in the right place
1254 */
1255 goto put_and_set;
1256
1257 err = -EACCES;
1258 if (page_mapcount(page) > 1 &&
1259 !migrate_all)
1260 goto put_and_set;
1261
Naoya Horiguchie632a932013-09-11 14:22:04 -07001262 if (PageHuge(page)) {
Naoya Horiguchi35d44e92015-02-11 15:25:22 -08001263 if (PageHead(page))
1264 isolate_huge_page(page, &pagelist);
Naoya Horiguchie632a932013-09-11 14:22:04 -07001265 goto put_and_set;
1266 }
1267
Nick Piggin62695a82008-10-18 20:26:09 -07001268 err = isolate_lru_page(page);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001269 if (!err) {
Nick Piggin62695a82008-10-18 20:26:09 -07001270 list_add_tail(&page->lru, &pagelist);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001271 inc_zone_page_state(page, NR_ISOLATED_ANON +
1272 page_is_file_cache(page));
1273 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001274put_and_set:
1275 /*
1276 * Either remove the duplicate refcount from
1277 * isolate_lru_page() or drop the page ref if it was
1278 * not isolated.
1279 */
1280 put_page(page);
1281set_status:
1282 pp->status = err;
1283 }
1284
Brice Gogline78bbfa2008-10-18 20:27:15 -07001285 err = 0;
Minchan Kimcf608ac2010-10-26 14:21:29 -07001286 if (!list_empty(&pagelist)) {
David Rientjes68711a72014-06-04 16:08:25 -07001287 err = migrate_pages(&pagelist, new_page_node, NULL,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001288 (unsigned long)pm, MIGRATE_SYNC, MR_SYSCALL);
Minchan Kimcf608ac2010-10-26 14:21:29 -07001289 if (err)
Naoya Horiguchie632a932013-09-11 14:22:04 -07001290 putback_movable_pages(&pagelist);
Minchan Kimcf608ac2010-10-26 14:21:29 -07001291 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001292
1293 up_read(&mm->mmap_sem);
1294 return err;
1295}
1296
1297/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001298 * Migrate an array of page address onto an array of nodes and fill
1299 * the corresponding array of status.
1300 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001301static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001302 unsigned long nr_pages,
1303 const void __user * __user *pages,
1304 const int __user *nodes,
1305 int __user *status, int flags)
1306{
Brice Goglin3140a222009-01-06 14:38:57 -08001307 struct page_to_node *pm;
Brice Goglin3140a222009-01-06 14:38:57 -08001308 unsigned long chunk_nr_pages;
1309 unsigned long chunk_start;
1310 int err;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001311
Brice Goglin3140a222009-01-06 14:38:57 -08001312 err = -ENOMEM;
1313 pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
1314 if (!pm)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001315 goto out;
Brice Goglin35282a22009-06-16 15:32:43 -07001316
1317 migrate_prep();
1318
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001319 /*
Brice Goglin3140a222009-01-06 14:38:57 -08001320 * Store a chunk of page_to_node array in a page,
1321 * but keep the last one as a marker
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001322 */
Brice Goglin3140a222009-01-06 14:38:57 -08001323 chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001324
Brice Goglin3140a222009-01-06 14:38:57 -08001325 for (chunk_start = 0;
1326 chunk_start < nr_pages;
1327 chunk_start += chunk_nr_pages) {
1328 int j;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001329
Brice Goglin3140a222009-01-06 14:38:57 -08001330 if (chunk_start + chunk_nr_pages > nr_pages)
1331 chunk_nr_pages = nr_pages - chunk_start;
1332
1333 /* fill the chunk pm with addrs and nodes from user-space */
1334 for (j = 0; j < chunk_nr_pages; j++) {
1335 const void __user *p;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001336 int node;
1337
Brice Goglin3140a222009-01-06 14:38:57 -08001338 err = -EFAULT;
1339 if (get_user(p, pages + j + chunk_start))
1340 goto out_pm;
1341 pm[j].addr = (unsigned long) p;
1342
1343 if (get_user(node, nodes + j + chunk_start))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001344 goto out_pm;
1345
1346 err = -ENODEV;
Linus Torvalds6f5a55f2010-02-05 16:16:50 -08001347 if (node < 0 || node >= MAX_NUMNODES)
1348 goto out_pm;
1349
Lai Jiangshan389162c2012-12-12 13:51:30 -08001350 if (!node_state(node, N_MEMORY))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001351 goto out_pm;
1352
1353 err = -EACCES;
1354 if (!node_isset(node, task_nodes))
1355 goto out_pm;
1356
Brice Goglin3140a222009-01-06 14:38:57 -08001357 pm[j].node = node;
1358 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001359
Brice Goglin3140a222009-01-06 14:38:57 -08001360 /* End marker for this chunk */
1361 pm[chunk_nr_pages].node = MAX_NUMNODES;
1362
1363 /* Migrate this chunk */
1364 err = do_move_page_to_node_array(mm, pm,
1365 flags & MPOL_MF_MOVE_ALL);
1366 if (err < 0)
1367 goto out_pm;
1368
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001369 /* Return status information */
Brice Goglin3140a222009-01-06 14:38:57 -08001370 for (j = 0; j < chunk_nr_pages; j++)
1371 if (put_user(pm[j].status, status + j + chunk_start)) {
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001372 err = -EFAULT;
Brice Goglin3140a222009-01-06 14:38:57 -08001373 goto out_pm;
1374 }
1375 }
1376 err = 0;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001377
1378out_pm:
Brice Goglin3140a222009-01-06 14:38:57 -08001379 free_page((unsigned long)pm);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001380out:
1381 return err;
1382}
1383
1384/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001385 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001386 */
Brice Goglin80bba122008-12-09 13:14:23 -08001387static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1388 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001389{
Brice Goglin2f007e72008-10-18 20:27:16 -07001390 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001391
Christoph Lameter742755a2006-06-23 02:03:55 -07001392 down_read(&mm->mmap_sem);
1393
Brice Goglin2f007e72008-10-18 20:27:16 -07001394 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001395 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001396 struct vm_area_struct *vma;
1397 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001398 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001399
1400 vma = find_vma(mm, addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001401 if (!vma || addr < vma->vm_start)
Christoph Lameter742755a2006-06-23 02:03:55 -07001402 goto set_status;
1403
Brice Goglin2f007e72008-10-18 20:27:16 -07001404 page = follow_page(vma, addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001405
1406 err = PTR_ERR(page);
1407 if (IS_ERR(page))
1408 goto set_status;
1409
Christoph Lameter742755a2006-06-23 02:03:55 -07001410 err = -ENOENT;
1411 /* Use PageReserved to check for zero page */
Hugh Dickinsb79bc0a2013-02-22 16:35:13 -08001412 if (!page || PageReserved(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001413 goto set_status;
1414
1415 err = page_to_nid(page);
1416set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001417 *status = err;
1418
1419 pages++;
1420 status++;
1421 }
1422
1423 up_read(&mm->mmap_sem);
1424}
1425
1426/*
1427 * Determine the nodes of a user array of pages and store it in
1428 * a user array of status.
1429 */
1430static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1431 const void __user * __user *pages,
1432 int __user *status)
1433{
1434#define DO_PAGES_STAT_CHUNK_NR 16
1435 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1436 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001437
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001438 while (nr_pages) {
1439 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001440
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001441 chunk_nr = nr_pages;
1442 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1443 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1444
1445 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1446 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001447
1448 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1449
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001450 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1451 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001452
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001453 pages += chunk_nr;
1454 status += chunk_nr;
1455 nr_pages -= chunk_nr;
1456 }
1457 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001458}
1459
1460/*
1461 * Move a list of pages in the address space of the currently executing
1462 * process.
1463 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001464SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1465 const void __user * __user *, pages,
1466 const int __user *, nodes,
1467 int __user *, status, int, flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001468{
David Howellsc69e8d92008-11-14 10:39:19 +11001469 const struct cred *cred = current_cred(), *tcred;
Christoph Lameter742755a2006-06-23 02:03:55 -07001470 struct task_struct *task;
Christoph Lameter742755a2006-06-23 02:03:55 -07001471 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001472 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07001473 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07001474
1475 /* Check flags */
1476 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1477 return -EINVAL;
1478
1479 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1480 return -EPERM;
1481
1482 /* Find the mm_struct */
Greg Thelena879bf52011-02-25 14:44:13 -08001483 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07001484 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -07001485 if (!task) {
Greg Thelena879bf52011-02-25 14:44:13 -08001486 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001487 return -ESRCH;
1488 }
Christoph Lameter3268c632012-03-21 16:34:06 -07001489 get_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001490
1491 /*
1492 * Check if this process has the right to modify the specified
1493 * process. The right exists if the process has administrative
1494 * capabilities, superuser privileges or the same
1495 * userid as the target process.
1496 */
David Howellsc69e8d92008-11-14 10:39:19 +11001497 tcred = __task_cred(task);
Eric W. Biedermanb38a86e2012-03-12 15:48:24 -07001498 if (!uid_eq(cred->euid, tcred->suid) && !uid_eq(cred->euid, tcred->uid) &&
1499 !uid_eq(cred->uid, tcred->suid) && !uid_eq(cred->uid, tcred->uid) &&
Christoph Lameter742755a2006-06-23 02:03:55 -07001500 !capable(CAP_SYS_NICE)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001501 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001502 err = -EPERM;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001503 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001504 }
David Howellsc69e8d92008-11-14 10:39:19 +11001505 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001506
David Quigley86c3a762006-06-23 02:04:02 -07001507 err = security_task_movememory(task);
1508 if (err)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001509 goto out;
David Quigley86c3a762006-06-23 02:04:02 -07001510
Christoph Lameter3268c632012-03-21 16:34:06 -07001511 task_nodes = cpuset_mems_allowed(task);
1512 mm = get_task_mm(task);
1513 put_task_struct(task);
1514
Sasha Levin6e8b09e2012-04-25 16:01:53 -07001515 if (!mm)
1516 return -EINVAL;
1517
1518 if (nodes)
1519 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1520 nodes, status, flags);
1521 else
1522 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07001523
1524 mmput(mm);
1525 return err;
David Quigley86c3a762006-06-23 02:04:02 -07001526
Christoph Lameter742755a2006-06-23 02:03:55 -07001527out:
Christoph Lameter3268c632012-03-21 16:34:06 -07001528 put_task_struct(task);
Christoph Lameter742755a2006-06-23 02:03:55 -07001529 return err;
1530}
Christoph Lameter742755a2006-06-23 02:03:55 -07001531
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001532/*
1533 * Call migration functions in the vma_ops that may prepare
1534 * memory in a vm for migration. migration functions may perform
1535 * the migration for vmas that do not have an underlying page struct.
1536 */
1537int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1538 const nodemask_t *from, unsigned long flags)
1539{
1540 struct vm_area_struct *vma;
1541 int err = 0;
1542
Daisuke Nishimura1001c9f2009-02-11 13:04:18 -08001543 for (vma = mm->mmap; vma && !err; vma = vma->vm_next) {
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001544 if (vma->vm_ops && vma->vm_ops->migrate) {
1545 err = vma->vm_ops->migrate(vma, to, from, flags);
1546 if (err)
1547 break;
1548 }
1549 }
1550 return err;
1551}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001552
1553#ifdef CONFIG_NUMA_BALANCING
1554/*
1555 * Returns true if this is a safe migration target node for misplaced NUMA
1556 * pages. Currently it only checks the watermarks which crude
1557 */
1558static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
Mel Gorman3abef4e2013-02-22 16:34:27 -08001559 unsigned long nr_migrate_pages)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001560{
1561 int z;
1562 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
1563 struct zone *zone = pgdat->node_zones + z;
1564
1565 if (!populated_zone(zone))
1566 continue;
1567
Lisa Du6e543d52013-09-11 14:22:36 -07001568 if (!zone_reclaimable(zone))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001569 continue;
1570
1571 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
1572 if (!zone_watermark_ok(zone, 0,
1573 high_wmark_pages(zone) +
1574 nr_migrate_pages,
1575 0, 0))
1576 continue;
1577 return true;
1578 }
1579 return false;
1580}
1581
1582static struct page *alloc_misplaced_dst_page(struct page *page,
1583 unsigned long data,
1584 int **result)
1585{
1586 int nid = (int) data;
1587 struct page *newpage;
1588
1589 newpage = alloc_pages_exact_node(nid,
Johannes Weinere97ca8e2014-03-10 15:49:43 -07001590 (GFP_HIGHUSER_MOVABLE |
1591 __GFP_THISNODE | __GFP_NOMEMALLOC |
1592 __GFP_NORETRY | __GFP_NOWARN) &
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001593 ~GFP_IOFS, 0);
Hillf Dantonbac03822012-11-27 14:46:24 +00001594
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001595 return newpage;
1596}
1597
1598/*
Mel Gormana8f60772012-11-14 21:41:46 +00001599 * page migration rate limiting control.
1600 * Do not migrate more than @pages_to_migrate in a @migrate_interval_millisecs
1601 * window of time. Default here says do not migrate more than 1280M per second.
Mel Gormane14808b2012-11-19 10:59:15 +00001602 * If a node is rate-limited then PTE NUMA updates are also rate-limited. However
1603 * as it is faults that reset the window, pte updates will happen unconditionally
1604 * if there has not been a fault since @pteupdate_interval_millisecs after the
1605 * throttle window closed.
Mel Gormana8f60772012-11-14 21:41:46 +00001606 */
1607static unsigned int migrate_interval_millisecs __read_mostly = 100;
Mel Gormane14808b2012-11-19 10:59:15 +00001608static unsigned int pteupdate_interval_millisecs __read_mostly = 1000;
Mel Gormana8f60772012-11-14 21:41:46 +00001609static unsigned int ratelimit_pages __read_mostly = 128 << (20 - PAGE_SHIFT);
1610
Mel Gormane14808b2012-11-19 10:59:15 +00001611/* Returns true if NUMA migration is currently rate limited */
1612bool migrate_ratelimited(int node)
1613{
1614 pg_data_t *pgdat = NODE_DATA(node);
1615
1616 if (time_after(jiffies, pgdat->numabalancing_migrate_next_window +
1617 msecs_to_jiffies(pteupdate_interval_millisecs)))
1618 return false;
1619
1620 if (pgdat->numabalancing_migrate_nr_pages < ratelimit_pages)
1621 return false;
1622
1623 return true;
1624}
1625
Mel Gormanb32967f2012-11-19 12:35:47 +00001626/* Returns true if the node is migrate rate-limited after the update */
Mel Gorman1c30e012014-01-21 15:50:58 -08001627static bool numamigrate_update_ratelimit(pg_data_t *pgdat,
1628 unsigned long nr_pages)
Mel Gormanb32967f2012-11-19 12:35:47 +00001629{
Mel Gormanb32967f2012-11-19 12:35:47 +00001630 /*
1631 * Rate-limit the amount of data that is being migrated to a node.
1632 * Optimal placement is no good if the memory bus is saturated and
1633 * all the time is being spent migrating!
1634 */
Mel Gormanb32967f2012-11-19 12:35:47 +00001635 if (time_after(jiffies, pgdat->numabalancing_migrate_next_window)) {
Mel Gorman1c5e9c22014-01-21 15:50:59 -08001636 spin_lock(&pgdat->numabalancing_migrate_lock);
Mel Gormanb32967f2012-11-19 12:35:47 +00001637 pgdat->numabalancing_migrate_nr_pages = 0;
1638 pgdat->numabalancing_migrate_next_window = jiffies +
1639 msecs_to_jiffies(migrate_interval_millisecs);
Mel Gorman1c5e9c22014-01-21 15:50:59 -08001640 spin_unlock(&pgdat->numabalancing_migrate_lock);
Mel Gormanb32967f2012-11-19 12:35:47 +00001641 }
Mel Gormanaf1839d2014-01-21 15:51:01 -08001642 if (pgdat->numabalancing_migrate_nr_pages > ratelimit_pages) {
1643 trace_mm_numa_migrate_ratelimit(current, pgdat->node_id,
1644 nr_pages);
Mel Gorman1c5e9c22014-01-21 15:50:59 -08001645 return true;
Mel Gormanaf1839d2014-01-21 15:51:01 -08001646 }
Mel Gorman1c5e9c22014-01-21 15:50:59 -08001647
1648 /*
1649 * This is an unlocked non-atomic update so errors are possible.
1650 * The consequences are failing to migrate when we potentiall should
1651 * have which is not severe enough to warrant locking. If it is ever
1652 * a problem, it can be converted to a per-cpu counter.
1653 */
1654 pgdat->numabalancing_migrate_nr_pages += nr_pages;
1655 return false;
Mel Gormanb32967f2012-11-19 12:35:47 +00001656}
1657
Mel Gorman1c30e012014-01-21 15:50:58 -08001658static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
Mel Gormanb32967f2012-11-19 12:35:47 +00001659{
Hugh Dickins340ef392013-02-22 16:34:33 -08001660 int page_lru;
Mel Gormanb32967f2012-11-19 12:35:47 +00001661
Sasha Levin309381fea2014-01-23 15:52:54 -08001662 VM_BUG_ON_PAGE(compound_order(page) && !PageTransHuge(page), page);
Mel Gorman3abef4e2013-02-22 16:34:27 -08001663
Mel Gormanb32967f2012-11-19 12:35:47 +00001664 /* Avoid migrating to a node that is nearly full */
Hugh Dickins340ef392013-02-22 16:34:33 -08001665 if (!migrate_balanced_pgdat(pgdat, 1UL << compound_order(page)))
1666 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00001667
Hugh Dickins340ef392013-02-22 16:34:33 -08001668 if (isolate_lru_page(page))
1669 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00001670
1671 /*
Hugh Dickins340ef392013-02-22 16:34:33 -08001672 * migrate_misplaced_transhuge_page() skips page migration's usual
1673 * check on page_count(), so we must do it here, now that the page
1674 * has been isolated: a GUP pin, or any other pin, prevents migration.
1675 * The expected page count is 3: 1 for page's mapcount and 1 for the
1676 * caller's pin and 1 for the reference taken by isolate_lru_page().
1677 */
1678 if (PageTransHuge(page) && page_count(page) != 3) {
1679 putback_lru_page(page);
1680 return 0;
1681 }
1682
1683 page_lru = page_is_file_cache(page);
1684 mod_zone_page_state(page_zone(page), NR_ISOLATED_ANON + page_lru,
1685 hpage_nr_pages(page));
1686
1687 /*
1688 * Isolating the page has taken another reference, so the
1689 * caller's reference can be safely dropped without the page
1690 * disappearing underneath us during migration.
Mel Gormanb32967f2012-11-19 12:35:47 +00001691 */
1692 put_page(page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001693 return 1;
Mel Gormanb32967f2012-11-19 12:35:47 +00001694}
1695
Mel Gormande466bd2013-12-18 17:08:42 -08001696bool pmd_trans_migrating(pmd_t pmd)
1697{
1698 struct page *page = pmd_page(pmd);
1699 return PageLocked(page);
1700}
1701
1702void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd)
1703{
1704 struct page *page = pmd_page(*pmd);
1705 wait_on_page_locked(page);
1706}
1707
Mel Gormana8f60772012-11-14 21:41:46 +00001708/*
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001709 * Attempt to migrate a misplaced page to the specified destination
1710 * node. Caller is expected to have an elevated reference count on
1711 * the page that will be dropped by this function before returning.
1712 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01001713int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
1714 int node)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001715{
Mel Gormana8f60772012-11-14 21:41:46 +00001716 pg_data_t *pgdat = NODE_DATA(node);
Hugh Dickins340ef392013-02-22 16:34:33 -08001717 int isolated;
Mel Gormanb32967f2012-11-19 12:35:47 +00001718 int nr_remaining;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001719 LIST_HEAD(migratepages);
1720
1721 /*
Mel Gorman1bc115d2013-10-07 11:29:05 +01001722 * Don't migrate file pages that are mapped in multiple processes
1723 * with execute permissions as they are probably shared libraries.
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001724 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01001725 if (page_mapcount(page) != 1 && page_is_file_cache(page) &&
1726 (vma->vm_flags & VM_EXEC))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001727 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001728
Mel Gormana8f60772012-11-14 21:41:46 +00001729 /*
1730 * Rate-limit the amount of data that is being migrated to a node.
1731 * Optimal placement is no good if the memory bus is saturated and
1732 * all the time is being spent migrating!
1733 */
Hugh Dickins340ef392013-02-22 16:34:33 -08001734 if (numamigrate_update_ratelimit(pgdat, 1))
Mel Gormana8f60772012-11-14 21:41:46 +00001735 goto out;
Mel Gormana8f60772012-11-14 21:41:46 +00001736
Mel Gormanb32967f2012-11-19 12:35:47 +00001737 isolated = numamigrate_isolate_page(pgdat, page);
1738 if (!isolated)
1739 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001740
Mel Gormanb32967f2012-11-19 12:35:47 +00001741 list_add(&page->lru, &migratepages);
Hugh Dickins9c620e22013-02-22 16:35:14 -08001742 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
David Rientjes68711a72014-06-04 16:08:25 -07001743 NULL, node, MIGRATE_ASYNC,
1744 MR_NUMA_MISPLACED);
Mel Gormanb32967f2012-11-19 12:35:47 +00001745 if (nr_remaining) {
Joonsoo Kim59c82b72014-01-21 15:51:17 -08001746 if (!list_empty(&migratepages)) {
1747 list_del(&page->lru);
1748 dec_zone_page_state(page, NR_ISOLATED_ANON +
1749 page_is_file_cache(page));
1750 putback_lru_page(page);
1751 }
Mel Gormanb32967f2012-11-19 12:35:47 +00001752 isolated = 0;
1753 } else
1754 count_vm_numa_event(NUMA_PAGE_MIGRATE);
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001755 BUG_ON(!list_empty(&migratepages));
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001756 return isolated;
Hugh Dickins340ef392013-02-22 16:34:33 -08001757
1758out:
1759 put_page(page);
1760 return 0;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001761}
Mel Gorman220018d2012-12-05 09:32:56 +00001762#endif /* CONFIG_NUMA_BALANCING */
Mel Gormanb32967f2012-11-19 12:35:47 +00001763
Mel Gorman220018d2012-12-05 09:32:56 +00001764#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Hugh Dickins340ef392013-02-22 16:34:33 -08001765/*
1766 * Migrates a THP to a given target node. page must be locked and is unlocked
1767 * before returning.
1768 */
Mel Gormanb32967f2012-11-19 12:35:47 +00001769int migrate_misplaced_transhuge_page(struct mm_struct *mm,
1770 struct vm_area_struct *vma,
1771 pmd_t *pmd, pmd_t entry,
1772 unsigned long address,
1773 struct page *page, int node)
1774{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001775 spinlock_t *ptl;
Mel Gormanb32967f2012-11-19 12:35:47 +00001776 pg_data_t *pgdat = NODE_DATA(node);
1777 int isolated = 0;
1778 struct page *new_page = NULL;
Mel Gormanb32967f2012-11-19 12:35:47 +00001779 int page_lru = page_is_file_cache(page);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001780 unsigned long mmun_start = address & HPAGE_PMD_MASK;
1781 unsigned long mmun_end = mmun_start + HPAGE_PMD_SIZE;
Mel Gorman2b4847e2013-12-18 17:08:32 -08001782 pmd_t orig_entry;
Mel Gormanb32967f2012-11-19 12:35:47 +00001783
1784 /*
Mel Gormanb32967f2012-11-19 12:35:47 +00001785 * Rate-limit the amount of data that is being migrated to a node.
1786 * Optimal placement is no good if the memory bus is saturated and
1787 * all the time is being spent migrating!
1788 */
Mel Gormand28d43352012-11-29 09:24:36 +00001789 if (numamigrate_update_ratelimit(pgdat, HPAGE_PMD_NR))
Mel Gormanb32967f2012-11-19 12:35:47 +00001790 goto out_dropref;
1791
1792 new_page = alloc_pages_node(node,
Johannes Weinere97ca8e2014-03-10 15:49:43 -07001793 (GFP_TRANSHUGE | __GFP_THISNODE) & ~__GFP_WAIT,
1794 HPAGE_PMD_ORDER);
Hugh Dickins340ef392013-02-22 16:34:33 -08001795 if (!new_page)
1796 goto out_fail;
1797
Mel Gormanb32967f2012-11-19 12:35:47 +00001798 isolated = numamigrate_isolate_page(pgdat, page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001799 if (!isolated) {
Mel Gormanb32967f2012-11-19 12:35:47 +00001800 put_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08001801 goto out_fail;
Mel Gormanb32967f2012-11-19 12:35:47 +00001802 }
1803
Mel Gormanb0943d62013-12-18 17:08:46 -08001804 if (mm_tlb_flush_pending(mm))
1805 flush_tlb_range(vma, mmun_start, mmun_end);
1806
Mel Gormanb32967f2012-11-19 12:35:47 +00001807 /* Prepare a page as a migration target */
1808 __set_page_locked(new_page);
1809 SetPageSwapBacked(new_page);
1810
1811 /* anon mapping, we can simply copy page->mapping to the new page: */
1812 new_page->mapping = page->mapping;
1813 new_page->index = page->index;
1814 migrate_page_copy(new_page, page);
1815 WARN_ON(PageLRU(new_page));
1816
1817 /* Recheck the target PMD */
Mel Gormanf714f4f2013-12-18 17:08:33 -08001818 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001819 ptl = pmd_lock(mm, pmd);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001820 if (unlikely(!pmd_same(*pmd, entry) || page_count(page) != 2)) {
1821fail_putback:
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001822 spin_unlock(ptl);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001823 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Mel Gormanb32967f2012-11-19 12:35:47 +00001824
1825 /* Reverse changes made by migrate_page_copy() */
1826 if (TestClearPageActive(new_page))
1827 SetPageActive(page);
1828 if (TestClearPageUnevictable(new_page))
1829 SetPageUnevictable(page);
1830 mlock_migrate_page(page, new_page);
1831
1832 unlock_page(new_page);
1833 put_page(new_page); /* Free it */
1834
Mel Gormana54a4072013-10-07 11:28:46 +01001835 /* Retake the callers reference and putback on LRU */
1836 get_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001837 putback_lru_page(page);
Mel Gormana54a4072013-10-07 11:28:46 +01001838 mod_zone_page_state(page_zone(page),
1839 NR_ISOLATED_ANON + page_lru, -HPAGE_PMD_NR);
Mel Gormaneb4489f62013-12-18 17:08:39 -08001840
1841 goto out_unlock;
Mel Gormanb32967f2012-11-19 12:35:47 +00001842 }
1843
Mel Gorman2b4847e2013-12-18 17:08:32 -08001844 orig_entry = *pmd;
Mel Gormanb32967f2012-11-19 12:35:47 +00001845 entry = mk_pmd(new_page, vma->vm_page_prot);
Mel Gormanb32967f2012-11-19 12:35:47 +00001846 entry = pmd_mkhuge(entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001847 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Mel Gormanb32967f2012-11-19 12:35:47 +00001848
Mel Gorman2b4847e2013-12-18 17:08:32 -08001849 /*
1850 * Clear the old entry under pagetable lock and establish the new PTE.
1851 * Any parallel GUP will either observe the old page blocking on the
1852 * page lock, block on the page table lock or observe the new page.
1853 * The SetPageUptodate on the new page and page_add_new_anon_rmap
1854 * guarantee the copy is visible before the pagetable update.
1855 */
Mel Gormanf714f4f2013-12-18 17:08:33 -08001856 flush_cache_range(vma, mmun_start, mmun_end);
Mel Gorman11de9922014-06-04 16:07:41 -07001857 page_add_anon_rmap(new_page, vma, mmun_start);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001858 pmdp_clear_flush(vma, mmun_start, pmd);
1859 set_pmd_at(mm, mmun_start, pmd, entry);
1860 flush_tlb_range(vma, mmun_start, mmun_end);
Stephen Rothwellce4a9cc2012-12-10 19:50:57 +11001861 update_mmu_cache_pmd(vma, address, &entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001862
1863 if (page_count(page) != 2) {
Mel Gormanf714f4f2013-12-18 17:08:33 -08001864 set_pmd_at(mm, mmun_start, pmd, orig_entry);
1865 flush_tlb_range(vma, mmun_start, mmun_end);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001866 update_mmu_cache_pmd(vma, address, &entry);
1867 page_remove_rmap(new_page);
1868 goto fail_putback;
1869 }
1870
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001871 mem_cgroup_migrate(page, new_page, false);
1872
Mel Gormanb32967f2012-11-19 12:35:47 +00001873 page_remove_rmap(page);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001874
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08001875 spin_unlock(ptl);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001876 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Mel Gormanb32967f2012-11-19 12:35:47 +00001877
Mel Gorman11de9922014-06-04 16:07:41 -07001878 /* Take an "isolate" reference and put new page on the LRU. */
1879 get_page(new_page);
1880 putback_lru_page(new_page);
1881
Mel Gormanb32967f2012-11-19 12:35:47 +00001882 unlock_page(new_page);
1883 unlock_page(page);
1884 put_page(page); /* Drop the rmap reference */
1885 put_page(page); /* Drop the LRU isolation reference */
1886
1887 count_vm_events(PGMIGRATE_SUCCESS, HPAGE_PMD_NR);
1888 count_vm_numa_events(NUMA_PAGE_MIGRATE, HPAGE_PMD_NR);
1889
Mel Gormanb32967f2012-11-19 12:35:47 +00001890 mod_zone_page_state(page_zone(page),
1891 NR_ISOLATED_ANON + page_lru,
1892 -HPAGE_PMD_NR);
1893 return isolated;
1894
Hugh Dickins340ef392013-02-22 16:34:33 -08001895out_fail:
1896 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
Mel Gormanb32967f2012-11-19 12:35:47 +00001897out_dropref:
Mel Gorman2b4847e2013-12-18 17:08:32 -08001898 ptl = pmd_lock(mm, pmd);
1899 if (pmd_same(*pmd, entry)) {
1900 entry = pmd_mknonnuma(entry);
Mel Gormanf714f4f2013-12-18 17:08:33 -08001901 set_pmd_at(mm, mmun_start, pmd, entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08001902 update_mmu_cache_pmd(vma, address, &entry);
1903 }
1904 spin_unlock(ptl);
Mel Gormana54a4072013-10-07 11:28:46 +01001905
Mel Gormaneb4489f62013-12-18 17:08:39 -08001906out_unlock:
Hugh Dickins340ef392013-02-22 16:34:33 -08001907 unlock_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001908 put_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00001909 return 0;
1910}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02001911#endif /* CONFIG_NUMA_BALANCING */
1912
1913#endif /* CONFIG_NUMA */