]> bbs.cooldavid.org Git - net-next-2.6.git/commit
[PATCH] do_wp_page: cannot share file page
authorHugh Dickins <hugh@veritas.com>
Wed, 22 Jun 2005 00:15:11 +0000 (17:15 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Wed, 22 Jun 2005 01:46:21 +0000 (18:46 -0700)
commitd296e9cd02c92e576ecce5344026a4df4353cdb2
tree76af62c5d2c16e89672f71f2f4c7a65aa36ff914
parent08ef472937e918875a82fd350d3de138aac50414
[PATCH] do_wp_page: cannot share file page

A small optimization to do_wp_page's check for whether to avoid copy by
reusing the page already mapped.  It can never share a cached file page,
nor can it share a reserved page (often the empty zero page), so it's a
waste of time to lock and unlock in those cases.  Which nowadays can both
be neatly excluded by a preliminary PageAnon test.

Christoph has reported that a preliminary page_count test proved valuable
for scalability here, but PageAnon covers more common cases all at once.

Signed-off-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
mm/memory.c