blob: 55dbc45880c60a39d2e027af93498861d3e8fcc0 [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>
16#include <linux/module.h>
17#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/gfp.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080037
38#include "internal.h"
39
Christoph Lameterb20a3502006-03-22 00:09:12 -080040#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
41
42/*
Christoph Lameter742755a2006-06-23 02:03:55 -070043 * migrate_prep() needs to be called before we start compiling a list of pages
Mel Gorman748446b2010-05-24 14:32:27 -070044 * to be migrated using isolate_lru_page(). If scheduling work on other CPUs is
45 * undesirable, use migrate_prep_local()
Christoph Lameterb20a3502006-03-22 00:09:12 -080046 */
47int migrate_prep(void)
48{
Christoph Lameterb20a3502006-03-22 00:09:12 -080049 /*
50 * Clear the LRU lists so pages can be isolated.
51 * Note that pages may be moved off the LRU after we have
52 * drained them. Those pages will fail to migrate like other
53 * pages that may be busy.
54 */
55 lru_add_drain_all();
56
57 return 0;
58}
59
Mel Gorman748446b2010-05-24 14:32:27 -070060/* Do the necessary work of migrate_prep but not if it involves other CPUs */
61int migrate_prep_local(void)
62{
63 lru_add_drain();
64
65 return 0;
66}
67
Christoph Lameterb20a3502006-03-22 00:09:12 -080068/*
Lee Schermerhorn894bc312008-10-18 20:26:39 -070069 * Add isolated pages on the list back to the LRU under page lock
70 * to avoid leaking evictable pages back onto unevictable list.
Christoph Lameterb20a3502006-03-22 00:09:12 -080071 */
Minchan Kime13861d2010-05-24 14:31:59 -070072void putback_lru_pages(struct list_head *l)
Christoph Lameterb20a3502006-03-22 00:09:12 -080073{
74 struct page *page;
75 struct page *page2;
Christoph Lameterb20a3502006-03-22 00:09:12 -080076
77 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -070078 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -070079 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -070080 page_is_file_cache(page));
Lee Schermerhorn894bc312008-10-18 20:26:39 -070081 putback_lru_page(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -080082 }
Christoph Lameterb20a3502006-03-22 00:09:12 -080083}
84
Christoph Lameter06972122006-06-23 02:03:35 -070085/*
86 * Restore a potential migration pte to a working pte entry
87 */
Hugh Dickinse9995ef2009-12-14 17:59:31 -080088static int remove_migration_pte(struct page *new, struct vm_area_struct *vma,
89 unsigned long addr, void *old)
Christoph Lameter06972122006-06-23 02:03:35 -070090{
91 struct mm_struct *mm = vma->vm_mm;
92 swp_entry_t entry;
93 pgd_t *pgd;
94 pud_t *pud;
95 pmd_t *pmd;
96 pte_t *ptep, pte;
97 spinlock_t *ptl;
98
Naoya Horiguchi290408d2010-09-08 10:19:35 +090099 if (unlikely(PageHuge(new))) {
100 ptep = huge_pte_offset(mm, addr);
101 if (!ptep)
102 goto out;
103 ptl = &mm->page_table_lock;
104 } else {
105 pgd = pgd_offset(mm, addr);
106 if (!pgd_present(*pgd))
107 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700108
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900109 pud = pud_offset(pgd, addr);
110 if (!pud_present(*pud))
111 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700112
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900113 pmd = pmd_offset(pud, addr);
114 if (!pmd_present(*pmd))
115 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700116
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900117 ptep = pte_offset_map(pmd, addr);
Christoph Lameter06972122006-06-23 02:03:35 -0700118
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900119 if (!is_swap_pte(*ptep)) {
120 pte_unmap(ptep);
121 goto out;
122 }
Christoph Lameter06972122006-06-23 02:03:35 -0700123
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900124 ptl = pte_lockptr(mm, pmd);
125 }
126
Christoph Lameter06972122006-06-23 02:03:35 -0700127 spin_lock(ptl);
128 pte = *ptep;
129 if (!is_swap_pte(pte))
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800130 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700131
132 entry = pte_to_swp_entry(pte);
133
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800134 if (!is_migration_entry(entry) ||
135 migration_entry_to_page(entry) != old)
136 goto unlock;
Christoph Lameter06972122006-06-23 02:03:35 -0700137
Christoph Lameter06972122006-06-23 02:03:35 -0700138 get_page(new);
139 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
140 if (is_write_migration_entry(entry))
141 pte = pte_mkwrite(pte);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900142 if (PageHuge(new))
143 pte = pte_mkhuge(pte);
KAMEZAWA Hiroyuki97ee0522007-10-16 01:25:43 -0700144 flush_cache_page(vma, addr, pte_pfn(pte));
Christoph Lameter06972122006-06-23 02:03:35 -0700145 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700146
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900147 if (PageHuge(new)) {
148 if (PageAnon(new))
149 hugepage_add_anon_rmap(new, vma, addr);
150 else
151 page_dup_rmap(new);
152 } else if (PageAnon(new))
Christoph Lameter04e62a22006-06-23 02:03:38 -0700153 page_add_anon_rmap(new, vma, addr);
154 else
155 page_add_file_rmap(new);
156
157 /* No need to invalidate - it was non-present before */
Russell King4b3073e2009-12-18 16:40:18 +0000158 update_mmu_cache(vma, addr, ptep);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800159unlock:
Christoph Lameter06972122006-06-23 02:03:35 -0700160 pte_unmap_unlock(ptep, ptl);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800161out:
162 return SWAP_AGAIN;
Christoph Lameter06972122006-06-23 02:03:35 -0700163}
164
165/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700166 * Get rid of all migration entries and replace them by
167 * references to the indicated page.
168 */
169static void remove_migration_ptes(struct page *old, struct page *new)
170{
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800171 rmap_walk(new, remove_migration_pte, old);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700172}
173
174/*
Christoph Lameter06972122006-06-23 02:03:35 -0700175 * Something used the pte of a page under migration. We need to
176 * get to the page and wait until migration is finished.
177 * When we return from this function the fault will be retried.
178 *
179 * This function is called from do_swap_page().
180 */
181void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
182 unsigned long address)
183{
184 pte_t *ptep, pte;
185 spinlock_t *ptl;
186 swp_entry_t entry;
187 struct page *page;
188
189 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
190 pte = *ptep;
191 if (!is_swap_pte(pte))
192 goto out;
193
194 entry = pte_to_swp_entry(pte);
195 if (!is_migration_entry(entry))
196 goto out;
197
198 page = migration_entry_to_page(entry);
199
Nick Piggine2867812008-07-25 19:45:30 -0700200 /*
201 * Once radix-tree replacement of page migration started, page_count
202 * *must* be zero. And, we don't want to call wait_on_page_locked()
203 * against a page without get_page().
204 * So, we use get_page_unless_zero(), here. Even failed, page fault
205 * will occur again.
206 */
207 if (!get_page_unless_zero(page))
208 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700209 pte_unmap_unlock(ptep, ptl);
210 wait_on_page_locked(page);
211 put_page(page);
212 return;
213out:
214 pte_unmap_unlock(ptep, ptl);
215}
216
Christoph Lameterb20a3502006-03-22 00:09:12 -0800217/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700218 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700219 *
220 * The number of remaining references must be:
221 * 1 for anonymous pages without a mapping
222 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100223 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800224 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700225static int migrate_page_move_mapping(struct address_space *mapping,
226 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800227{
Nick Piggine2867812008-07-25 19:45:30 -0700228 int expected_count;
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800229 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800230
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700231 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700232 /* Anonymous page without mapping */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700233 if (page_count(page) != 1)
234 return -EAGAIN;
235 return 0;
236 }
237
Nick Piggin19fd6232008-07-25 19:45:32 -0700238 spin_lock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800239
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800240 pslot = radix_tree_lookup_slot(&mapping->page_tree,
241 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800242
Johannes Weineredcf4742009-09-21 17:02:59 -0700243 expected_count = 2 + page_has_private(page);
Nick Piggine2867812008-07-25 19:45:30 -0700244 if (page_count(page) != expected_count ||
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800245 (struct page *)radix_tree_deref_slot(pslot) != page) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700246 spin_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700247 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800248 }
249
Nick Piggine2867812008-07-25 19:45:30 -0700250 if (!page_freeze_refs(page, expected_count)) {
Nick Piggin19fd6232008-07-25 19:45:32 -0700251 spin_unlock_irq(&mapping->tree_lock);
Nick Piggine2867812008-07-25 19:45:30 -0700252 return -EAGAIN;
253 }
254
Christoph Lameterb20a3502006-03-22 00:09:12 -0800255 /*
256 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800257 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800258 get_page(newpage); /* add cache reference */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800259 if (PageSwapCache(page)) {
260 SetPageSwapCache(newpage);
261 set_page_private(newpage, page_private(page));
262 }
263
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800264 radix_tree_replace_slot(pslot, newpage);
265
Nick Piggine2867812008-07-25 19:45:30 -0700266 page_unfreeze_refs(page, expected_count);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800267 /*
268 * Drop cache reference from old page.
269 * We know this isn't the last reference.
270 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800271 __put_page(page);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800272
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700273 /*
274 * If moved to a different zone then also account
275 * the page for that zone. Other VM counters will be
276 * taken care of when we establish references to the
277 * new page and drop references to the old page.
278 *
279 * Note that anonymous pages are accounted for
280 * via NR_FILE_PAGES and NR_ANON_PAGES if they
281 * are mapped to swap space.
282 */
283 __dec_zone_page_state(page, NR_FILE_PAGES);
284 __inc_zone_page_state(newpage, NR_FILE_PAGES);
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700285 if (PageSwapBacked(page)) {
286 __dec_zone_page_state(page, NR_SHMEM);
287 __inc_zone_page_state(newpage, NR_SHMEM);
288 }
Nick Piggin19fd6232008-07-25 19:45:32 -0700289 spin_unlock_irq(&mapping->tree_lock);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800290
291 return 0;
292}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800293
294/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900295 * The expected number of remaining references is the same as that
296 * of migrate_page_move_mapping().
297 */
298int migrate_huge_page_move_mapping(struct address_space *mapping,
299 struct page *newpage, struct page *page)
300{
301 int expected_count;
302 void **pslot;
303
304 if (!mapping) {
305 if (page_count(page) != 1)
306 return -EAGAIN;
307 return 0;
308 }
309
310 spin_lock_irq(&mapping->tree_lock);
311
312 pslot = radix_tree_lookup_slot(&mapping->page_tree,
313 page_index(page));
314
315 expected_count = 2 + page_has_private(page);
316 if (page_count(page) != expected_count ||
317 (struct page *)radix_tree_deref_slot(pslot) != page) {
318 spin_unlock_irq(&mapping->tree_lock);
319 return -EAGAIN;
320 }
321
322 if (!page_freeze_refs(page, expected_count)) {
323 spin_unlock_irq(&mapping->tree_lock);
324 return -EAGAIN;
325 }
326
327 get_page(newpage);
328
329 radix_tree_replace_slot(pslot, newpage);
330
331 page_unfreeze_refs(page, expected_count);
332
333 __put_page(page);
334
335 spin_unlock_irq(&mapping->tree_lock);
336 return 0;
337}
338
339/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800340 * Copy the page to its new location
341 */
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900342void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800343{
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900344 if (PageHuge(page))
345 copy_huge_page(newpage, page);
346 else
347 copy_highpage(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800348
349 if (PageError(page))
350 SetPageError(newpage);
351 if (PageReferenced(page))
352 SetPageReferenced(newpage);
353 if (PageUptodate(page))
354 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700355 if (TestClearPageActive(page)) {
356 VM_BUG_ON(PageUnevictable(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800357 SetPageActive(newpage);
Lee Schermerhorn418b27e2009-12-14 17:59:54 -0800358 } else if (TestClearPageUnevictable(page))
359 SetPageUnevictable(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800360 if (PageChecked(page))
361 SetPageChecked(newpage);
362 if (PageMappedToDisk(page))
363 SetPageMappedToDisk(newpage);
364
365 if (PageDirty(page)) {
366 clear_page_dirty_for_io(page);
Nick Piggin3a902c52008-04-30 00:55:16 -0700367 /*
368 * Want to mark the page and the radix tree as dirty, and
369 * redo the accounting that clear_page_dirty_for_io undid,
370 * but we can't use set_page_dirty because that function
371 * is actually a signal that all of the page has become dirty.
372 * Wheras only part of our page may be dirty.
373 */
374 __set_page_dirty_nobuffers(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800375 }
376
Nick Pigginb291f002008-10-18 20:26:44 -0700377 mlock_migrate_page(newpage, page);
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800378 ksm_migrate_page(newpage, page);
Nick Pigginb291f002008-10-18 20:26:44 -0700379
Christoph Lameterb20a3502006-03-22 00:09:12 -0800380 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800381 ClearPagePrivate(page);
382 set_page_private(page, 0);
383 page->mapping = NULL;
384
385 /*
386 * If any waiters have accumulated on the new page then
387 * wake them up.
388 */
389 if (PageWriteback(newpage))
390 end_page_writeback(newpage);
391}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800392
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700393/************************************************************
394 * Migration functions
395 ***********************************************************/
396
397/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700398int fail_migrate_page(struct address_space *mapping,
399 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700400{
401 return -EIO;
402}
403EXPORT_SYMBOL(fail_migrate_page);
404
Christoph Lameterb20a3502006-03-22 00:09:12 -0800405/*
406 * Common logic to directly migrate a single page suitable for
David Howells266cf652009-04-03 16:42:36 +0100407 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800408 *
409 * Pages are locked upon entry and exit.
410 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700411int migrate_page(struct address_space *mapping,
412 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800413{
414 int rc;
415
416 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
417
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700418 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800419
420 if (rc)
421 return rc;
422
423 migrate_page_copy(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800424 return 0;
425}
426EXPORT_SYMBOL(migrate_page);
427
David Howells93614012006-09-30 20:45:40 +0200428#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800429/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700430 * Migration function for pages with buffers. This function can only be used
431 * if the underlying filesystem guarantees that no other references to "page"
432 * exist.
433 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700434int buffer_migrate_page(struct address_space *mapping,
435 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700436{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700437 struct buffer_head *bh, *head;
438 int rc;
439
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700440 if (!page_has_buffers(page))
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700441 return migrate_page(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700442
443 head = page_buffers(page);
444
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700445 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700446
447 if (rc)
448 return rc;
449
450 bh = head;
451 do {
452 get_bh(bh);
453 lock_buffer(bh);
454 bh = bh->b_this_page;
455
456 } while (bh != head);
457
458 ClearPagePrivate(page);
459 set_page_private(newpage, page_private(page));
460 set_page_private(page, 0);
461 put_page(page);
462 get_page(newpage);
463
464 bh = head;
465 do {
466 set_bh_page(bh, newpage, bh_offset(bh));
467 bh = bh->b_this_page;
468
469 } while (bh != head);
470
471 SetPagePrivate(newpage);
472
473 migrate_page_copy(newpage, page);
474
475 bh = head;
476 do {
477 unlock_buffer(bh);
478 put_bh(bh);
479 bh = bh->b_this_page;
480
481 } while (bh != head);
482
483 return 0;
484}
485EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200486#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700487
Christoph Lameter04e62a22006-06-23 02:03:38 -0700488/*
489 * Writeback a page to clean the dirty state
490 */
491static int writeout(struct address_space *mapping, struct page *page)
492{
493 struct writeback_control wbc = {
494 .sync_mode = WB_SYNC_NONE,
495 .nr_to_write = 1,
496 .range_start = 0,
497 .range_end = LLONG_MAX,
498 .nonblocking = 1,
499 .for_reclaim = 1
500 };
501 int rc;
502
503 if (!mapping->a_ops->writepage)
504 /* No write method for the address space */
505 return -EINVAL;
506
507 if (!clear_page_dirty_for_io(page))
508 /* Someone else already triggered a write */
509 return -EAGAIN;
510
511 /*
512 * A dirty page may imply that the underlying filesystem has
513 * the page on some queue. So the page must be clean for
514 * migration. Writeout may mean we loose the lock and the
515 * page state is no longer what we checked for earlier.
516 * At this point we know that the migration attempt cannot
517 * be successful.
518 */
519 remove_migration_ptes(page, page);
520
521 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700522
523 if (rc != AOP_WRITEPAGE_ACTIVATE)
524 /* unlocked. Relock */
525 lock_page(page);
526
Hugh Dickinsbda85502008-11-19 15:36:36 -0800527 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700528}
529
530/*
531 * Default handling if a filesystem does not provide a migration function.
532 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700533static int fallback_migrate_page(struct address_space *mapping,
534 struct page *newpage, struct page *page)
535{
Christoph Lameter04e62a22006-06-23 02:03:38 -0700536 if (PageDirty(page))
537 return writeout(mapping, page);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700538
539 /*
540 * Buffers may be managed in a filesystem specific way.
541 * We must have no buffers or drop them.
542 */
David Howells266cf652009-04-03 16:42:36 +0100543 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700544 !try_to_release_page(page, GFP_KERNEL))
545 return -EAGAIN;
546
547 return migrate_page(mapping, newpage, page);
548}
549
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700550/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700551 * Move a page to a newly allocated page
552 * The page is locked and all ptes have been successfully removed.
553 *
554 * The new page will have replaced the old page if this function
555 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700556 *
557 * Return value:
558 * < 0 - error code
559 * == 0 - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700560 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700561static int move_to_new_page(struct page *newpage, struct page *page,
562 int remap_swapcache)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700563{
564 struct address_space *mapping;
565 int rc;
566
567 /*
568 * Block others from accessing the page when we get around to
569 * establishing additional references. We are the only one
570 * holding a reference to the new page at this point.
571 */
Nick Piggin529ae9a2008-08-02 12:01:03 +0200572 if (!trylock_page(newpage))
Christoph Lametere24f0b82006-06-23 02:03:51 -0700573 BUG();
574
575 /* Prepare mapping for the new page.*/
576 newpage->index = page->index;
577 newpage->mapping = page->mapping;
Rik van Rielb2e18532008-10-18 20:26:30 -0700578 if (PageSwapBacked(page))
579 SetPageSwapBacked(newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700580
581 mapping = page_mapping(page);
582 if (!mapping)
583 rc = migrate_page(mapping, newpage, page);
584 else if (mapping->a_ops->migratepage)
585 /*
586 * Most pages have a mapping and most filesystems
587 * should provide a migration function. Anonymous
588 * pages are part of swap space which also has its
589 * own migration function. This is the most common
590 * path for page migration.
591 */
592 rc = mapping->a_ops->migratepage(mapping,
593 newpage, page);
594 else
595 rc = fallback_migrate_page(mapping, newpage, page);
596
Mel Gorman3fe20112010-05-24 14:32:20 -0700597 if (rc) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700598 newpage->mapping = NULL;
Mel Gorman3fe20112010-05-24 14:32:20 -0700599 } else {
600 if (remap_swapcache)
601 remove_migration_ptes(page, newpage);
602 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700603
604 unlock_page(newpage);
605
606 return rc;
607}
608
609/*
610 * Obtain the lock on page, remove all ptes and migrate the page
611 * to the newly allocated page in newpage.
612 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700613static int unmap_and_move(new_page_t get_new_page, unsigned long private,
Hugh Dickins62b61f62009-12-14 17:59:33 -0800614 struct page *page, int force, int offlining)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700615{
616 int rc = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -0700617 int *result = NULL;
618 struct page *newpage = get_new_page(page, private, &result);
Mel Gorman3fe20112010-05-24 14:32:20 -0700619 int remap_swapcache = 1;
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700620 int rcu_locked = 0;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800621 int charge = 0;
KAMEZAWA Hiroyukie00e4312009-11-11 14:26:26 -0800622 struct mem_cgroup *mem = NULL;
Mel Gorman3f6c8272010-05-24 14:32:17 -0700623 struct anon_vma *anon_vma = NULL;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700624
625 if (!newpage)
626 return -ENOMEM;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700627
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700628 if (page_count(page) == 1) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700629 /* page was freed from under us. So we are done. */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700630 goto move_newpage;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700631 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700632
KAMEZAWA Hiroyukie8589cc2008-07-25 01:47:10 -0700633 /* prepare cgroup just returns 0 or -ENOMEM */
Christoph Lametere24f0b82006-06-23 02:03:51 -0700634 rc = -EAGAIN;
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800635
Nick Piggin529ae9a2008-08-02 12:01:03 +0200636 if (!trylock_page(page)) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700637 if (!force)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700638 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700639 lock_page(page);
640 }
641
Hugh Dickins62b61f62009-12-14 17:59:33 -0800642 /*
643 * Only memory hotplug's offline_pages() caller has locked out KSM,
644 * and can safely migrate a KSM page. The other cases have skipped
645 * PageKsm along with PageReserved - but it is only now when we have
646 * the page lock that we can be certain it will not go KSM beneath us
647 * (KSM will not upgrade a page from PageAnon to PageKsm when it sees
648 * its pagecount raised, but only here do we take the page lock which
649 * serializes that).
650 */
651 if (PageKsm(page) && !offlining) {
652 rc = -EBUSY;
653 goto unlock;
654 }
655
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800656 /* charge against new page */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -0700657 charge = mem_cgroup_prepare_migration(page, newpage, &mem);
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800658 if (charge == -ENOMEM) {
659 rc = -ENOMEM;
660 goto unlock;
661 }
662 BUG_ON(charge);
663
Christoph Lametere24f0b82006-06-23 02:03:51 -0700664 if (PageWriteback(page)) {
665 if (!force)
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800666 goto uncharge;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700667 wait_on_page_writeback(page);
668 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700669 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700670 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
671 * we cannot notice that anon_vma is freed while we migrates a page.
672 * This rcu_read_lock() delays freeing anon_vma pointer until the end
673 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700674 * File Caches may use write_page() or lock_page() in migration, then,
675 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700676 */
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700677 if (PageAnon(page)) {
678 rcu_read_lock();
679 rcu_locked = 1;
Mel Gorman67b95092010-05-24 14:32:19 -0700680
Mel Gorman3fe20112010-05-24 14:32:20 -0700681 /* Determine how to safely use anon_vma */
682 if (!page_mapped(page)) {
683 if (!PageSwapCache(page))
684 goto rcu_unlock;
Mel Gorman67b95092010-05-24 14:32:19 -0700685
Mel Gorman3fe20112010-05-24 14:32:20 -0700686 /*
687 * We cannot be sure that the anon_vma of an unmapped
688 * swapcache page is safe to use because we don't
689 * know in advance if the VMA that this page belonged
690 * to still exists. If the VMA and others sharing the
691 * data have been freed, then the anon_vma could
692 * already be invalid.
693 *
694 * To avoid this possibility, swapcache pages get
695 * migrated but are not remapped when migration
696 * completes
697 */
698 remap_swapcache = 0;
699 } else {
700 /*
701 * Take a reference count on the anon_vma if the
702 * page is mapped so that it is guaranteed to
703 * exist when the page is remapped later
704 */
705 anon_vma = page_anon_vma(page);
Rik van Riel76545062010-08-09 17:18:41 -0700706 get_anon_vma(anon_vma);
Mel Gorman3fe20112010-05-24 14:32:20 -0700707 }
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700708 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800709
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700710 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800711 * Corner case handling:
712 * 1. When a new swap-cache page is read into, it is added to the LRU
713 * and treated as swapcache but it has no rmap yet.
714 * Calling try_to_unmap() against a page->mapping==NULL page will
715 * trigger a BUG. So handle it here.
716 * 2. An orphaned page (see truncate_complete_page) might have
717 * fs-private metadata. The page can be picked up due to memory
718 * offlining. Everywhere else except page reclaim, the page is
719 * invisible to the vm, so the page can not be migrated. So try to
720 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700721 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800722 if (!page->mapping) {
David Howells266cf652009-04-03 16:42:36 +0100723 if (!PageAnon(page) && page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -0800724 /*
725 * Go direct to try_to_free_buffers() here because
726 * a) that's what try_to_release_page() would do anyway
727 * b) we may be under rcu_read_lock() here, so we can't
728 * use GFP_KERNEL which is what try_to_release_page()
729 * needs to be effective.
730 */
731 try_to_free_buffers(page);
Shaohua Liabfc3482009-09-21 17:01:19 -0700732 goto rcu_unlock;
Shaohua Li62e1c552008-02-04 22:29:33 -0800733 }
Shaohua Liabfc3482009-09-21 17:01:19 -0700734 goto skip_unmap;
Shaohua Li62e1c552008-02-04 22:29:33 -0800735 }
736
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700737 /* Establish migration ptes or remove ptes */
Andi Kleen14fa31b2009-09-16 11:50:10 +0200738 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700739
Shaohua Liabfc3482009-09-21 17:01:19 -0700740skip_unmap:
Christoph Lametere6a15302006-06-25 05:46:49 -0700741 if (!page_mapped(page))
Mel Gorman3fe20112010-05-24 14:32:20 -0700742 rc = move_to_new_page(newpage, page, remap_swapcache);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700743
Mel Gorman3fe20112010-05-24 14:32:20 -0700744 if (rc && remap_swapcache)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700745 remove_migration_ptes(page, page);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700746rcu_unlock:
Mel Gorman3f6c8272010-05-24 14:32:17 -0700747
748 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -0700749 if (anon_vma)
750 drop_anon_vma(anon_vma);
Mel Gorman3f6c8272010-05-24 14:32:17 -0700751
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700752 if (rcu_locked)
753 rcu_read_unlock();
KAMEZAWA Hiroyuki01b1ae62009-01-07 18:07:50 -0800754uncharge:
755 if (!charge)
756 mem_cgroup_end_migration(mem, page, newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700757unlock:
758 unlock_page(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700759
Christoph Lametere24f0b82006-06-23 02:03:51 -0700760 if (rc != -EAGAIN) {
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700761 /*
762 * A page that has been migrated has all references
763 * removed and will be freed. A page that has not been
764 * migrated will have kepts its references and be
765 * restored.
766 */
767 list_del(&page->lru);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700768 dec_zone_page_state(page, NR_ISOLATED_ANON +
Johannes Weiner6c0b1352009-09-21 17:02:59 -0700769 page_is_file_cache(page));
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700770 putback_lru_page(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700771 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700772
773move_newpage:
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700774
Christoph Lameter95a402c2006-06-23 02:03:53 -0700775 /*
776 * Move the new page to the LRU. If migration was not successful
777 * then this will free the page.
778 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700779 putback_lru_page(newpage);
780
Christoph Lameter742755a2006-06-23 02:03:55 -0700781 if (result) {
782 if (rc)
783 *result = rc;
784 else
785 *result = page_to_nid(newpage);
786 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700787 return rc;
788}
789
790/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900791 * Counterpart of unmap_and_move_page() for hugepage migration.
792 *
793 * This function doesn't wait the completion of hugepage I/O
794 * because there is no race between I/O and migration for hugepage.
795 * Note that currently hugepage I/O occurs only in direct I/O
796 * where no lock is held and PG_writeback is irrelevant,
797 * and writeback status of all subpages are counted in the reference
798 * count of the head page (i.e. if all subpages of a 2MB hugepage are
799 * under direct I/O, the reference of the head page is 512 and a bit more.)
800 * This means that when we try to migrate hugepage whose subpages are
801 * doing direct I/O, some references remain after try_to_unmap() and
802 * hugepage migration fails without data corruption.
803 *
804 * There is also no race when direct I/O is issued on the page under migration,
805 * because then pte is replaced with migration swap entry and direct I/O code
806 * will wait in the page fault for migration to complete.
807 */
808static int unmap_and_move_huge_page(new_page_t get_new_page,
809 unsigned long private, struct page *hpage,
810 int force, int offlining)
811{
812 int rc = 0;
813 int *result = NULL;
814 struct page *new_hpage = get_new_page(hpage, private, &result);
815 int rcu_locked = 0;
816 struct anon_vma *anon_vma = NULL;
817
818 if (!new_hpage)
819 return -ENOMEM;
820
821 rc = -EAGAIN;
822
823 if (!trylock_page(hpage)) {
824 if (!force)
825 goto out;
826 lock_page(hpage);
827 }
828
829 if (PageAnon(hpage)) {
830 rcu_read_lock();
831 rcu_locked = 1;
832
833 if (page_mapped(hpage)) {
834 anon_vma = page_anon_vma(hpage);
835 atomic_inc(&anon_vma->external_refcount);
836 }
837 }
838
839 try_to_unmap(hpage, TTU_MIGRATION|TTU_IGNORE_MLOCK|TTU_IGNORE_ACCESS);
840
841 if (!page_mapped(hpage))
842 rc = move_to_new_page(new_hpage, hpage, 1);
843
844 if (rc)
845 remove_migration_ptes(hpage, hpage);
846
847 if (anon_vma && atomic_dec_and_lock(&anon_vma->external_refcount,
848 &anon_vma->lock)) {
849 int empty = list_empty(&anon_vma->head);
850 spin_unlock(&anon_vma->lock);
851 if (empty)
852 anon_vma_free(anon_vma);
853 }
854
855 if (rcu_locked)
856 rcu_read_unlock();
857out:
858 unlock_page(hpage);
859
860 if (rc != -EAGAIN) {
861 list_del(&hpage->lru);
862 put_page(hpage);
863 }
864
865 put_page(new_hpage);
866
867 if (result) {
868 if (rc)
869 *result = rc;
870 else
871 *result = page_to_nid(new_hpage);
872 }
873 return rc;
874}
875
876/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800877 * migrate_pages
878 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700879 * The function takes one list of pages to migrate and a function
880 * that determines from the page to be migrated and the private data
881 * the target of the move and allocates the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800882 *
883 * The function returns after 10 attempts or if no pages
884 * are movable anymore because to has become empty
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700885 * or no retryable pages exist anymore. All pages will be
Gabriel Craciunescue9534b32007-10-20 02:13:26 +0200886 * returned to the LRU or freed.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800887 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700888 * Return: Number of pages not migrated or error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800889 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700890int migrate_pages(struct list_head *from,
Hugh Dickins62b61f62009-12-14 17:59:33 -0800891 new_page_t get_new_page, unsigned long private, int offlining)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800892{
Christoph Lametere24f0b82006-06-23 02:03:51 -0700893 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800894 int nr_failed = 0;
895 int pass = 0;
896 struct page *page;
897 struct page *page2;
898 int swapwrite = current->flags & PF_SWAPWRITE;
899 int rc;
900
901 if (!swapwrite)
902 current->flags |= PF_SWAPWRITE;
903
Christoph Lametere24f0b82006-06-23 02:03:51 -0700904 for(pass = 0; pass < 10 && retry; pass++) {
905 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800906
Christoph Lametere24f0b82006-06-23 02:03:51 -0700907 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700908 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800909
Christoph Lameter95a402c2006-06-23 02:03:53 -0700910 rc = unmap_and_move(get_new_page, private,
Hugh Dickins62b61f62009-12-14 17:59:33 -0800911 page, pass > 2, offlining);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800912
Christoph Lametere24f0b82006-06-23 02:03:51 -0700913 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -0700914 case -ENOMEM:
915 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700916 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700917 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700918 break;
919 case 0:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700920 break;
921 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700922 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700923 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700924 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700925 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800926 }
927 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700928 rc = 0;
929out:
Christoph Lameterb20a3502006-03-22 00:09:12 -0800930 if (!swapwrite)
931 current->flags &= ~PF_SWAPWRITE;
932
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700933 putback_lru_pages(from);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700934
935 if (rc)
936 return rc;
937
Christoph Lameterb20a3502006-03-22 00:09:12 -0800938 return nr_failed + retry;
939}
940
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900941int migrate_huge_pages(struct list_head *from,
942 new_page_t get_new_page, unsigned long private, int offlining)
943{
944 int retry = 1;
945 int nr_failed = 0;
946 int pass = 0;
947 struct page *page;
948 struct page *page2;
949 int rc;
950
951 for (pass = 0; pass < 10 && retry; pass++) {
952 retry = 0;
953
954 list_for_each_entry_safe(page, page2, from, lru) {
955 cond_resched();
956
957 rc = unmap_and_move_huge_page(get_new_page,
958 private, page, pass > 2, offlining);
959
960 switch(rc) {
961 case -ENOMEM:
962 goto out;
963 case -EAGAIN:
964 retry++;
965 break;
966 case 0:
967 break;
968 default:
969 /* Permanent failure */
970 nr_failed++;
971 break;
972 }
973 }
974 }
975 rc = 0;
976out:
977
978 list_for_each_entry_safe(page, page2, from, lru)
979 put_page(page);
980
981 if (rc)
982 return rc;
983
984 return nr_failed + retry;
985}
986
Christoph Lameter742755a2006-06-23 02:03:55 -0700987#ifdef CONFIG_NUMA
988/*
989 * Move a list of individual pages
990 */
991struct page_to_node {
992 unsigned long addr;
993 struct page *page;
994 int node;
995 int status;
996};
997
998static struct page *new_page_node(struct page *p, unsigned long private,
999 int **result)
1000{
1001 struct page_to_node *pm = (struct page_to_node *)private;
1002
1003 while (pm->node != MAX_NUMNODES && pm->page != p)
1004 pm++;
1005
1006 if (pm->node == MAX_NUMNODES)
1007 return NULL;
1008
1009 *result = &pm->status;
1010
Mel Gorman6484eb32009-06-16 15:31:54 -07001011 return alloc_pages_exact_node(pm->node,
Mel Gorman769848c2007-07-17 04:03:05 -07001012 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -07001013}
1014
1015/*
1016 * Move a set of pages as indicated in the pm array. The addr
1017 * field must be set to the virtual address of the page to be moved
1018 * and the node number must contain a valid target node.
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001019 * The pm array ends with node = MAX_NUMNODES.
Christoph Lameter742755a2006-06-23 02:03:55 -07001020 */
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001021static int do_move_page_to_node_array(struct mm_struct *mm,
1022 struct page_to_node *pm,
1023 int migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001024{
1025 int err;
1026 struct page_to_node *pp;
1027 LIST_HEAD(pagelist);
1028
1029 down_read(&mm->mmap_sem);
1030
1031 /*
1032 * Build a list of pages to migrate
1033 */
Christoph Lameter742755a2006-06-23 02:03:55 -07001034 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
1035 struct vm_area_struct *vma;
1036 struct page *page;
1037
Christoph Lameter742755a2006-06-23 02:03:55 -07001038 err = -EFAULT;
1039 vma = find_vma(mm, pp->addr);
Christoph Lameter0dc952d2007-03-05 00:30:33 -08001040 if (!vma || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -07001041 goto set_status;
1042
1043 page = follow_page(vma, pp->addr, FOLL_GET);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001044
1045 err = PTR_ERR(page);
1046 if (IS_ERR(page))
1047 goto set_status;
1048
Christoph Lameter742755a2006-06-23 02:03:55 -07001049 err = -ENOENT;
1050 if (!page)
1051 goto set_status;
1052
Hugh Dickins62b61f62009-12-14 17:59:33 -08001053 /* Use PageReserved to check for zero page */
1054 if (PageReserved(page) || PageKsm(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001055 goto put_and_set;
1056
1057 pp->page = page;
1058 err = page_to_nid(page);
1059
1060 if (err == pp->node)
1061 /*
1062 * Node already in the right place
1063 */
1064 goto put_and_set;
1065
1066 err = -EACCES;
1067 if (page_mapcount(page) > 1 &&
1068 !migrate_all)
1069 goto put_and_set;
1070
Nick Piggin62695a82008-10-18 20:26:09 -07001071 err = isolate_lru_page(page);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001072 if (!err) {
Nick Piggin62695a82008-10-18 20:26:09 -07001073 list_add_tail(&page->lru, &pagelist);
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001074 inc_zone_page_state(page, NR_ISOLATED_ANON +
1075 page_is_file_cache(page));
1076 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001077put_and_set:
1078 /*
1079 * Either remove the duplicate refcount from
1080 * isolate_lru_page() or drop the page ref if it was
1081 * not isolated.
1082 */
1083 put_page(page);
1084set_status:
1085 pp->status = err;
1086 }
1087
Brice Gogline78bbfa2008-10-18 20:27:15 -07001088 err = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001089 if (!list_empty(&pagelist))
1090 err = migrate_pages(&pagelist, new_page_node,
Hugh Dickins62b61f62009-12-14 17:59:33 -08001091 (unsigned long)pm, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -07001092
1093 up_read(&mm->mmap_sem);
1094 return err;
1095}
1096
1097/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001098 * Migrate an array of page address onto an array of nodes and fill
1099 * the corresponding array of status.
1100 */
1101static int do_pages_move(struct mm_struct *mm, struct task_struct *task,
1102 unsigned long nr_pages,
1103 const void __user * __user *pages,
1104 const int __user *nodes,
1105 int __user *status, int flags)
1106{
Brice Goglin3140a222009-01-06 14:38:57 -08001107 struct page_to_node *pm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001108 nodemask_t task_nodes;
Brice Goglin3140a222009-01-06 14:38:57 -08001109 unsigned long chunk_nr_pages;
1110 unsigned long chunk_start;
1111 int err;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001112
1113 task_nodes = cpuset_mems_allowed(task);
1114
Brice Goglin3140a222009-01-06 14:38:57 -08001115 err = -ENOMEM;
1116 pm = (struct page_to_node *)__get_free_page(GFP_KERNEL);
1117 if (!pm)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001118 goto out;
Brice Goglin35282a22009-06-16 15:32:43 -07001119
1120 migrate_prep();
1121
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001122 /*
Brice Goglin3140a222009-01-06 14:38:57 -08001123 * Store a chunk of page_to_node array in a page,
1124 * but keep the last one as a marker
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001125 */
Brice Goglin3140a222009-01-06 14:38:57 -08001126 chunk_nr_pages = (PAGE_SIZE / sizeof(struct page_to_node)) - 1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001127
Brice Goglin3140a222009-01-06 14:38:57 -08001128 for (chunk_start = 0;
1129 chunk_start < nr_pages;
1130 chunk_start += chunk_nr_pages) {
1131 int j;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001132
Brice Goglin3140a222009-01-06 14:38:57 -08001133 if (chunk_start + chunk_nr_pages > nr_pages)
1134 chunk_nr_pages = nr_pages - chunk_start;
1135
1136 /* fill the chunk pm with addrs and nodes from user-space */
1137 for (j = 0; j < chunk_nr_pages; j++) {
1138 const void __user *p;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001139 int node;
1140
Brice Goglin3140a222009-01-06 14:38:57 -08001141 err = -EFAULT;
1142 if (get_user(p, pages + j + chunk_start))
1143 goto out_pm;
1144 pm[j].addr = (unsigned long) p;
1145
1146 if (get_user(node, nodes + j + chunk_start))
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001147 goto out_pm;
1148
1149 err = -ENODEV;
Linus Torvalds6f5a55f2010-02-05 16:16:50 -08001150 if (node < 0 || node >= MAX_NUMNODES)
1151 goto out_pm;
1152
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001153 if (!node_state(node, N_HIGH_MEMORY))
1154 goto out_pm;
1155
1156 err = -EACCES;
1157 if (!node_isset(node, task_nodes))
1158 goto out_pm;
1159
Brice Goglin3140a222009-01-06 14:38:57 -08001160 pm[j].node = node;
1161 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001162
Brice Goglin3140a222009-01-06 14:38:57 -08001163 /* End marker for this chunk */
1164 pm[chunk_nr_pages].node = MAX_NUMNODES;
1165
1166 /* Migrate this chunk */
1167 err = do_move_page_to_node_array(mm, pm,
1168 flags & MPOL_MF_MOVE_ALL);
1169 if (err < 0)
1170 goto out_pm;
1171
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001172 /* Return status information */
Brice Goglin3140a222009-01-06 14:38:57 -08001173 for (j = 0; j < chunk_nr_pages; j++)
1174 if (put_user(pm[j].status, status + j + chunk_start)) {
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001175 err = -EFAULT;
Brice Goglin3140a222009-01-06 14:38:57 -08001176 goto out_pm;
1177 }
1178 }
1179 err = 0;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001180
1181out_pm:
Brice Goglin3140a222009-01-06 14:38:57 -08001182 free_page((unsigned long)pm);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001183out:
1184 return err;
1185}
1186
1187/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001188 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001189 */
Brice Goglin80bba122008-12-09 13:14:23 -08001190static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1191 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001192{
Brice Goglin2f007e72008-10-18 20:27:16 -07001193 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001194
Christoph Lameter742755a2006-06-23 02:03:55 -07001195 down_read(&mm->mmap_sem);
1196
Brice Goglin2f007e72008-10-18 20:27:16 -07001197 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001198 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001199 struct vm_area_struct *vma;
1200 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001201 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001202
1203 vma = find_vma(mm, addr);
Christoph Lameter742755a2006-06-23 02:03:55 -07001204 if (!vma)
1205 goto set_status;
1206
Brice Goglin2f007e72008-10-18 20:27:16 -07001207 page = follow_page(vma, addr, 0);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001208
1209 err = PTR_ERR(page);
1210 if (IS_ERR(page))
1211 goto set_status;
1212
Christoph Lameter742755a2006-06-23 02:03:55 -07001213 err = -ENOENT;
1214 /* Use PageReserved to check for zero page */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001215 if (!page || PageReserved(page) || PageKsm(page))
Christoph Lameter742755a2006-06-23 02:03:55 -07001216 goto set_status;
1217
1218 err = page_to_nid(page);
1219set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001220 *status = err;
1221
1222 pages++;
1223 status++;
1224 }
1225
1226 up_read(&mm->mmap_sem);
1227}
1228
1229/*
1230 * Determine the nodes of a user array of pages and store it in
1231 * a user array of status.
1232 */
1233static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1234 const void __user * __user *pages,
1235 int __user *status)
1236{
1237#define DO_PAGES_STAT_CHUNK_NR 16
1238 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1239 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001240
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001241 while (nr_pages) {
1242 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001243
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001244 chunk_nr = nr_pages;
1245 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1246 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1247
1248 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1249 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001250
1251 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1252
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001253 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1254 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001255
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001256 pages += chunk_nr;
1257 status += chunk_nr;
1258 nr_pages -= chunk_nr;
1259 }
1260 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001261}
1262
1263/*
1264 * Move a list of pages in the address space of the currently executing
1265 * process.
1266 */
Heiko Carstens938bb9f2009-01-14 14:14:30 +01001267SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1268 const void __user * __user *, pages,
1269 const int __user *, nodes,
1270 int __user *, status, int, flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001271{
David Howellsc69e8d92008-11-14 10:39:19 +11001272 const struct cred *cred = current_cred(), *tcred;
Christoph Lameter742755a2006-06-23 02:03:55 -07001273 struct task_struct *task;
Christoph Lameter742755a2006-06-23 02:03:55 -07001274 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001275 int err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001276
1277 /* Check flags */
1278 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1279 return -EINVAL;
1280
1281 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1282 return -EPERM;
1283
1284 /* Find the mm_struct */
1285 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07001286 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -07001287 if (!task) {
1288 read_unlock(&tasklist_lock);
1289 return -ESRCH;
1290 }
1291 mm = get_task_mm(task);
1292 read_unlock(&tasklist_lock);
1293
1294 if (!mm)
1295 return -EINVAL;
1296
1297 /*
1298 * Check if this process has the right to modify the specified
1299 * process. The right exists if the process has administrative
1300 * capabilities, superuser privileges or the same
1301 * userid as the target process.
1302 */
David Howellsc69e8d92008-11-14 10:39:19 +11001303 rcu_read_lock();
1304 tcred = __task_cred(task);
David Howellsb6dff3e2008-11-14 10:39:16 +11001305 if (cred->euid != tcred->suid && cred->euid != tcred->uid &&
1306 cred->uid != tcred->suid && cred->uid != tcred->uid &&
Christoph Lameter742755a2006-06-23 02:03:55 -07001307 !capable(CAP_SYS_NICE)) {
David Howellsc69e8d92008-11-14 10:39:19 +11001308 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001309 err = -EPERM;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001310 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001311 }
David Howellsc69e8d92008-11-14 10:39:19 +11001312 rcu_read_unlock();
Christoph Lameter742755a2006-06-23 02:03:55 -07001313
David Quigley86c3a762006-06-23 02:04:02 -07001314 err = security_task_movememory(task);
1315 if (err)
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001316 goto out;
David Quigley86c3a762006-06-23 02:04:02 -07001317
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001318 if (nodes) {
1319 err = do_pages_move(mm, task, nr_pages, pages, nodes, status,
1320 flags);
1321 } else {
Brice Goglin2f007e72008-10-18 20:27:16 -07001322 err = do_pages_stat(mm, nr_pages, pages, status);
Brice Goglin2f007e72008-10-18 20:27:16 -07001323 }
David Quigley86c3a762006-06-23 02:04:02 -07001324
Christoph Lameter742755a2006-06-23 02:03:55 -07001325out:
Christoph Lameter742755a2006-06-23 02:03:55 -07001326 mmput(mm);
1327 return err;
1328}
Christoph Lameter742755a2006-06-23 02:03:55 -07001329
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001330/*
1331 * Call migration functions in the vma_ops that may prepare
1332 * memory in a vm for migration. migration functions may perform
1333 * the migration for vmas that do not have an underlying page struct.
1334 */
1335int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1336 const nodemask_t *from, unsigned long flags)
1337{
1338 struct vm_area_struct *vma;
1339 int err = 0;
1340
Daisuke Nishimura1001c9f2009-02-11 13:04:18 -08001341 for (vma = mm->mmap; vma && !err; vma = vma->vm_next) {
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001342 if (vma->vm_ops && vma->vm_ops->migrate) {
1343 err = vma->vm_ops->migrate(vma, to, from, flags);
1344 if (err)
1345 break;
1346 }
1347 }
1348 return err;
1349}
Gerald Schaefer83d16742008-07-23 21:28:22 -07001350#endif