blob: a73504ff5ab982007b2e0355e49f0dedcac65899 [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>
12 * Christoph Lameter <clameter@sgi.com>
13 */
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>
24#include <linux/rmap.h>
25#include <linux/topology.h>
26#include <linux/cpu.h>
27#include <linux/cpuset.h>
Christoph Lameter04e62a22006-06-23 02:03:38 -070028#include <linux/writeback.h>
Christoph Lameter742755a2006-06-23 02:03:55 -070029#include <linux/mempolicy.h>
30#include <linux/vmalloc.h>
David Quigley86c3a762006-06-23 02:04:02 -070031#include <linux/security.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080032#include <linux/memcontrol.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080033
34#include "internal.h"
35
Christoph Lameterb20a3502006-03-22 00:09:12 -080036#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
37
38/*
39 * Isolate one page from the LRU lists. If successful put it onto
40 * the indicated list with elevated page count.
41 *
42 * Result:
43 * -EBUSY: page not on LRU list
44 * 0: page removed from LRU list and added to the specified list.
45 */
46int isolate_lru_page(struct page *page, struct list_head *pagelist)
47{
48 int ret = -EBUSY;
49
50 if (PageLRU(page)) {
51 struct zone *zone = page_zone(page);
52
53 spin_lock_irq(&zone->lru_lock);
KAMEZAWA Hiroyuki3dd9fe82007-07-26 10:41:08 -070054 if (PageLRU(page) && get_page_unless_zero(page)) {
Christoph Lameterb20a3502006-03-22 00:09:12 -080055 ret = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -080056 ClearPageLRU(page);
57 if (PageActive(page))
58 del_page_from_active_list(zone, page);
59 else
60 del_page_from_inactive_list(zone, page);
61 list_add_tail(&page->lru, pagelist);
62 }
63 spin_unlock_irq(&zone->lru_lock);
64 }
65 return ret;
66}
67
68/*
Christoph Lameter742755a2006-06-23 02:03:55 -070069 * migrate_prep() needs to be called before we start compiling a list of pages
70 * to be migrated using isolate_lru_page().
Christoph Lameterb20a3502006-03-22 00:09:12 -080071 */
72int migrate_prep(void)
73{
Christoph Lameterb20a3502006-03-22 00:09:12 -080074 /*
75 * Clear the LRU lists so pages can be isolated.
76 * Note that pages may be moved off the LRU after we have
77 * drained them. Those pages will fail to migrate like other
78 * pages that may be busy.
79 */
80 lru_add_drain_all();
81
82 return 0;
83}
84
85static inline void move_to_lru(struct page *page)
86{
Christoph Lameterb20a3502006-03-22 00:09:12 -080087 if (PageActive(page)) {
88 /*
89 * lru_cache_add_active checks that
90 * the PG_active bit is off.
91 */
92 ClearPageActive(page);
93 lru_cache_add_active(page);
94 } else {
95 lru_cache_add(page);
96 }
97 put_page(page);
98}
99
100/*
101 * Add isolated pages on the list back to the LRU.
102 *
103 * returns the number of pages put back.
104 */
105int putback_lru_pages(struct list_head *l)
106{
107 struct page *page;
108 struct page *page2;
109 int count = 0;
110
111 list_for_each_entry_safe(page, page2, l, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700112 list_del(&page->lru);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800113 move_to_lru(page);
114 count++;
115 }
116 return count;
117}
118
Christoph Lameter06972122006-06-23 02:03:35 -0700119/*
120 * Restore a potential migration pte to a working pte entry
121 */
Christoph Lameter04e62a22006-06-23 02:03:38 -0700122static void remove_migration_pte(struct vm_area_struct *vma,
Christoph Lameter06972122006-06-23 02:03:35 -0700123 struct page *old, struct page *new)
124{
125 struct mm_struct *mm = vma->vm_mm;
126 swp_entry_t entry;
127 pgd_t *pgd;
128 pud_t *pud;
129 pmd_t *pmd;
130 pte_t *ptep, pte;
131 spinlock_t *ptl;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700132 unsigned long addr = page_address_in_vma(new, vma);
133
134 if (addr == -EFAULT)
135 return;
Christoph Lameter06972122006-06-23 02:03:35 -0700136
137 pgd = pgd_offset(mm, addr);
138 if (!pgd_present(*pgd))
139 return;
140
141 pud = pud_offset(pgd, addr);
142 if (!pud_present(*pud))
143 return;
144
145 pmd = pmd_offset(pud, addr);
146 if (!pmd_present(*pmd))
147 return;
148
149 ptep = pte_offset_map(pmd, addr);
150
151 if (!is_swap_pte(*ptep)) {
152 pte_unmap(ptep);
153 return;
154 }
155
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800156 if (mem_cgroup_charge(new, mm, GFP_KERNEL)) {
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800157 pte_unmap(ptep);
158 return;
159 }
160
Christoph Lameter06972122006-06-23 02:03:35 -0700161 ptl = pte_lockptr(mm, pmd);
162 spin_lock(ptl);
163 pte = *ptep;
164 if (!is_swap_pte(pte))
165 goto out;
166
167 entry = pte_to_swp_entry(pte);
168
169 if (!is_migration_entry(entry) || migration_entry_to_page(entry) != old)
170 goto out;
171
Christoph Lameter06972122006-06-23 02:03:35 -0700172 get_page(new);
173 pte = pte_mkold(mk_pte(new, vma->vm_page_prot));
174 if (is_write_migration_entry(entry))
175 pte = pte_mkwrite(pte);
KAMEZAWA Hiroyuki97ee0522007-10-16 01:25:43 -0700176 flush_cache_page(vma, addr, pte_pfn(pte));
Christoph Lameter06972122006-06-23 02:03:35 -0700177 set_pte_at(mm, addr, ptep, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700178
179 if (PageAnon(new))
180 page_add_anon_rmap(new, vma, addr);
181 else
182 page_add_file_rmap(new);
183
184 /* No need to invalidate - it was non-present before */
185 update_mmu_cache(vma, addr, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700186
Christoph Lameter06972122006-06-23 02:03:35 -0700187out:
188 pte_unmap_unlock(ptep, ptl);
189}
190
191/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700192 * Note that remove_file_migration_ptes will only work on regular mappings,
193 * Nonlinear mappings do not use migration entries.
194 */
195static void remove_file_migration_ptes(struct page *old, struct page *new)
196{
197 struct vm_area_struct *vma;
198 struct address_space *mapping = page_mapping(new);
199 struct prio_tree_iter iter;
200 pgoff_t pgoff = new->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
201
202 if (!mapping)
203 return;
204
205 spin_lock(&mapping->i_mmap_lock);
206
207 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff)
208 remove_migration_pte(vma, old, new);
209
210 spin_unlock(&mapping->i_mmap_lock);
211}
212
213/*
Christoph Lameter06972122006-06-23 02:03:35 -0700214 * Must hold mmap_sem lock on at least one of the vmas containing
215 * the page so that the anon_vma cannot vanish.
216 */
Christoph Lameter04e62a22006-06-23 02:03:38 -0700217static void remove_anon_migration_ptes(struct page *old, struct page *new)
Christoph Lameter06972122006-06-23 02:03:35 -0700218{
219 struct anon_vma *anon_vma;
220 struct vm_area_struct *vma;
221 unsigned long mapping;
222
223 mapping = (unsigned long)new->mapping;
224
225 if (!mapping || (mapping & PAGE_MAPPING_ANON) == 0)
226 return;
227
228 /*
229 * We hold the mmap_sem lock. So no need to call page_lock_anon_vma.
230 */
231 anon_vma = (struct anon_vma *) (mapping - PAGE_MAPPING_ANON);
232 spin_lock(&anon_vma->lock);
233
234 list_for_each_entry(vma, &anon_vma->head, anon_vma_node)
Christoph Lameter04e62a22006-06-23 02:03:38 -0700235 remove_migration_pte(vma, old, new);
Christoph Lameter06972122006-06-23 02:03:35 -0700236
237 spin_unlock(&anon_vma->lock);
238}
239
240/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700241 * Get rid of all migration entries and replace them by
242 * references to the indicated page.
243 */
244static void remove_migration_ptes(struct page *old, struct page *new)
245{
246 if (PageAnon(new))
247 remove_anon_migration_ptes(old, new);
248 else
249 remove_file_migration_ptes(old, new);
250}
251
252/*
Christoph Lameter06972122006-06-23 02:03:35 -0700253 * Something used the pte of a page under migration. We need to
254 * get to the page and wait until migration is finished.
255 * When we return from this function the fault will be retried.
256 *
257 * This function is called from do_swap_page().
258 */
259void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
260 unsigned long address)
261{
262 pte_t *ptep, pte;
263 spinlock_t *ptl;
264 swp_entry_t entry;
265 struct page *page;
266
267 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
268 pte = *ptep;
269 if (!is_swap_pte(pte))
270 goto out;
271
272 entry = pte_to_swp_entry(pte);
273 if (!is_migration_entry(entry))
274 goto out;
275
276 page = migration_entry_to_page(entry);
277
278 get_page(page);
279 pte_unmap_unlock(ptep, ptl);
280 wait_on_page_locked(page);
281 put_page(page);
282 return;
283out:
284 pte_unmap_unlock(ptep, ptl);
285}
286
Christoph Lameterb20a3502006-03-22 00:09:12 -0800287/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700288 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700289 *
290 * The number of remaining references must be:
291 * 1 for anonymous pages without a mapping
292 * 2 for pages with a mapping
293 * 3 for pages with a mapping and PagePrivate set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800294 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700295static int migrate_page_move_mapping(struct address_space *mapping,
296 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800297{
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800298 void **pslot;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800299
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700300 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700301 /* Anonymous page without mapping */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700302 if (page_count(page) != 1)
303 return -EAGAIN;
304 return 0;
305 }
306
Christoph Lameterb20a3502006-03-22 00:09:12 -0800307 write_lock_irq(&mapping->tree_lock);
308
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800309 pslot = radix_tree_lookup_slot(&mapping->page_tree,
310 page_index(page));
Christoph Lameterb20a3502006-03-22 00:09:12 -0800311
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700312 if (page_count(page) != 2 + !!PagePrivate(page) ||
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800313 (struct page *)radix_tree_deref_slot(pslot) != page) {
Christoph Lameterb20a3502006-03-22 00:09:12 -0800314 write_unlock_irq(&mapping->tree_lock);
Christoph Lametere23ca002006-04-10 22:52:57 -0700315 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800316 }
317
318 /*
319 * Now we know that no one else is looking at the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800320 */
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800321 get_page(newpage); /* add cache reference */
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700322#ifdef CONFIG_SWAP
Christoph Lameterb20a3502006-03-22 00:09:12 -0800323 if (PageSwapCache(page)) {
324 SetPageSwapCache(newpage);
325 set_page_private(newpage, page_private(page));
326 }
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700327#endif
Christoph Lameterb20a3502006-03-22 00:09:12 -0800328
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800329 radix_tree_replace_slot(pslot, newpage);
330
331 /*
332 * Drop cache reference from old page.
333 * We know this isn't the last reference.
334 */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800335 __put_page(page);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800336
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700337 /*
338 * If moved to a different zone then also account
339 * the page for that zone. Other VM counters will be
340 * taken care of when we establish references to the
341 * new page and drop references to the old page.
342 *
343 * Note that anonymous pages are accounted for
344 * via NR_FILE_PAGES and NR_ANON_PAGES if they
345 * are mapped to swap space.
346 */
347 __dec_zone_page_state(page, NR_FILE_PAGES);
348 __inc_zone_page_state(newpage, NR_FILE_PAGES);
349
Christoph Lameterb20a3502006-03-22 00:09:12 -0800350 write_unlock_irq(&mapping->tree_lock);
351
352 return 0;
353}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800354
355/*
356 * Copy the page to its new location
357 */
Christoph Lametere7340f72006-06-23 02:03:29 -0700358static void migrate_page_copy(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800359{
360 copy_highpage(newpage, page);
361
362 if (PageError(page))
363 SetPageError(newpage);
364 if (PageReferenced(page))
365 SetPageReferenced(newpage);
366 if (PageUptodate(page))
367 SetPageUptodate(newpage);
368 if (PageActive(page))
369 SetPageActive(newpage);
370 if (PageChecked(page))
371 SetPageChecked(newpage);
372 if (PageMappedToDisk(page))
373 SetPageMappedToDisk(newpage);
374
375 if (PageDirty(page)) {
376 clear_page_dirty_for_io(page);
377 set_page_dirty(newpage);
378 }
379
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700380#ifdef CONFIG_SWAP
Christoph Lameterb20a3502006-03-22 00:09:12 -0800381 ClearPageSwapCache(page);
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700382#endif
Christoph Lameterb20a3502006-03-22 00:09:12 -0800383 ClearPageActive(page);
384 ClearPagePrivate(page);
385 set_page_private(page, 0);
386 page->mapping = NULL;
387
388 /*
389 * If any waiters have accumulated on the new page then
390 * wake them up.
391 */
392 if (PageWriteback(newpage))
393 end_page_writeback(newpage);
394}
Christoph Lameterb20a3502006-03-22 00:09:12 -0800395
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700396/************************************************************
397 * Migration functions
398 ***********************************************************/
399
400/* Always fail migration. Used for mappings that are not movable */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700401int fail_migrate_page(struct address_space *mapping,
402 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700403{
404 return -EIO;
405}
406EXPORT_SYMBOL(fail_migrate_page);
407
Christoph Lameterb20a3502006-03-22 00:09:12 -0800408/*
409 * Common logic to directly migrate a single page suitable for
410 * pages that do not use PagePrivate.
411 *
412 * Pages are locked upon entry and exit.
413 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700414int migrate_page(struct address_space *mapping,
415 struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800416{
417 int rc;
418
419 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
420
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700421 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800422
423 if (rc)
424 return rc;
425
426 migrate_page_copy(newpage, page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800427 return 0;
428}
429EXPORT_SYMBOL(migrate_page);
430
David Howells93614012006-09-30 20:45:40 +0200431#ifdef CONFIG_BLOCK
Christoph Lameterb20a3502006-03-22 00:09:12 -0800432/*
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700433 * Migration function for pages with buffers. This function can only be used
434 * if the underlying filesystem guarantees that no other references to "page"
435 * exist.
436 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700437int buffer_migrate_page(struct address_space *mapping,
438 struct page *newpage, struct page *page)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700439{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700440 struct buffer_head *bh, *head;
441 int rc;
442
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700443 if (!page_has_buffers(page))
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700444 return migrate_page(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700445
446 head = page_buffers(page);
447
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700448 rc = migrate_page_move_mapping(mapping, newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700449
450 if (rc)
451 return rc;
452
453 bh = head;
454 do {
455 get_bh(bh);
456 lock_buffer(bh);
457 bh = bh->b_this_page;
458
459 } while (bh != head);
460
461 ClearPagePrivate(page);
462 set_page_private(newpage, page_private(page));
463 set_page_private(page, 0);
464 put_page(page);
465 get_page(newpage);
466
467 bh = head;
468 do {
469 set_bh_page(bh, newpage, bh_offset(bh));
470 bh = bh->b_this_page;
471
472 } while (bh != head);
473
474 SetPagePrivate(newpage);
475
476 migrate_page_copy(newpage, page);
477
478 bh = head;
479 do {
480 unlock_buffer(bh);
481 put_bh(bh);
482 bh = bh->b_this_page;
483
484 } while (bh != head);
485
486 return 0;
487}
488EXPORT_SYMBOL(buffer_migrate_page);
David Howells93614012006-09-30 20:45:40 +0200489#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700490
Christoph Lameter04e62a22006-06-23 02:03:38 -0700491/*
492 * Writeback a page to clean the dirty state
493 */
494static int writeout(struct address_space *mapping, struct page *page)
495{
496 struct writeback_control wbc = {
497 .sync_mode = WB_SYNC_NONE,
498 .nr_to_write = 1,
499 .range_start = 0,
500 .range_end = LLONG_MAX,
501 .nonblocking = 1,
502 .for_reclaim = 1
503 };
504 int rc;
505
506 if (!mapping->a_ops->writepage)
507 /* No write method for the address space */
508 return -EINVAL;
509
510 if (!clear_page_dirty_for_io(page))
511 /* Someone else already triggered a write */
512 return -EAGAIN;
513
514 /*
515 * A dirty page may imply that the underlying filesystem has
516 * the page on some queue. So the page must be clean for
517 * migration. Writeout may mean we loose the lock and the
518 * page state is no longer what we checked for earlier.
519 * At this point we know that the migration attempt cannot
520 * be successful.
521 */
522 remove_migration_ptes(page, page);
523
524 rc = mapping->a_ops->writepage(page, &wbc);
525 if (rc < 0)
526 /* I/O Error writing */
527 return -EIO;
528
529 if (rc != AOP_WRITEPAGE_ACTIVATE)
530 /* unlocked. Relock */
531 lock_page(page);
532
533 return -EAGAIN;
534}
535
536/*
537 * Default handling if a filesystem does not provide a migration function.
538 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700539static int fallback_migrate_page(struct address_space *mapping,
540 struct page *newpage, struct page *page)
541{
Christoph Lameter04e62a22006-06-23 02:03:38 -0700542 if (PageDirty(page))
543 return writeout(mapping, page);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700544
545 /*
546 * Buffers may be managed in a filesystem specific way.
547 * We must have no buffers or drop them.
548 */
David Howellsb398f6b2006-08-29 19:05:58 +0100549 if (PagePrivate(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700550 !try_to_release_page(page, GFP_KERNEL))
551 return -EAGAIN;
552
553 return migrate_page(mapping, newpage, page);
554}
555
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700556/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700557 * Move a page to a newly allocated page
558 * The page is locked and all ptes have been successfully removed.
559 *
560 * The new page will have replaced the old page if this function
561 * is successful.
562 */
563static int move_to_new_page(struct page *newpage, struct page *page)
564{
565 struct address_space *mapping;
566 int rc;
567
568 /*
569 * Block others from accessing the page when we get around to
570 * establishing additional references. We are the only one
571 * holding a reference to the new page at this point.
572 */
573 if (TestSetPageLocked(newpage))
574 BUG();
575
576 /* Prepare mapping for the new page.*/
577 newpage->index = page->index;
578 newpage->mapping = page->mapping;
579
580 mapping = page_mapping(page);
581 if (!mapping)
582 rc = migrate_page(mapping, newpage, page);
583 else if (mapping->a_ops->migratepage)
584 /*
585 * Most pages have a mapping and most filesystems
586 * should provide a migration function. Anonymous
587 * pages are part of swap space which also has its
588 * own migration function. This is the most common
589 * path for page migration.
590 */
591 rc = mapping->a_ops->migratepage(mapping,
592 newpage, page);
593 else
594 rc = fallback_migrate_page(mapping, newpage, page);
595
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800596 if (!rc) {
597 mem_cgroup_page_migration(page, newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700598 remove_migration_ptes(page, newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800599 } else
Christoph Lametere24f0b82006-06-23 02:03:51 -0700600 newpage->mapping = NULL;
601
602 unlock_page(newpage);
603
604 return rc;
605}
606
607/*
608 * Obtain the lock on page, remove all ptes and migrate the page
609 * to the newly allocated page in newpage.
610 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700611static int unmap_and_move(new_page_t get_new_page, unsigned long private,
612 struct page *page, int force)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700613{
614 int rc = 0;
Christoph Lameter742755a2006-06-23 02:03:55 -0700615 int *result = NULL;
616 struct page *newpage = get_new_page(page, private, &result);
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700617 int rcu_locked = 0;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800618 int charge = 0;
Christoph Lameter95a402c2006-06-23 02:03:53 -0700619
620 if (!newpage)
621 return -ENOMEM;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700622
623 if (page_count(page) == 1)
624 /* page was freed from under us. So we are done. */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700625 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700626
627 rc = -EAGAIN;
628 if (TestSetPageLocked(page)) {
629 if (!force)
Christoph Lameter95a402c2006-06-23 02:03:53 -0700630 goto move_newpage;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700631 lock_page(page);
632 }
633
634 if (PageWriteback(page)) {
635 if (!force)
636 goto unlock;
637 wait_on_page_writeback(page);
638 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700639 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700640 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
641 * we cannot notice that anon_vma is freed while we migrates a page.
642 * This rcu_read_lock() delays freeing anon_vma pointer until the end
643 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700644 * File Caches may use write_page() or lock_page() in migration, then,
645 * just care Anon page here.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700646 */
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700647 if (PageAnon(page)) {
648 rcu_read_lock();
649 rcu_locked = 1;
650 }
Shaohua Li62e1c552008-02-04 22:29:33 -0800651
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700652 /*
Shaohua Li62e1c552008-02-04 22:29:33 -0800653 * Corner case handling:
654 * 1. When a new swap-cache page is read into, it is added to the LRU
655 * and treated as swapcache but it has no rmap yet.
656 * Calling try_to_unmap() against a page->mapping==NULL page will
657 * trigger a BUG. So handle it here.
658 * 2. An orphaned page (see truncate_complete_page) might have
659 * fs-private metadata. The page can be picked up due to memory
660 * offlining. Everywhere else except page reclaim, the page is
661 * invisible to the vm, so the page can not be migrated. So try to
662 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700663 */
Shaohua Li62e1c552008-02-04 22:29:33 -0800664 if (!page->mapping) {
665 if (!PageAnon(page) && PagePrivate(page)) {
666 /*
667 * Go direct to try_to_free_buffers() here because
668 * a) that's what try_to_release_page() would do anyway
669 * b) we may be under rcu_read_lock() here, so we can't
670 * use GFP_KERNEL which is what try_to_release_page()
671 * needs to be effective.
672 */
673 try_to_free_buffers(page);
674 }
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700675 goto rcu_unlock;
Shaohua Li62e1c552008-02-04 22:29:33 -0800676 }
677
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800678 charge = mem_cgroup_prepare_migration(page);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700679 /* Establish migration ptes or remove ptes */
Christoph Lametere6a15302006-06-25 05:46:49 -0700680 try_to_unmap(page, 1);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700681
Christoph Lametere6a15302006-06-25 05:46:49 -0700682 if (!page_mapped(page))
683 rc = move_to_new_page(newpage, page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700684
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800685 if (rc) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700686 remove_migration_ptes(page, page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800687 if (charge)
688 mem_cgroup_end_migration(page);
689 } else if (charge)
690 mem_cgroup_end_migration(newpage);
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700691rcu_unlock:
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -0700692 if (rcu_locked)
693 rcu_read_unlock();
Christoph Lametere6a15302006-06-25 05:46:49 -0700694
Christoph Lametere24f0b82006-06-23 02:03:51 -0700695unlock:
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -0700696
Christoph Lametere24f0b82006-06-23 02:03:51 -0700697 unlock_page(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700698
Christoph Lametere24f0b82006-06-23 02:03:51 -0700699 if (rc != -EAGAIN) {
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700700 /*
701 * A page that has been migrated has all references
702 * removed and will be freed. A page that has not been
703 * migrated will have kepts its references and be
704 * restored.
705 */
706 list_del(&page->lru);
707 move_to_lru(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700708 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700709
710move_newpage:
711 /*
712 * Move the new page to the LRU. If migration was not successful
713 * then this will free the page.
714 */
715 move_to_lru(newpage);
Christoph Lameter742755a2006-06-23 02:03:55 -0700716 if (result) {
717 if (rc)
718 *result = rc;
719 else
720 *result = page_to_nid(newpage);
721 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700722 return rc;
723}
724
725/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800726 * migrate_pages
727 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700728 * The function takes one list of pages to migrate and a function
729 * that determines from the page to be migrated and the private data
730 * the target of the move and allocates the page.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800731 *
732 * The function returns after 10 attempts or if no pages
733 * are movable anymore because to has become empty
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700734 * or no retryable pages exist anymore. All pages will be
Gabriel Craciunescue9534b32007-10-20 02:13:26 +0200735 * returned to the LRU or freed.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800736 *
Christoph Lameter95a402c2006-06-23 02:03:53 -0700737 * Return: Number of pages not migrated or error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800738 */
Christoph Lameter95a402c2006-06-23 02:03:53 -0700739int migrate_pages(struct list_head *from,
740 new_page_t get_new_page, unsigned long private)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800741{
Christoph Lametere24f0b82006-06-23 02:03:51 -0700742 int retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800743 int nr_failed = 0;
744 int pass = 0;
745 struct page *page;
746 struct page *page2;
747 int swapwrite = current->flags & PF_SWAPWRITE;
748 int rc;
749
750 if (!swapwrite)
751 current->flags |= PF_SWAPWRITE;
752
Christoph Lametere24f0b82006-06-23 02:03:51 -0700753 for(pass = 0; pass < 10 && retry; pass++) {
754 retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800755
Christoph Lametere24f0b82006-06-23 02:03:51 -0700756 list_for_each_entry_safe(page, page2, from, lru) {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700757 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800758
Christoph Lameter95a402c2006-06-23 02:03:53 -0700759 rc = unmap_and_move(get_new_page, private,
760 page, pass > 2);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800761
Christoph Lametere24f0b82006-06-23 02:03:51 -0700762 switch(rc) {
Christoph Lameter95a402c2006-06-23 02:03:53 -0700763 case -ENOMEM:
764 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700765 case -EAGAIN:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700766 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700767 break;
768 case 0:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700769 break;
770 default:
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700771 /* Permanent failure */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700772 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -0700773 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700774 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800775 }
776 }
Christoph Lameter95a402c2006-06-23 02:03:53 -0700777 rc = 0;
778out:
Christoph Lameterb20a3502006-03-22 00:09:12 -0800779 if (!swapwrite)
780 current->flags &= ~PF_SWAPWRITE;
781
Christoph Lameteraaa994b2006-06-23 02:03:52 -0700782 putback_lru_pages(from);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700783
784 if (rc)
785 return rc;
786
Christoph Lameterb20a3502006-03-22 00:09:12 -0800787 return nr_failed + retry;
788}
789
Christoph Lameter742755a2006-06-23 02:03:55 -0700790#ifdef CONFIG_NUMA
791/*
792 * Move a list of individual pages
793 */
794struct page_to_node {
795 unsigned long addr;
796 struct page *page;
797 int node;
798 int status;
799};
800
801static struct page *new_page_node(struct page *p, unsigned long private,
802 int **result)
803{
804 struct page_to_node *pm = (struct page_to_node *)private;
805
806 while (pm->node != MAX_NUMNODES && pm->page != p)
807 pm++;
808
809 if (pm->node == MAX_NUMNODES)
810 return NULL;
811
812 *result = &pm->status;
813
Mel Gorman769848c2007-07-17 04:03:05 -0700814 return alloc_pages_node(pm->node,
815 GFP_HIGHUSER_MOVABLE | GFP_THISNODE, 0);
Christoph Lameter742755a2006-06-23 02:03:55 -0700816}
817
818/*
819 * Move a set of pages as indicated in the pm array. The addr
820 * field must be set to the virtual address of the page to be moved
821 * and the node number must contain a valid target node.
822 */
823static int do_move_pages(struct mm_struct *mm, struct page_to_node *pm,
824 int migrate_all)
825{
826 int err;
827 struct page_to_node *pp;
828 LIST_HEAD(pagelist);
829
830 down_read(&mm->mmap_sem);
831
832 /*
833 * Build a list of pages to migrate
834 */
835 migrate_prep();
836 for (pp = pm; pp->node != MAX_NUMNODES; pp++) {
837 struct vm_area_struct *vma;
838 struct page *page;
839
840 /*
841 * A valid page pointer that will not match any of the
842 * pages that will be moved.
843 */
844 pp->page = ZERO_PAGE(0);
845
846 err = -EFAULT;
847 vma = find_vma(mm, pp->addr);
Christoph Lameter0dc952d2007-03-05 00:30:33 -0800848 if (!vma || !vma_migratable(vma))
Christoph Lameter742755a2006-06-23 02:03:55 -0700849 goto set_status;
850
851 page = follow_page(vma, pp->addr, FOLL_GET);
852 err = -ENOENT;
853 if (!page)
854 goto set_status;
855
856 if (PageReserved(page)) /* Check for zero page */
857 goto put_and_set;
858
859 pp->page = page;
860 err = page_to_nid(page);
861
862 if (err == pp->node)
863 /*
864 * Node already in the right place
865 */
866 goto put_and_set;
867
868 err = -EACCES;
869 if (page_mapcount(page) > 1 &&
870 !migrate_all)
871 goto put_and_set;
872
873 err = isolate_lru_page(page, &pagelist);
874put_and_set:
875 /*
876 * Either remove the duplicate refcount from
877 * isolate_lru_page() or drop the page ref if it was
878 * not isolated.
879 */
880 put_page(page);
881set_status:
882 pp->status = err;
883 }
884
885 if (!list_empty(&pagelist))
886 err = migrate_pages(&pagelist, new_page_node,
887 (unsigned long)pm);
888 else
889 err = -ENOENT;
890
891 up_read(&mm->mmap_sem);
892 return err;
893}
894
895/*
896 * Determine the nodes of a list of pages. The addr in the pm array
897 * must have been set to the virtual address of which we want to determine
898 * the node number.
899 */
900static int do_pages_stat(struct mm_struct *mm, struct page_to_node *pm)
901{
902 down_read(&mm->mmap_sem);
903
904 for ( ; pm->node != MAX_NUMNODES; pm++) {
905 struct vm_area_struct *vma;
906 struct page *page;
907 int err;
908
909 err = -EFAULT;
910 vma = find_vma(mm, pm->addr);
911 if (!vma)
912 goto set_status;
913
914 page = follow_page(vma, pm->addr, 0);
915 err = -ENOENT;
916 /* Use PageReserved to check for zero page */
917 if (!page || PageReserved(page))
918 goto set_status;
919
920 err = page_to_nid(page);
921set_status:
922 pm->status = err;
923 }
924
925 up_read(&mm->mmap_sem);
926 return 0;
927}
928
929/*
930 * Move a list of pages in the address space of the currently executing
931 * process.
932 */
933asmlinkage long sys_move_pages(pid_t pid, unsigned long nr_pages,
934 const void __user * __user *pages,
935 const int __user *nodes,
936 int __user *status, int flags)
937{
938 int err = 0;
939 int i;
940 struct task_struct *task;
941 nodemask_t task_nodes;
942 struct mm_struct *mm;
943 struct page_to_node *pm = NULL;
944
945 /* Check flags */
946 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
947 return -EINVAL;
948
949 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
950 return -EPERM;
951
952 /* Find the mm_struct */
953 read_lock(&tasklist_lock);
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700954 task = pid ? find_task_by_vpid(pid) : current;
Christoph Lameter742755a2006-06-23 02:03:55 -0700955 if (!task) {
956 read_unlock(&tasklist_lock);
957 return -ESRCH;
958 }
959 mm = get_task_mm(task);
960 read_unlock(&tasklist_lock);
961
962 if (!mm)
963 return -EINVAL;
964
965 /*
966 * Check if this process has the right to modify the specified
967 * process. The right exists if the process has administrative
968 * capabilities, superuser privileges or the same
969 * userid as the target process.
970 */
971 if ((current->euid != task->suid) && (current->euid != task->uid) &&
972 (current->uid != task->suid) && (current->uid != task->uid) &&
973 !capable(CAP_SYS_NICE)) {
974 err = -EPERM;
975 goto out2;
976 }
977
David Quigley86c3a762006-06-23 02:04:02 -0700978 err = security_task_movememory(task);
979 if (err)
980 goto out2;
981
982
Christoph Lameter742755a2006-06-23 02:03:55 -0700983 task_nodes = cpuset_mems_allowed(task);
984
985 /* Limit nr_pages so that the multiplication may not overflow */
986 if (nr_pages >= ULONG_MAX / sizeof(struct page_to_node) - 1) {
987 err = -E2BIG;
988 goto out2;
989 }
990
991 pm = vmalloc((nr_pages + 1) * sizeof(struct page_to_node));
992 if (!pm) {
993 err = -ENOMEM;
994 goto out2;
995 }
996
997 /*
998 * Get parameters from user space and initialize the pm
999 * array. Return various errors if the user did something wrong.
1000 */
1001 for (i = 0; i < nr_pages; i++) {
Al Viro9d966d42007-10-14 19:34:10 +01001002 const void __user *p;
Christoph Lameter742755a2006-06-23 02:03:55 -07001003
1004 err = -EFAULT;
1005 if (get_user(p, pages + i))
1006 goto out;
1007
1008 pm[i].addr = (unsigned long)p;
1009 if (nodes) {
1010 int node;
1011
1012 if (get_user(node, nodes + i))
1013 goto out;
1014
1015 err = -ENODEV;
Christoph Lameter56bbd652007-10-16 01:25:35 -07001016 if (!node_state(node, N_HIGH_MEMORY))
Christoph Lameter742755a2006-06-23 02:03:55 -07001017 goto out;
1018
1019 err = -EACCES;
1020 if (!node_isset(node, task_nodes))
1021 goto out;
1022
1023 pm[i].node = node;
Stephen Rothwell8ce08462006-11-02 22:07:28 -08001024 } else
1025 pm[i].node = 0; /* anything to not match MAX_NUMNODES */
Christoph Lameter742755a2006-06-23 02:03:55 -07001026 }
1027 /* End marker */
1028 pm[nr_pages].node = MAX_NUMNODES;
1029
1030 if (nodes)
1031 err = do_move_pages(mm, pm, flags & MPOL_MF_MOVE_ALL);
1032 else
1033 err = do_pages_stat(mm, pm);
1034
1035 if (err >= 0)
1036 /* Return status information */
1037 for (i = 0; i < nr_pages; i++)
1038 if (put_user(pm[i].status, status + i))
1039 err = -EFAULT;
1040
1041out:
1042 vfree(pm);
1043out2:
1044 mmput(mm);
1045 return err;
1046}
1047#endif
1048
Christoph Lameter7b2259b2006-06-25 05:46:48 -07001049/*
1050 * Call migration functions in the vma_ops that may prepare
1051 * memory in a vm for migration. migration functions may perform
1052 * the migration for vmas that do not have an underlying page struct.
1053 */
1054int migrate_vmas(struct mm_struct *mm, const nodemask_t *to,
1055 const nodemask_t *from, unsigned long flags)
1056{
1057 struct vm_area_struct *vma;
1058 int err = 0;
1059
1060 for(vma = mm->mmap; vma->vm_next && !err; vma = vma->vm_next) {
1061 if (vma->vm_ops && vma->vm_ops->migrate) {
1062 err = vma->vm_ops->migrate(vma, to, from, flags);
1063 if (err)
1064 break;
1065 }
1066 }
1067 return err;
1068}