HWPOISON: Use bitmask/action code for try_to_unmap behaviour
[linux-2.6/linux-2.6-openrd.git] / mm / rmap.c
blob08c112a776a7811517b2d7bcb3e27c9386b3b35b
1 /*
2 * mm/rmap.c - physical to virtual reverse mappings
4 * Copyright 2001, Rik van Riel <riel@conectiva.com.br>
5 * Released under the General Public License (GPL).
7 * Simple, low overhead reverse mapping scheme.
8 * Please try to keep this thing as modular as possible.
10 * Provides methods for unmapping each kind of mapped page:
11 * the anon methods track anonymous pages, and
12 * the file methods track pages belonging to an inode.
14 * Original design by Rik van Riel <riel@conectiva.com.br> 2001
15 * File methods by Dave McCracken <dmccr@us.ibm.com> 2003, 2004
16 * Anonymous methods by Andrea Arcangeli <andrea@suse.de> 2004
17 * Contributions by Hugh Dickins 2003, 2004
21 * Lock ordering in mm:
23 * inode->i_mutex (while writing or truncating, not reading or faulting)
24 * inode->i_alloc_sem (vmtruncate_range)
25 * mm->mmap_sem
26 * page->flags PG_locked (lock_page)
27 * mapping->i_mmap_lock
28 * anon_vma->lock
29 * mm->page_table_lock or pte_lock
30 * zone->lru_lock (in mark_page_accessed, isolate_lru_page)
31 * swap_lock (in swap_duplicate, swap_info_get)
32 * mmlist_lock (in mmput, drain_mmlist and others)
33 * mapping->private_lock (in __set_page_dirty_buffers)
34 * inode_lock (in set_page_dirty's __mark_inode_dirty)
35 * sb_lock (within inode_lock in fs/fs-writeback.c)
36 * mapping->tree_lock (widely used, in set_page_dirty,
37 * in arch-dependent flush_dcache_mmap_lock,
38 * within inode_lock in __sync_single_inode)
41 #include <linux/mm.h>
42 #include <linux/pagemap.h>
43 #include <linux/swap.h>
44 #include <linux/swapops.h>
45 #include <linux/slab.h>
46 #include <linux/init.h>
47 #include <linux/rmap.h>
48 #include <linux/rcupdate.h>
49 #include <linux/module.h>
50 #include <linux/memcontrol.h>
51 #include <linux/mmu_notifier.h>
52 #include <linux/migrate.h>
54 #include <asm/tlbflush.h>
56 #include "internal.h"
58 static struct kmem_cache *anon_vma_cachep;
60 static inline struct anon_vma *anon_vma_alloc(void)
62 return kmem_cache_alloc(anon_vma_cachep, GFP_KERNEL);
65 static inline void anon_vma_free(struct anon_vma *anon_vma)
67 kmem_cache_free(anon_vma_cachep, anon_vma);
70 /**
71 * anon_vma_prepare - attach an anon_vma to a memory region
72 * @vma: the memory region in question
74 * This makes sure the memory mapping described by 'vma' has
75 * an 'anon_vma' attached to it, so that we can associate the
76 * anonymous pages mapped into it with that anon_vma.
78 * The common case will be that we already have one, but if
79 * if not we either need to find an adjacent mapping that we
80 * can re-use the anon_vma from (very common when the only
81 * reason for splitting a vma has been mprotect()), or we
82 * allocate a new one.
84 * Anon-vma allocations are very subtle, because we may have
85 * optimistically looked up an anon_vma in page_lock_anon_vma()
86 * and that may actually touch the spinlock even in the newly
87 * allocated vma (it depends on RCU to make sure that the
88 * anon_vma isn't actually destroyed).
90 * As a result, we need to do proper anon_vma locking even
91 * for the new allocation. At the same time, we do not want
92 * to do any locking for the common case of already having
93 * an anon_vma.
95 * This must be called with the mmap_sem held for reading.
97 int anon_vma_prepare(struct vm_area_struct *vma)
99 struct anon_vma *anon_vma = vma->anon_vma;
101 might_sleep();
102 if (unlikely(!anon_vma)) {
103 struct mm_struct *mm = vma->vm_mm;
104 struct anon_vma *allocated;
106 anon_vma = find_mergeable_anon_vma(vma);
107 allocated = NULL;
108 if (!anon_vma) {
109 anon_vma = anon_vma_alloc();
110 if (unlikely(!anon_vma))
111 return -ENOMEM;
112 allocated = anon_vma;
114 spin_lock(&anon_vma->lock);
116 /* page_table_lock to protect against threads */
117 spin_lock(&mm->page_table_lock);
118 if (likely(!vma->anon_vma)) {
119 vma->anon_vma = anon_vma;
120 list_add_tail(&vma->anon_vma_node, &anon_vma->head);
121 allocated = NULL;
123 spin_unlock(&mm->page_table_lock);
125 spin_unlock(&anon_vma->lock);
126 if (unlikely(allocated))
127 anon_vma_free(allocated);
129 return 0;
132 void __anon_vma_merge(struct vm_area_struct *vma, struct vm_area_struct *next)
134 BUG_ON(vma->anon_vma != next->anon_vma);
135 list_del(&next->anon_vma_node);
138 void __anon_vma_link(struct vm_area_struct *vma)
140 struct anon_vma *anon_vma = vma->anon_vma;
142 if (anon_vma)
143 list_add_tail(&vma->anon_vma_node, &anon_vma->head);
146 void anon_vma_link(struct vm_area_struct *vma)
148 struct anon_vma *anon_vma = vma->anon_vma;
150 if (anon_vma) {
151 spin_lock(&anon_vma->lock);
152 list_add_tail(&vma->anon_vma_node, &anon_vma->head);
153 spin_unlock(&anon_vma->lock);
157 void anon_vma_unlink(struct vm_area_struct *vma)
159 struct anon_vma *anon_vma = vma->anon_vma;
160 int empty;
162 if (!anon_vma)
163 return;
165 spin_lock(&anon_vma->lock);
166 list_del(&vma->anon_vma_node);
168 /* We must garbage collect the anon_vma if it's empty */
169 empty = list_empty(&anon_vma->head);
170 spin_unlock(&anon_vma->lock);
172 if (empty)
173 anon_vma_free(anon_vma);
176 static void anon_vma_ctor(void *data)
178 struct anon_vma *anon_vma = data;
180 spin_lock_init(&anon_vma->lock);
181 INIT_LIST_HEAD(&anon_vma->head);
184 void __init anon_vma_init(void)
186 anon_vma_cachep = kmem_cache_create("anon_vma", sizeof(struct anon_vma),
187 0, SLAB_DESTROY_BY_RCU|SLAB_PANIC, anon_vma_ctor);
191 * Getting a lock on a stable anon_vma from a page off the LRU is
192 * tricky: page_lock_anon_vma rely on RCU to guard against the races.
194 struct anon_vma *page_lock_anon_vma(struct page *page)
196 struct anon_vma *anon_vma;
197 unsigned long anon_mapping;
199 rcu_read_lock();
200 anon_mapping = (unsigned long) page->mapping;
201 if (!(anon_mapping & PAGE_MAPPING_ANON))
202 goto out;
203 if (!page_mapped(page))
204 goto out;
206 anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
207 spin_lock(&anon_vma->lock);
208 return anon_vma;
209 out:
210 rcu_read_unlock();
211 return NULL;
214 void page_unlock_anon_vma(struct anon_vma *anon_vma)
216 spin_unlock(&anon_vma->lock);
217 rcu_read_unlock();
221 * At what user virtual address is page expected in @vma?
222 * Returns virtual address or -EFAULT if page's index/offset is not
223 * within the range mapped the @vma.
225 static inline unsigned long
226 vma_address(struct page *page, struct vm_area_struct *vma)
228 pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
229 unsigned long address;
231 address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
232 if (unlikely(address < vma->vm_start || address >= vma->vm_end)) {
233 /* page should be within @vma mapping range */
234 return -EFAULT;
236 return address;
240 * At what user virtual address is page expected in vma? checking that the
241 * page matches the vma: currently only used on anon pages, by unuse_vma;
243 unsigned long page_address_in_vma(struct page *page, struct vm_area_struct *vma)
245 if (PageAnon(page)) {
246 if ((void *)vma->anon_vma !=
247 (void *)page->mapping - PAGE_MAPPING_ANON)
248 return -EFAULT;
249 } else if (page->mapping && !(vma->vm_flags & VM_NONLINEAR)) {
250 if (!vma->vm_file ||
251 vma->vm_file->f_mapping != page->mapping)
252 return -EFAULT;
253 } else
254 return -EFAULT;
255 return vma_address(page, vma);
259 * Check that @page is mapped at @address into @mm.
261 * If @sync is false, page_check_address may perform a racy check to avoid
262 * the page table lock when the pte is not present (helpful when reclaiming
263 * highly shared pages).
265 * On success returns with pte mapped and locked.
267 pte_t *page_check_address(struct page *page, struct mm_struct *mm,
268 unsigned long address, spinlock_t **ptlp, int sync)
270 pgd_t *pgd;
271 pud_t *pud;
272 pmd_t *pmd;
273 pte_t *pte;
274 spinlock_t *ptl;
276 pgd = pgd_offset(mm, address);
277 if (!pgd_present(*pgd))
278 return NULL;
280 pud = pud_offset(pgd, address);
281 if (!pud_present(*pud))
282 return NULL;
284 pmd = pmd_offset(pud, address);
285 if (!pmd_present(*pmd))
286 return NULL;
288 pte = pte_offset_map(pmd, address);
289 /* Make a quick check before getting the lock */
290 if (!sync && !pte_present(*pte)) {
291 pte_unmap(pte);
292 return NULL;
295 ptl = pte_lockptr(mm, pmd);
296 spin_lock(ptl);
297 if (pte_present(*pte) && page_to_pfn(page) == pte_pfn(*pte)) {
298 *ptlp = ptl;
299 return pte;
301 pte_unmap_unlock(pte, ptl);
302 return NULL;
306 * page_mapped_in_vma - check whether a page is really mapped in a VMA
307 * @page: the page to test
308 * @vma: the VMA to test
310 * Returns 1 if the page is mapped into the page tables of the VMA, 0
311 * if the page is not mapped into the page tables of this VMA. Only
312 * valid for normal file or anonymous VMAs.
314 static int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma)
316 unsigned long address;
317 pte_t *pte;
318 spinlock_t *ptl;
320 address = vma_address(page, vma);
321 if (address == -EFAULT) /* out of vma range */
322 return 0;
323 pte = page_check_address(page, vma->vm_mm, address, &ptl, 1);
324 if (!pte) /* the page is not in this mm */
325 return 0;
326 pte_unmap_unlock(pte, ptl);
328 return 1;
332 * Subfunctions of page_referenced: page_referenced_one called
333 * repeatedly from either page_referenced_anon or page_referenced_file.
335 static int page_referenced_one(struct page *page,
336 struct vm_area_struct *vma,
337 unsigned int *mapcount,
338 unsigned long *vm_flags)
340 struct mm_struct *mm = vma->vm_mm;
341 unsigned long address;
342 pte_t *pte;
343 spinlock_t *ptl;
344 int referenced = 0;
346 address = vma_address(page, vma);
347 if (address == -EFAULT)
348 goto out;
350 pte = page_check_address(page, mm, address, &ptl, 0);
351 if (!pte)
352 goto out;
355 * Don't want to elevate referenced for mlocked page that gets this far,
356 * in order that it progresses to try_to_unmap and is moved to the
357 * unevictable list.
359 if (vma->vm_flags & VM_LOCKED) {
360 *mapcount = 1; /* break early from loop */
361 *vm_flags |= VM_LOCKED;
362 goto out_unmap;
365 if (ptep_clear_flush_young_notify(vma, address, pte)) {
367 * Don't treat a reference through a sequentially read
368 * mapping as such. If the page has been used in
369 * another mapping, we will catch it; if this other
370 * mapping is already gone, the unmap path will have
371 * set PG_referenced or activated the page.
373 if (likely(!VM_SequentialReadHint(vma)))
374 referenced++;
377 /* Pretend the page is referenced if the task has the
378 swap token and is in the middle of a page fault. */
379 if (mm != current->mm && has_swap_token(mm) &&
380 rwsem_is_locked(&mm->mmap_sem))
381 referenced++;
383 out_unmap:
384 (*mapcount)--;
385 pte_unmap_unlock(pte, ptl);
386 out:
387 if (referenced)
388 *vm_flags |= vma->vm_flags;
389 return referenced;
392 static int page_referenced_anon(struct page *page,
393 struct mem_cgroup *mem_cont,
394 unsigned long *vm_flags)
396 unsigned int mapcount;
397 struct anon_vma *anon_vma;
398 struct vm_area_struct *vma;
399 int referenced = 0;
401 anon_vma = page_lock_anon_vma(page);
402 if (!anon_vma)
403 return referenced;
405 mapcount = page_mapcount(page);
406 list_for_each_entry(vma, &anon_vma->head, anon_vma_node) {
408 * If we are reclaiming on behalf of a cgroup, skip
409 * counting on behalf of references from different
410 * cgroups
412 if (mem_cont && !mm_match_cgroup(vma->vm_mm, mem_cont))
413 continue;
414 referenced += page_referenced_one(page, vma,
415 &mapcount, vm_flags);
416 if (!mapcount)
417 break;
420 page_unlock_anon_vma(anon_vma);
421 return referenced;
425 * page_referenced_file - referenced check for object-based rmap
426 * @page: the page we're checking references on.
427 * @mem_cont: target memory controller
428 * @vm_flags: collect encountered vma->vm_flags who actually referenced the page
430 * For an object-based mapped page, find all the places it is mapped and
431 * check/clear the referenced flag. This is done by following the page->mapping
432 * pointer, then walking the chain of vmas it holds. It returns the number
433 * of references it found.
435 * This function is only called from page_referenced for object-based pages.
437 static int page_referenced_file(struct page *page,
438 struct mem_cgroup *mem_cont,
439 unsigned long *vm_flags)
441 unsigned int mapcount;
442 struct address_space *mapping = page->mapping;
443 pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
444 struct vm_area_struct *vma;
445 struct prio_tree_iter iter;
446 int referenced = 0;
449 * The caller's checks on page->mapping and !PageAnon have made
450 * sure that this is a file page: the check for page->mapping
451 * excludes the case just before it gets set on an anon page.
453 BUG_ON(PageAnon(page));
456 * The page lock not only makes sure that page->mapping cannot
457 * suddenly be NULLified by truncation, it makes sure that the
458 * structure at mapping cannot be freed and reused yet,
459 * so we can safely take mapping->i_mmap_lock.
461 BUG_ON(!PageLocked(page));
463 spin_lock(&mapping->i_mmap_lock);
466 * i_mmap_lock does not stabilize mapcount at all, but mapcount
467 * is more likely to be accurate if we note it after spinning.
469 mapcount = page_mapcount(page);
471 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
473 * If we are reclaiming on behalf of a cgroup, skip
474 * counting on behalf of references from different
475 * cgroups
477 if (mem_cont && !mm_match_cgroup(vma->vm_mm, mem_cont))
478 continue;
479 referenced += page_referenced_one(page, vma,
480 &mapcount, vm_flags);
481 if (!mapcount)
482 break;
485 spin_unlock(&mapping->i_mmap_lock);
486 return referenced;
490 * page_referenced - test if the page was referenced
491 * @page: the page to test
492 * @is_locked: caller holds lock on the page
493 * @mem_cont: target memory controller
494 * @vm_flags: collect encountered vma->vm_flags who actually referenced the page
496 * Quick test_and_clear_referenced for all mappings to a page,
497 * returns the number of ptes which referenced the page.
499 int page_referenced(struct page *page,
500 int is_locked,
501 struct mem_cgroup *mem_cont,
502 unsigned long *vm_flags)
504 int referenced = 0;
506 if (TestClearPageReferenced(page))
507 referenced++;
509 *vm_flags = 0;
510 if (page_mapped(page) && page->mapping) {
511 if (PageAnon(page))
512 referenced += page_referenced_anon(page, mem_cont,
513 vm_flags);
514 else if (is_locked)
515 referenced += page_referenced_file(page, mem_cont,
516 vm_flags);
517 else if (!trylock_page(page))
518 referenced++;
519 else {
520 if (page->mapping)
521 referenced += page_referenced_file(page,
522 mem_cont, vm_flags);
523 unlock_page(page);
527 if (page_test_and_clear_young(page))
528 referenced++;
530 return referenced;
533 static int page_mkclean_one(struct page *page, struct vm_area_struct *vma)
535 struct mm_struct *mm = vma->vm_mm;
536 unsigned long address;
537 pte_t *pte;
538 spinlock_t *ptl;
539 int ret = 0;
541 address = vma_address(page, vma);
542 if (address == -EFAULT)
543 goto out;
545 pte = page_check_address(page, mm, address, &ptl, 1);
546 if (!pte)
547 goto out;
549 if (pte_dirty(*pte) || pte_write(*pte)) {
550 pte_t entry;
552 flush_cache_page(vma, address, pte_pfn(*pte));
553 entry = ptep_clear_flush_notify(vma, address, pte);
554 entry = pte_wrprotect(entry);
555 entry = pte_mkclean(entry);
556 set_pte_at(mm, address, pte, entry);
557 ret = 1;
560 pte_unmap_unlock(pte, ptl);
561 out:
562 return ret;
565 static int page_mkclean_file(struct address_space *mapping, struct page *page)
567 pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
568 struct vm_area_struct *vma;
569 struct prio_tree_iter iter;
570 int ret = 0;
572 BUG_ON(PageAnon(page));
574 spin_lock(&mapping->i_mmap_lock);
575 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
576 if (vma->vm_flags & VM_SHARED)
577 ret += page_mkclean_one(page, vma);
579 spin_unlock(&mapping->i_mmap_lock);
580 return ret;
583 int page_mkclean(struct page *page)
585 int ret = 0;
587 BUG_ON(!PageLocked(page));
589 if (page_mapped(page)) {
590 struct address_space *mapping = page_mapping(page);
591 if (mapping) {
592 ret = page_mkclean_file(mapping, page);
593 if (page_test_dirty(page)) {
594 page_clear_dirty(page);
595 ret = 1;
600 return ret;
602 EXPORT_SYMBOL_GPL(page_mkclean);
605 * __page_set_anon_rmap - setup new anonymous rmap
606 * @page: the page to add the mapping to
607 * @vma: the vm area in which the mapping is added
608 * @address: the user virtual address mapped
610 static void __page_set_anon_rmap(struct page *page,
611 struct vm_area_struct *vma, unsigned long address)
613 struct anon_vma *anon_vma = vma->anon_vma;
615 BUG_ON(!anon_vma);
616 anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
617 page->mapping = (struct address_space *) anon_vma;
619 page->index = linear_page_index(vma, address);
622 * nr_mapped state can be updated without turning off
623 * interrupts because it is not modified via interrupt.
625 __inc_zone_page_state(page, NR_ANON_PAGES);
629 * __page_check_anon_rmap - sanity check anonymous rmap addition
630 * @page: the page to add the mapping to
631 * @vma: the vm area in which the mapping is added
632 * @address: the user virtual address mapped
634 static void __page_check_anon_rmap(struct page *page,
635 struct vm_area_struct *vma, unsigned long address)
637 #ifdef CONFIG_DEBUG_VM
639 * The page's anon-rmap details (mapping and index) are guaranteed to
640 * be set up correctly at this point.
642 * We have exclusion against page_add_anon_rmap because the caller
643 * always holds the page locked, except if called from page_dup_rmap,
644 * in which case the page is already known to be setup.
646 * We have exclusion against page_add_new_anon_rmap because those pages
647 * are initially only visible via the pagetables, and the pte is locked
648 * over the call to page_add_new_anon_rmap.
650 struct anon_vma *anon_vma = vma->anon_vma;
651 anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
652 BUG_ON(page->mapping != (struct address_space *)anon_vma);
653 BUG_ON(page->index != linear_page_index(vma, address));
654 #endif
658 * page_add_anon_rmap - add pte mapping to an anonymous page
659 * @page: the page to add the mapping to
660 * @vma: the vm area in which the mapping is added
661 * @address: the user virtual address mapped
663 * The caller needs to hold the pte lock and the page must be locked.
665 void page_add_anon_rmap(struct page *page,
666 struct vm_area_struct *vma, unsigned long address)
668 VM_BUG_ON(!PageLocked(page));
669 VM_BUG_ON(address < vma->vm_start || address >= vma->vm_end);
670 if (atomic_inc_and_test(&page->_mapcount))
671 __page_set_anon_rmap(page, vma, address);
672 else
673 __page_check_anon_rmap(page, vma, address);
677 * page_add_new_anon_rmap - add pte mapping to a new anonymous page
678 * @page: the page to add the mapping to
679 * @vma: the vm area in which the mapping is added
680 * @address: the user virtual address mapped
682 * Same as page_add_anon_rmap but must only be called on *new* pages.
683 * This means the inc-and-test can be bypassed.
684 * Page does not have to be locked.
686 void page_add_new_anon_rmap(struct page *page,
687 struct vm_area_struct *vma, unsigned long address)
689 VM_BUG_ON(address < vma->vm_start || address >= vma->vm_end);
690 SetPageSwapBacked(page);
691 atomic_set(&page->_mapcount, 0); /* increment count (starts at -1) */
692 __page_set_anon_rmap(page, vma, address);
693 if (page_evictable(page, vma))
694 lru_cache_add_lru(page, LRU_ACTIVE_ANON);
695 else
696 add_page_to_unevictable_list(page);
700 * page_add_file_rmap - add pte mapping to a file page
701 * @page: the page to add the mapping to
703 * The caller needs to hold the pte lock.
705 void page_add_file_rmap(struct page *page)
707 if (atomic_inc_and_test(&page->_mapcount)) {
708 __inc_zone_page_state(page, NR_FILE_MAPPED);
709 mem_cgroup_update_mapped_file_stat(page, 1);
713 #ifdef CONFIG_DEBUG_VM
715 * page_dup_rmap - duplicate pte mapping to a page
716 * @page: the page to add the mapping to
717 * @vma: the vm area being duplicated
718 * @address: the user virtual address mapped
720 * For copy_page_range only: minimal extract from page_add_file_rmap /
721 * page_add_anon_rmap, avoiding unnecessary tests (already checked) so it's
722 * quicker.
724 * The caller needs to hold the pte lock.
726 void page_dup_rmap(struct page *page, struct vm_area_struct *vma, unsigned long address)
728 if (PageAnon(page))
729 __page_check_anon_rmap(page, vma, address);
730 atomic_inc(&page->_mapcount);
732 #endif
735 * page_remove_rmap - take down pte mapping from a page
736 * @page: page to remove mapping from
738 * The caller needs to hold the pte lock.
740 void page_remove_rmap(struct page *page)
742 if (atomic_add_negative(-1, &page->_mapcount)) {
744 * Now that the last pte has gone, s390 must transfer dirty
745 * flag from storage key to struct page. We can usually skip
746 * this if the page is anon, so about to be freed; but perhaps
747 * not if it's in swapcache - there might be another pte slot
748 * containing the swap entry, but page not yet written to swap.
750 if ((!PageAnon(page) || PageSwapCache(page)) &&
751 page_test_dirty(page)) {
752 page_clear_dirty(page);
753 set_page_dirty(page);
755 if (PageAnon(page))
756 mem_cgroup_uncharge_page(page);
757 __dec_zone_page_state(page,
758 PageAnon(page) ? NR_ANON_PAGES : NR_FILE_MAPPED);
759 mem_cgroup_update_mapped_file_stat(page, -1);
761 * It would be tidy to reset the PageAnon mapping here,
762 * but that might overwrite a racing page_add_anon_rmap
763 * which increments mapcount after us but sets mapping
764 * before us: so leave the reset to free_hot_cold_page,
765 * and remember that it's only reliable while mapped.
766 * Leaving it set also helps swapoff to reinstate ptes
767 * faster for those pages still in swapcache.
773 * Subfunctions of try_to_unmap: try_to_unmap_one called
774 * repeatedly from either try_to_unmap_anon or try_to_unmap_file.
776 static int try_to_unmap_one(struct page *page, struct vm_area_struct *vma,
777 enum ttu_flags flags)
779 struct mm_struct *mm = vma->vm_mm;
780 unsigned long address;
781 pte_t *pte;
782 pte_t pteval;
783 spinlock_t *ptl;
784 int ret = SWAP_AGAIN;
786 address = vma_address(page, vma);
787 if (address == -EFAULT)
788 goto out;
790 pte = page_check_address(page, mm, address, &ptl, 0);
791 if (!pte)
792 goto out;
795 * If the page is mlock()d, we cannot swap it out.
796 * If it's recently referenced (perhaps page_referenced
797 * skipped over this mm) then we should reactivate it.
799 if (!(flags & TTU_IGNORE_MLOCK)) {
800 if (vma->vm_flags & VM_LOCKED) {
801 ret = SWAP_MLOCK;
802 goto out_unmap;
805 if (!(flags & TTU_IGNORE_ACCESS)) {
806 if (ptep_clear_flush_young_notify(vma, address, pte)) {
807 ret = SWAP_FAIL;
808 goto out_unmap;
812 /* Nuke the page table entry. */
813 flush_cache_page(vma, address, page_to_pfn(page));
814 pteval = ptep_clear_flush_notify(vma, address, pte);
816 /* Move the dirty bit to the physical page now the pte is gone. */
817 if (pte_dirty(pteval))
818 set_page_dirty(page);
820 /* Update high watermark before we lower rss */
821 update_hiwater_rss(mm);
823 if (PageAnon(page)) {
824 swp_entry_t entry = { .val = page_private(page) };
826 if (PageSwapCache(page)) {
828 * Store the swap location in the pte.
829 * See handle_pte_fault() ...
831 swap_duplicate(entry);
832 if (list_empty(&mm->mmlist)) {
833 spin_lock(&mmlist_lock);
834 if (list_empty(&mm->mmlist))
835 list_add(&mm->mmlist, &init_mm.mmlist);
836 spin_unlock(&mmlist_lock);
838 dec_mm_counter(mm, anon_rss);
839 } else if (PAGE_MIGRATION) {
841 * Store the pfn of the page in a special migration
842 * pte. do_swap_page() will wait until the migration
843 * pte is removed and then restart fault handling.
845 BUG_ON(TTU_ACTION(flags) != TTU_MIGRATION);
846 entry = make_migration_entry(page, pte_write(pteval));
848 set_pte_at(mm, address, pte, swp_entry_to_pte(entry));
849 BUG_ON(pte_file(*pte));
850 } else if (PAGE_MIGRATION && (TTU_ACTION(flags) == TTU_MIGRATION)) {
851 /* Establish migration entry for a file page */
852 swp_entry_t entry;
853 entry = make_migration_entry(page, pte_write(pteval));
854 set_pte_at(mm, address, pte, swp_entry_to_pte(entry));
855 } else
856 dec_mm_counter(mm, file_rss);
859 page_remove_rmap(page);
860 page_cache_release(page);
862 out_unmap:
863 pte_unmap_unlock(pte, ptl);
864 out:
865 return ret;
869 * objrmap doesn't work for nonlinear VMAs because the assumption that
870 * offset-into-file correlates with offset-into-virtual-addresses does not hold.
871 * Consequently, given a particular page and its ->index, we cannot locate the
872 * ptes which are mapping that page without an exhaustive linear search.
874 * So what this code does is a mini "virtual scan" of each nonlinear VMA which
875 * maps the file to which the target page belongs. The ->vm_private_data field
876 * holds the current cursor into that scan. Successive searches will circulate
877 * around the vma's virtual address space.
879 * So as more replacement pressure is applied to the pages in a nonlinear VMA,
880 * more scanning pressure is placed against them as well. Eventually pages
881 * will become fully unmapped and are eligible for eviction.
883 * For very sparsely populated VMAs this is a little inefficient - chances are
884 * there there won't be many ptes located within the scan cluster. In this case
885 * maybe we could scan further - to the end of the pte page, perhaps.
887 * Mlocked pages: check VM_LOCKED under mmap_sem held for read, if we can
888 * acquire it without blocking. If vma locked, mlock the pages in the cluster,
889 * rather than unmapping them. If we encounter the "check_page" that vmscan is
890 * trying to unmap, return SWAP_MLOCK, else default SWAP_AGAIN.
892 #define CLUSTER_SIZE min(32*PAGE_SIZE, PMD_SIZE)
893 #define CLUSTER_MASK (~(CLUSTER_SIZE - 1))
895 static int try_to_unmap_cluster(unsigned long cursor, unsigned int *mapcount,
896 struct vm_area_struct *vma, struct page *check_page)
898 struct mm_struct *mm = vma->vm_mm;
899 pgd_t *pgd;
900 pud_t *pud;
901 pmd_t *pmd;
902 pte_t *pte;
903 pte_t pteval;
904 spinlock_t *ptl;
905 struct page *page;
906 unsigned long address;
907 unsigned long end;
908 int ret = SWAP_AGAIN;
909 int locked_vma = 0;
911 address = (vma->vm_start + cursor) & CLUSTER_MASK;
912 end = address + CLUSTER_SIZE;
913 if (address < vma->vm_start)
914 address = vma->vm_start;
915 if (end > vma->vm_end)
916 end = vma->vm_end;
918 pgd = pgd_offset(mm, address);
919 if (!pgd_present(*pgd))
920 return ret;
922 pud = pud_offset(pgd, address);
923 if (!pud_present(*pud))
924 return ret;
926 pmd = pmd_offset(pud, address);
927 if (!pmd_present(*pmd))
928 return ret;
931 * MLOCK_PAGES => feature is configured.
932 * if we can acquire the mmap_sem for read, and vma is VM_LOCKED,
933 * keep the sem while scanning the cluster for mlocking pages.
935 if (MLOCK_PAGES && down_read_trylock(&vma->vm_mm->mmap_sem)) {
936 locked_vma = (vma->vm_flags & VM_LOCKED);
937 if (!locked_vma)
938 up_read(&vma->vm_mm->mmap_sem); /* don't need it */
941 pte = pte_offset_map_lock(mm, pmd, address, &ptl);
943 /* Update high watermark before we lower rss */
944 update_hiwater_rss(mm);
946 for (; address < end; pte++, address += PAGE_SIZE) {
947 if (!pte_present(*pte))
948 continue;
949 page = vm_normal_page(vma, address, *pte);
950 BUG_ON(!page || PageAnon(page));
952 if (locked_vma) {
953 mlock_vma_page(page); /* no-op if already mlocked */
954 if (page == check_page)
955 ret = SWAP_MLOCK;
956 continue; /* don't unmap */
959 if (ptep_clear_flush_young_notify(vma, address, pte))
960 continue;
962 /* Nuke the page table entry. */
963 flush_cache_page(vma, address, pte_pfn(*pte));
964 pteval = ptep_clear_flush_notify(vma, address, pte);
966 /* If nonlinear, store the file page offset in the pte. */
967 if (page->index != linear_page_index(vma, address))
968 set_pte_at(mm, address, pte, pgoff_to_pte(page->index));
970 /* Move the dirty bit to the physical page now the pte is gone. */
971 if (pte_dirty(pteval))
972 set_page_dirty(page);
974 page_remove_rmap(page);
975 page_cache_release(page);
976 dec_mm_counter(mm, file_rss);
977 (*mapcount)--;
979 pte_unmap_unlock(pte - 1, ptl);
980 if (locked_vma)
981 up_read(&vma->vm_mm->mmap_sem);
982 return ret;
986 * common handling for pages mapped in VM_LOCKED vmas
988 static int try_to_mlock_page(struct page *page, struct vm_area_struct *vma)
990 int mlocked = 0;
992 if (down_read_trylock(&vma->vm_mm->mmap_sem)) {
993 if (vma->vm_flags & VM_LOCKED) {
994 mlock_vma_page(page);
995 mlocked++; /* really mlocked the page */
997 up_read(&vma->vm_mm->mmap_sem);
999 return mlocked;
1003 * try_to_unmap_anon - unmap or unlock anonymous page using the object-based
1004 * rmap method
1005 * @page: the page to unmap/unlock
1006 * @unlock: request for unlock rather than unmap [unlikely]
1007 * @migration: unmapping for migration - ignored if @unlock
1009 * Find all the mappings of a page using the mapping pointer and the vma chains
1010 * contained in the anon_vma struct it points to.
1012 * This function is only called from try_to_unmap/try_to_munlock for
1013 * anonymous pages.
1014 * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
1015 * where the page was found will be held for write. So, we won't recheck
1016 * vm_flags for that VMA. That should be OK, because that vma shouldn't be
1017 * 'LOCKED.
1019 static int try_to_unmap_anon(struct page *page, enum ttu_flags flags)
1021 struct anon_vma *anon_vma;
1022 struct vm_area_struct *vma;
1023 unsigned int mlocked = 0;
1024 int ret = SWAP_AGAIN;
1025 int unlock = TTU_ACTION(flags) == TTU_MUNLOCK;
1027 if (MLOCK_PAGES && unlikely(unlock))
1028 ret = SWAP_SUCCESS; /* default for try_to_munlock() */
1030 anon_vma = page_lock_anon_vma(page);
1031 if (!anon_vma)
1032 return ret;
1034 list_for_each_entry(vma, &anon_vma->head, anon_vma_node) {
1035 if (MLOCK_PAGES && unlikely(unlock)) {
1036 if (!((vma->vm_flags & VM_LOCKED) &&
1037 page_mapped_in_vma(page, vma)))
1038 continue; /* must visit all unlocked vmas */
1039 ret = SWAP_MLOCK; /* saw at least one mlocked vma */
1040 } else {
1041 ret = try_to_unmap_one(page, vma, flags);
1042 if (ret == SWAP_FAIL || !page_mapped(page))
1043 break;
1045 if (ret == SWAP_MLOCK) {
1046 mlocked = try_to_mlock_page(page, vma);
1047 if (mlocked)
1048 break; /* stop if actually mlocked page */
1052 page_unlock_anon_vma(anon_vma);
1054 if (mlocked)
1055 ret = SWAP_MLOCK; /* actually mlocked the page */
1056 else if (ret == SWAP_MLOCK)
1057 ret = SWAP_AGAIN; /* saw VM_LOCKED vma */
1059 return ret;
1063 * try_to_unmap_file - unmap/unlock file page using the object-based rmap method
1064 * @page: the page to unmap/unlock
1065 * @flags: action and flags
1067 * Find all the mappings of a page using the mapping pointer and the vma chains
1068 * contained in the address_space struct it points to.
1070 * This function is only called from try_to_unmap/try_to_munlock for
1071 * object-based pages.
1072 * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
1073 * where the page was found will be held for write. So, we won't recheck
1074 * vm_flags for that VMA. That should be OK, because that vma shouldn't be
1075 * 'LOCKED.
1077 static int try_to_unmap_file(struct page *page, enum ttu_flags flags)
1079 struct address_space *mapping = page->mapping;
1080 pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
1081 struct vm_area_struct *vma;
1082 struct prio_tree_iter iter;
1083 int ret = SWAP_AGAIN;
1084 unsigned long cursor;
1085 unsigned long max_nl_cursor = 0;
1086 unsigned long max_nl_size = 0;
1087 unsigned int mapcount;
1088 unsigned int mlocked = 0;
1089 int unlock = TTU_ACTION(flags) == TTU_MUNLOCK;
1091 if (MLOCK_PAGES && unlikely(unlock))
1092 ret = SWAP_SUCCESS; /* default for try_to_munlock() */
1094 spin_lock(&mapping->i_mmap_lock);
1095 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
1096 if (MLOCK_PAGES && unlikely(unlock)) {
1097 if (!((vma->vm_flags & VM_LOCKED) &&
1098 page_mapped_in_vma(page, vma)))
1099 continue; /* must visit all vmas */
1100 ret = SWAP_MLOCK;
1101 } else {
1102 ret = try_to_unmap_one(page, vma, flags);
1103 if (ret == SWAP_FAIL || !page_mapped(page))
1104 goto out;
1106 if (ret == SWAP_MLOCK) {
1107 mlocked = try_to_mlock_page(page, vma);
1108 if (mlocked)
1109 break; /* stop if actually mlocked page */
1113 if (mlocked)
1114 goto out;
1116 if (list_empty(&mapping->i_mmap_nonlinear))
1117 goto out;
1119 list_for_each_entry(vma, &mapping->i_mmap_nonlinear,
1120 shared.vm_set.list) {
1121 if (MLOCK_PAGES && unlikely(unlock)) {
1122 if (!(vma->vm_flags & VM_LOCKED))
1123 continue; /* must visit all vmas */
1124 ret = SWAP_MLOCK; /* leave mlocked == 0 */
1125 goto out; /* no need to look further */
1127 if (!MLOCK_PAGES && !(flags & TTU_IGNORE_MLOCK) &&
1128 (vma->vm_flags & VM_LOCKED))
1129 continue;
1130 cursor = (unsigned long) vma->vm_private_data;
1131 if (cursor > max_nl_cursor)
1132 max_nl_cursor = cursor;
1133 cursor = vma->vm_end - vma->vm_start;
1134 if (cursor > max_nl_size)
1135 max_nl_size = cursor;
1138 if (max_nl_size == 0) { /* all nonlinears locked or reserved ? */
1139 ret = SWAP_FAIL;
1140 goto out;
1144 * We don't try to search for this page in the nonlinear vmas,
1145 * and page_referenced wouldn't have found it anyway. Instead
1146 * just walk the nonlinear vmas trying to age and unmap some.
1147 * The mapcount of the page we came in with is irrelevant,
1148 * but even so use it as a guide to how hard we should try?
1150 mapcount = page_mapcount(page);
1151 if (!mapcount)
1152 goto out;
1153 cond_resched_lock(&mapping->i_mmap_lock);
1155 max_nl_size = (max_nl_size + CLUSTER_SIZE - 1) & CLUSTER_MASK;
1156 if (max_nl_cursor == 0)
1157 max_nl_cursor = CLUSTER_SIZE;
1159 do {
1160 list_for_each_entry(vma, &mapping->i_mmap_nonlinear,
1161 shared.vm_set.list) {
1162 if (!MLOCK_PAGES && !(flags & TTU_IGNORE_MLOCK) &&
1163 (vma->vm_flags & VM_LOCKED))
1164 continue;
1165 cursor = (unsigned long) vma->vm_private_data;
1166 while ( cursor < max_nl_cursor &&
1167 cursor < vma->vm_end - vma->vm_start) {
1168 ret = try_to_unmap_cluster(cursor, &mapcount,
1169 vma, page);
1170 if (ret == SWAP_MLOCK)
1171 mlocked = 2; /* to return below */
1172 cursor += CLUSTER_SIZE;
1173 vma->vm_private_data = (void *) cursor;
1174 if ((int)mapcount <= 0)
1175 goto out;
1177 vma->vm_private_data = (void *) max_nl_cursor;
1179 cond_resched_lock(&mapping->i_mmap_lock);
1180 max_nl_cursor += CLUSTER_SIZE;
1181 } while (max_nl_cursor <= max_nl_size);
1184 * Don't loop forever (perhaps all the remaining pages are
1185 * in locked vmas). Reset cursor on all unreserved nonlinear
1186 * vmas, now forgetting on which ones it had fallen behind.
1188 list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list)
1189 vma->vm_private_data = NULL;
1190 out:
1191 spin_unlock(&mapping->i_mmap_lock);
1192 if (mlocked)
1193 ret = SWAP_MLOCK; /* actually mlocked the page */
1194 else if (ret == SWAP_MLOCK)
1195 ret = SWAP_AGAIN; /* saw VM_LOCKED vma */
1196 return ret;
1200 * try_to_unmap - try to remove all page table mappings to a page
1201 * @page: the page to get unmapped
1202 * @flags: action and flags
1204 * Tries to remove all the page table entries which are mapping this
1205 * page, used in the pageout path. Caller must hold the page lock.
1206 * Return values are:
1208 * SWAP_SUCCESS - we succeeded in removing all mappings
1209 * SWAP_AGAIN - we missed a mapping, try again later
1210 * SWAP_FAIL - the page is unswappable
1211 * SWAP_MLOCK - page is mlocked.
1213 int try_to_unmap(struct page *page, enum ttu_flags flags)
1215 int ret;
1217 BUG_ON(!PageLocked(page));
1219 if (PageAnon(page))
1220 ret = try_to_unmap_anon(page, flags);
1221 else
1222 ret = try_to_unmap_file(page, flags);
1223 if (ret != SWAP_MLOCK && !page_mapped(page))
1224 ret = SWAP_SUCCESS;
1225 return ret;
1229 * try_to_munlock - try to munlock a page
1230 * @page: the page to be munlocked
1232 * Called from munlock code. Checks all of the VMAs mapping the page
1233 * to make sure nobody else has this page mlocked. The page will be
1234 * returned with PG_mlocked cleared if no other vmas have it mlocked.
1236 * Return values are:
1238 * SWAP_SUCCESS - no vma's holding page mlocked.
1239 * SWAP_AGAIN - page mapped in mlocked vma -- couldn't acquire mmap sem
1240 * SWAP_MLOCK - page is now mlocked.
1242 int try_to_munlock(struct page *page)
1244 VM_BUG_ON(!PageLocked(page) || PageLRU(page));
1246 if (PageAnon(page))
1247 return try_to_unmap_anon(page, TTU_MUNLOCK);
1248 else
1249 return try_to_unmap_file(page, TTU_MUNLOCK);