diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-11-23 08:49:09 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-12-01 06:05:13 -0500 |
commit | d981733aaf970e4537bb8dee9422ee775d92e5ae (patch) | |
tree | 537236d2937d4d8a1f2c276cd026c774e656ea5c /arch/mips/mm | |
parent | 8b36612a23fda542fab5f0c6c26e15e2178e3d0e (diff) |
[MIPS] Use reset_page_mapcount to initialize empty_zero_page usage counter.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index f75ab748e8cd..3a49036e0ae8 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
@@ -68,7 +68,7 @@ unsigned long setup_zero_pages(void) | |||
68 | page = virt_to_page(empty_zero_page); | 68 | page = virt_to_page(empty_zero_page); |
69 | while (page < virt_to_page(empty_zero_page + (PAGE_SIZE << order))) { | 69 | while (page < virt_to_page(empty_zero_page + (PAGE_SIZE << order))) { |
70 | set_bit(PG_reserved, &page->flags); | 70 | set_bit(PG_reserved, &page->flags); |
71 | set_page_count(page, 0); | 71 | reset_page_mapcount(page); |
72 | page++; | 72 | page++; |
73 | } | 73 | } |
74 | 74 | ||