Skip to content

Commit

Permalink
[PATCH] mm: cleanup rmap
Browse files Browse the repository at this point in the history
Thanks to Bill Irwin for pointing this out.

Signed-off-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Nick Piggin authored and Linus Torvalds committed Sep 5, 2005
1 parent 2822c1a commit 4d7670e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions mm/rmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,16 +445,12 @@ void page_add_anon_rmap(struct page *page,

if (atomic_inc_and_test(&page->_mapcount)) {
struct anon_vma *anon_vma = vma->anon_vma;
pgoff_t index;

BUG_ON(!anon_vma);
anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
page->mapping = (struct address_space *) anon_vma;

index = (address - vma->vm_start) >> PAGE_SHIFT;
index += vma->vm_pgoff;
index >>= PAGE_CACHE_SHIFT - PAGE_SHIFT;
page->index = index;
page->index = linear_page_index(vma, address);

inc_page_state(nr_mapped);
}
Expand Down

0 comments on commit 4d7670e

Please sign in to comment.