diff options
author | Hugh Dickins <hugh@veritas.com> | 2009-01-06 17:39:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 18:59:02 -0500 |
commit | b5934c531849ff4a51ce0f290141efe564290e40 (patch) | |
tree | 0c741a5bd6178db11f1147875f59e7a1a9d1754d /mm/rmap.c | |
parent | 51726b1222863852c46ca21ed0115b85d1edfd89 (diff) |
mm: add_active_or_unevictable into rmap
lru_cache_add_active_or_unevictable() and page_add_new_anon_rmap() always
appear together. Save some symbol table space and some jumping around by
removing lru_cache_add_active_or_unevictable(), folding its code into
page_add_new_anon_rmap(): like how we add file pages to lru just after
adding them to page cache.
Remove the nearby "TODO: is this safe?" comments (yes, it is safe), and
change page_add_new_anon_rmap()'s address BUG_ON to VM_BUG_ON as
originally intended.
Signed-off-by: Hugh Dickins <hugh@veritas.com>
Acked-by: Rik van Riel <riel@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>
Cc: Mel Gorman <mel@csn.ul.ie>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/rmap.c')
-rw-r--r-- | mm/rmap.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -47,6 +47,7 @@ | |||
47 | #include <linux/rmap.h> | 47 | #include <linux/rmap.h> |
48 | #include <linux/rcupdate.h> | 48 | #include <linux/rcupdate.h> |
49 | #include <linux/module.h> | 49 | #include <linux/module.h> |
50 | #include <linux/mm_inline.h> | ||
50 | #include <linux/kallsyms.h> | 51 | #include <linux/kallsyms.h> |
51 | #include <linux/memcontrol.h> | 52 | #include <linux/memcontrol.h> |
52 | #include <linux/mmu_notifier.h> | 53 | #include <linux/mmu_notifier.h> |
@@ -671,9 +672,13 @@ void page_add_anon_rmap(struct page *page, | |||
671 | void page_add_new_anon_rmap(struct page *page, | 672 | void page_add_new_anon_rmap(struct page *page, |
672 | struct vm_area_struct *vma, unsigned long address) | 673 | struct vm_area_struct *vma, unsigned long address) |
673 | { | 674 | { |
674 | BUG_ON(address < vma->vm_start || address >= vma->vm_end); | 675 | VM_BUG_ON(address < vma->vm_start || address >= vma->vm_end); |
675 | atomic_set(&page->_mapcount, 0); /* elevate count by 1 (starts at -1) */ | 676 | atomic_set(&page->_mapcount, 0); /* elevate count by 1 (starts at -1) */ |
676 | __page_set_anon_rmap(page, vma, address); | 677 | __page_set_anon_rmap(page, vma, address); |
678 | if (page_evictable(page, vma)) | ||
679 | lru_cache_add_lru(page, LRU_ACTIVE + page_is_file_cache(page)); | ||
680 | else | ||
681 | add_page_to_unevictable_list(page); | ||
677 | } | 682 | } |
678 | 683 | ||
679 | /** | 684 | /** |