Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6861
b: refs/heads/master
c: 2822c1a
h: refs/heads/master
i:
  6859: 08b7af5
v: v3
  • Loading branch information
Nick Piggin authored and Linus Torvalds committed Sep 5, 2005
1 parent eaaf753 commit 96b6e6e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c3dce2d89c269d5373a120d4a22fc2426ec992b0
refs/heads/master: 2822c1aa574d277b9ba0130b1e71c1a5874bc04a
21 changes: 11 additions & 10 deletions trunk/mm/rmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -439,22 +439,23 @@ int page_referenced(struct page *page, int is_locked, int ignore_token)
void page_add_anon_rmap(struct page *page,
struct vm_area_struct *vma, unsigned long address)
{
struct anon_vma *anon_vma = vma->anon_vma;
pgoff_t index;

BUG_ON(PageReserved(page));
BUG_ON(!anon_vma);

inc_mm_counter(vma->vm_mm, anon_rss);

anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
index = (address - vma->vm_start) >> PAGE_SHIFT;
index += vma->vm_pgoff;
index >>= PAGE_CACHE_SHIFT - PAGE_SHIFT;

if (atomic_inc_and_test(&page->_mapcount)) {
page->index = index;
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;

inc_page_state(nr_mapped);
}
/* else checking page index and mapping is racy */
Expand Down

0 comments on commit 96b6e6e

Please sign in to comment.