[SCTP]: Fix persistent slowdown in sctp when a gap ack consumes rx buffer.
[linux-2.6/mini2440.git] / mm / migrate.c
blob1c25040693d2565b8f1a5affc6eb5bb2310cf15e
1 /*
2 * Memory Migration functionality - linux/mm/migration.c
4 * Copyright (C) 2006 Silicon Graphics, Inc., Christoph Lameter
6 * Page migration was first developed in the context of the memory hotplug
7 * project. The main authors of the migration code are:
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>
15 #include <linux/migrate.h>
16 #include <linux/module.h>
17 #include <linux/swap.h>
18 #include <linux/pagemap.h>
19 #include <linux/buffer_head.h>
20 #include <linux/mm_inline.h>
21 #include <linux/pagevec.h>
22 #include <linux/rmap.h>
23 #include <linux/topology.h>
24 #include <linux/cpu.h>
25 #include <linux/cpuset.h>
26 #include <linux/swapops.h>
28 #include "internal.h"
30 /* The maximum number of pages to take off the LRU for migration */
31 #define MIGRATE_CHUNK_SIZE 256
33 #define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
36 * Isolate one page from the LRU lists. If successful put it onto
37 * the indicated list with elevated page count.
39 * Result:
40 * -EBUSY: page not on LRU list
41 * 0: page removed from LRU list and added to the specified list.
43 int isolate_lru_page(struct page *page, struct list_head *pagelist)
45 int ret = -EBUSY;
47 if (PageLRU(page)) {
48 struct zone *zone = page_zone(page);
50 spin_lock_irq(&zone->lru_lock);
51 if (PageLRU(page)) {
52 ret = 0;
53 get_page(page);
54 ClearPageLRU(page);
55 if (PageActive(page))
56 del_page_from_active_list(zone, page);
57 else
58 del_page_from_inactive_list(zone, page);
59 list_add_tail(&page->lru, pagelist);
61 spin_unlock_irq(&zone->lru_lock);
63 return ret;
67 * migrate_prep() needs to be called after we have compiled the list of pages
68 * to be migrated using isolate_lru_page() but before we begin a series of calls
69 * to migrate_pages().
71 int migrate_prep(void)
73 /* Must have swap device for migration */
74 if (nr_swap_pages <= 0)
75 return -ENODEV;
78 * Clear the LRU lists so pages can be isolated.
79 * Note that pages may be moved off the LRU after we have
80 * drained them. Those pages will fail to migrate like other
81 * pages that may be busy.
83 lru_add_drain_all();
85 return 0;
88 static inline void move_to_lru(struct page *page)
90 list_del(&page->lru);
91 if (PageActive(page)) {
93 * lru_cache_add_active checks that
94 * the PG_active bit is off.
96 ClearPageActive(page);
97 lru_cache_add_active(page);
98 } else {
99 lru_cache_add(page);
101 put_page(page);
105 * Add isolated pages on the list back to the LRU.
107 * returns the number of pages put back.
109 int putback_lru_pages(struct list_head *l)
111 struct page *page;
112 struct page *page2;
113 int count = 0;
115 list_for_each_entry_safe(page, page2, l, lru) {
116 move_to_lru(page);
117 count++;
119 return count;
123 * Non migratable page
125 int fail_migrate_page(struct page *newpage, struct page *page)
127 return -EIO;
129 EXPORT_SYMBOL(fail_migrate_page);
132 * swapout a single page
133 * page is locked upon entry, unlocked on exit
135 static int swap_page(struct page *page)
137 struct address_space *mapping = page_mapping(page);
139 if (page_mapped(page) && mapping)
140 if (try_to_unmap(page, 1) != SWAP_SUCCESS)
141 goto unlock_retry;
143 if (PageDirty(page)) {
144 /* Page is dirty, try to write it out here */
145 switch(pageout(page, mapping)) {
146 case PAGE_KEEP:
147 case PAGE_ACTIVATE:
148 goto unlock_retry;
150 case PAGE_SUCCESS:
151 goto retry;
153 case PAGE_CLEAN:
154 ; /* try to free the page below */
158 if (PagePrivate(page)) {
159 if (!try_to_release_page(page, GFP_KERNEL) ||
160 (!mapping && page_count(page) == 1))
161 goto unlock_retry;
164 if (remove_mapping(mapping, page)) {
165 /* Success */
166 unlock_page(page);
167 return 0;
170 unlock_retry:
171 unlock_page(page);
173 retry:
174 return -EAGAIN;
178 * Remove references for a page and establish the new page with the correct
179 * basic settings to be able to stop accesses to the page.
181 int migrate_page_remove_references(struct page *newpage,
182 struct page *page, int nr_refs)
184 struct address_space *mapping = page_mapping(page);
185 struct page **radix_pointer;
188 * Avoid doing any of the following work if the page count
189 * indicates that the page is in use or truncate has removed
190 * the page.
192 if (!mapping || page_mapcount(page) + nr_refs != page_count(page))
193 return -EAGAIN;
196 * Establish swap ptes for anonymous pages or destroy pte
197 * maps for files.
199 * In order to reestablish file backed mappings the fault handlers
200 * will take the radix tree_lock which may then be used to stop
201 * processses from accessing this page until the new page is ready.
203 * A process accessing via a swap pte (an anonymous page) will take a
204 * page_lock on the old page which will block the process until the
205 * migration attempt is complete. At that time the PageSwapCache bit
206 * will be examined. If the page was migrated then the PageSwapCache
207 * bit will be clear and the operation to retrieve the page will be
208 * retried which will find the new page in the radix tree. Then a new
209 * direct mapping may be generated based on the radix tree contents.
211 * If the page was not migrated then the PageSwapCache bit
212 * is still set and the operation may continue.
214 if (try_to_unmap(page, 1) == SWAP_FAIL)
215 /* A vma has VM_LOCKED set -> permanent failure */
216 return -EPERM;
219 * Give up if we were unable to remove all mappings.
221 if (page_mapcount(page))
222 return -EAGAIN;
224 write_lock_irq(&mapping->tree_lock);
226 radix_pointer = (struct page **)radix_tree_lookup_slot(
227 &mapping->page_tree,
228 page_index(page));
230 if (!page_mapping(page) || page_count(page) != nr_refs ||
231 *radix_pointer != page) {
232 write_unlock_irq(&mapping->tree_lock);
233 return -EAGAIN;
237 * Now we know that no one else is looking at the page.
239 * Certain minimal information about a page must be available
240 * in order for other subsystems to properly handle the page if they
241 * find it through the radix tree update before we are finished
242 * copying the page.
244 get_page(newpage);
245 newpage->index = page->index;
246 newpage->mapping = page->mapping;
247 if (PageSwapCache(page)) {
248 SetPageSwapCache(newpage);
249 set_page_private(newpage, page_private(page));
252 *radix_pointer = newpage;
253 __put_page(page);
254 write_unlock_irq(&mapping->tree_lock);
256 return 0;
258 EXPORT_SYMBOL(migrate_page_remove_references);
261 * Copy the page to its new location
263 void migrate_page_copy(struct page *newpage, struct page *page)
265 copy_highpage(newpage, page);
267 if (PageError(page))
268 SetPageError(newpage);
269 if (PageReferenced(page))
270 SetPageReferenced(newpage);
271 if (PageUptodate(page))
272 SetPageUptodate(newpage);
273 if (PageActive(page))
274 SetPageActive(newpage);
275 if (PageChecked(page))
276 SetPageChecked(newpage);
277 if (PageMappedToDisk(page))
278 SetPageMappedToDisk(newpage);
280 if (PageDirty(page)) {
281 clear_page_dirty_for_io(page);
282 set_page_dirty(newpage);
285 ClearPageSwapCache(page);
286 ClearPageActive(page);
287 ClearPagePrivate(page);
288 set_page_private(page, 0);
289 page->mapping = NULL;
292 * If any waiters have accumulated on the new page then
293 * wake them up.
295 if (PageWriteback(newpage))
296 end_page_writeback(newpage);
298 EXPORT_SYMBOL(migrate_page_copy);
301 * Common logic to directly migrate a single page suitable for
302 * pages that do not use PagePrivate.
304 * Pages are locked upon entry and exit.
306 int migrate_page(struct page *newpage, struct page *page)
308 int rc;
310 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
312 rc = migrate_page_remove_references(newpage, page, 2);
314 if (rc)
315 return rc;
317 migrate_page_copy(newpage, page);
320 * Remove auxiliary swap entries and replace
321 * them with real ptes.
323 * Note that a real pte entry will allow processes that are not
324 * waiting on the page lock to use the new page via the page tables
325 * before the new page is unlocked.
327 remove_from_swap(newpage);
328 return 0;
330 EXPORT_SYMBOL(migrate_page);
333 * migrate_pages
335 * Two lists are passed to this function. The first list
336 * contains the pages isolated from the LRU to be migrated.
337 * The second list contains new pages that the pages isolated
338 * can be moved to. If the second list is NULL then all
339 * pages are swapped out.
341 * The function returns after 10 attempts or if no pages
342 * are movable anymore because to has become empty
343 * or no retryable pages exist anymore.
345 * Return: Number of pages not migrated when "to" ran empty.
347 int migrate_pages(struct list_head *from, struct list_head *to,
348 struct list_head *moved, struct list_head *failed)
350 int retry;
351 int nr_failed = 0;
352 int pass = 0;
353 struct page *page;
354 struct page *page2;
355 int swapwrite = current->flags & PF_SWAPWRITE;
356 int rc;
358 if (!swapwrite)
359 current->flags |= PF_SWAPWRITE;
361 redo:
362 retry = 0;
364 list_for_each_entry_safe(page, page2, from, lru) {
365 struct page *newpage = NULL;
366 struct address_space *mapping;
368 cond_resched();
370 rc = 0;
371 if (page_count(page) == 1)
372 /* page was freed from under us. So we are done. */
373 goto next;
375 if (to && list_empty(to))
376 break;
379 * Skip locked pages during the first two passes to give the
380 * functions holding the lock time to release the page. Later we
381 * use lock_page() to have a higher chance of acquiring the
382 * lock.
384 rc = -EAGAIN;
385 if (pass > 2)
386 lock_page(page);
387 else
388 if (TestSetPageLocked(page))
389 goto next;
392 * Only wait on writeback if we have already done a pass where
393 * we we may have triggered writeouts for lots of pages.
395 if (pass > 0) {
396 wait_on_page_writeback(page);
397 } else {
398 if (PageWriteback(page))
399 goto unlock_page;
403 * Anonymous pages must have swap cache references otherwise
404 * the information contained in the page maps cannot be
405 * preserved.
407 if (PageAnon(page) && !PageSwapCache(page)) {
408 if (!add_to_swap(page, GFP_KERNEL)) {
409 rc = -ENOMEM;
410 goto unlock_page;
414 if (!to) {
415 rc = swap_page(page);
416 goto next;
419 newpage = lru_to_page(to);
420 lock_page(newpage);
423 * Pages are properly locked and writeback is complete.
424 * Try to migrate the page.
426 mapping = page_mapping(page);
427 if (!mapping)
428 goto unlock_both;
430 if (mapping->a_ops->migratepage) {
432 * Most pages have a mapping and most filesystems
433 * should provide a migration function. Anonymous
434 * pages are part of swap space which also has its
435 * own migration function. This is the most common
436 * path for page migration.
438 rc = mapping->a_ops->migratepage(newpage, page);
439 goto unlock_both;
442 /* Make sure the dirty bit is up to date */
443 if (try_to_unmap(page, 1) == SWAP_FAIL) {
444 rc = -EPERM;
445 goto unlock_both;
448 if (page_mapcount(page)) {
449 rc = -EAGAIN;
450 goto unlock_both;
454 * Default handling if a filesystem does not provide
455 * a migration function. We can only migrate clean
456 * pages so try to write out any dirty pages first.
458 if (PageDirty(page)) {
459 switch (pageout(page, mapping)) {
460 case PAGE_KEEP:
461 case PAGE_ACTIVATE:
462 goto unlock_both;
464 case PAGE_SUCCESS:
465 unlock_page(newpage);
466 goto next;
468 case PAGE_CLEAN:
469 ; /* try to migrate the page below */
474 * Buffers are managed in a filesystem specific way.
475 * We must have no buffers or drop them.
477 if (!page_has_buffers(page) ||
478 try_to_release_page(page, GFP_KERNEL)) {
479 rc = migrate_page(newpage, page);
480 goto unlock_both;
484 * On early passes with mapped pages simply
485 * retry. There may be a lock held for some
486 * buffers that may go away. Later
487 * swap them out.
489 if (pass > 4) {
491 * Persistently unable to drop buffers..... As a
492 * measure of last resort we fall back to
493 * swap_page().
495 unlock_page(newpage);
496 newpage = NULL;
497 rc = swap_page(page);
498 goto next;
501 unlock_both:
502 unlock_page(newpage);
504 unlock_page:
505 unlock_page(page);
507 next:
508 if (rc == -EAGAIN) {
509 retry++;
510 } else if (rc) {
511 /* Permanent failure */
512 list_move(&page->lru, failed);
513 nr_failed++;
514 } else {
515 if (newpage) {
516 /* Successful migration. Return page to LRU */
517 move_to_lru(newpage);
519 list_move(&page->lru, moved);
522 if (retry && pass++ < 10)
523 goto redo;
525 if (!swapwrite)
526 current->flags &= ~PF_SWAPWRITE;
528 return nr_failed + retry;
532 * Migration function for pages with buffers. This function can only be used
533 * if the underlying filesystem guarantees that no other references to "page"
534 * exist.
536 int buffer_migrate_page(struct page *newpage, struct page *page)
538 struct address_space *mapping = page->mapping;
539 struct buffer_head *bh, *head;
540 int rc;
542 if (!mapping)
543 return -EAGAIN;
545 if (!page_has_buffers(page))
546 return migrate_page(newpage, page);
548 head = page_buffers(page);
550 rc = migrate_page_remove_references(newpage, page, 3);
552 if (rc)
553 return rc;
555 bh = head;
556 do {
557 get_bh(bh);
558 lock_buffer(bh);
559 bh = bh->b_this_page;
561 } while (bh != head);
563 ClearPagePrivate(page);
564 set_page_private(newpage, page_private(page));
565 set_page_private(page, 0);
566 put_page(page);
567 get_page(newpage);
569 bh = head;
570 do {
571 set_bh_page(bh, newpage, bh_offset(bh));
572 bh = bh->b_this_page;
574 } while (bh != head);
576 SetPagePrivate(newpage);
578 migrate_page_copy(newpage, page);
580 bh = head;
581 do {
582 unlock_buffer(bh);
583 put_bh(bh);
584 bh = bh->b_this_page;
586 } while (bh != head);
588 return 0;
590 EXPORT_SYMBOL(buffer_migrate_page);
593 * Migrate the list 'pagelist' of pages to a certain destination.
595 * Specify destination with either non-NULL vma or dest_node >= 0
596 * Return the number of pages not migrated or error code
598 int migrate_pages_to(struct list_head *pagelist,
599 struct vm_area_struct *vma, int dest)
601 LIST_HEAD(newlist);
602 LIST_HEAD(moved);
603 LIST_HEAD(failed);
604 int err = 0;
605 unsigned long offset = 0;
606 int nr_pages;
607 struct page *page;
608 struct list_head *p;
610 redo:
611 nr_pages = 0;
612 list_for_each(p, pagelist) {
613 if (vma) {
615 * The address passed to alloc_page_vma is used to
616 * generate the proper interleave behavior. We fake
617 * the address here by an increasing offset in order
618 * to get the proper distribution of pages.
620 * No decision has been made as to which page
621 * a certain old page is moved to so we cannot
622 * specify the correct address.
624 page = alloc_page_vma(GFP_HIGHUSER, vma,
625 offset + vma->vm_start);
626 offset += PAGE_SIZE;
628 else
629 page = alloc_pages_node(dest, GFP_HIGHUSER, 0);
631 if (!page) {
632 err = -ENOMEM;
633 goto out;
635 list_add_tail(&page->lru, &newlist);
636 nr_pages++;
637 if (nr_pages > MIGRATE_CHUNK_SIZE)
638 break;
640 err = migrate_pages(pagelist, &newlist, &moved, &failed);
642 putback_lru_pages(&moved); /* Call release pages instead ?? */
644 if (err >= 0 && list_empty(&newlist) && !list_empty(pagelist))
645 goto redo;
646 out:
647 /* Return leftover allocated pages */
648 while (!list_empty(&newlist)) {
649 page = list_entry(newlist.next, struct page, lru);
650 list_del(&page->lru);
651 __free_page(page);
653 list_splice(&failed, pagelist);
654 if (err < 0)
655 return err;
657 /* Calculate number of leftover pages */
658 nr_pages = 0;
659 list_for_each(p, pagelist)
660 nr_pages++;
661 return nr_pages;