From: "Raghu R. Arur" <rra2002@aria.ncl.cs.columbia.edu>
To: linux-mm@kvack.org
Subject: do_wp_page
Date: Wed, 30 Jul 2003 15:14:53 -0400 (EDT) [thread overview]
Message-ID: <Pine.GSO.4.51.0307301514240.8932@aria.ncl.cs.columbia.edu> (raw)
hi,
In do_wp_page of 2.4.19 why is the rss value of address space
incremented only when the old_page ( the page on which the process faults
due to write protection) is a reserved page. I mean if the process has
mapped a read only page ( which is different from a ZERO_PAGE) and if it
faults on that page when it tries to
write, the rss value is not incremented even if a new page is created
and page table entry is set to the allocated page. What am i missing here?
new_page = alloc_page(GFP_HIGHUSER);
if (!new_page)
goto no_mem;
copy_cow_page(old_page,new_page,address);
/*
* Re-check the pte - we dropped the lock
*/
spin_lock(&mm->page_table_lock);
if (pte_same(*page_table, pte)) {
if (PageReserved(old_page)) {
++mm->rss;
}
break_cow(vma, new_page, address, page_table);
lru_cache_add(new_page);
/* Free the old page.. */
new_page = old_page;
}
thanks,
Raghu
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>
next reply other threads:[~2003-07-30 19:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-07-30 19:14 Raghu R. Arur [this message]
2003-07-31 10:35 ` do_wp_page Mel Gorman
2003-07-31 10:43 ` do_wp_page Mel Gorman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.GSO.4.51.0307301514240.8932@aria.ncl.cs.columbia.edu \
--to=rra2002@aria.ncl.cs.columbia.edu \
--cc=linux-mm@kvack.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox