diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-11-04 00:42:03 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-11-15 18:21:48 -0500 |
commit | a8049c53cdad347b5b1234969dba65a179fdf8f1 (patch) | |
tree | 01386830e7ce44c66318a1b479daffa65d63182b /arch/mips/mm/init.c | |
parent | a754f70886ebcc7fda3d18a828e0e54e3ffc86d9 (diff) |
[MIPS] Convert reference to mem_map to pfn_to_page().
This was crashing the combination of highmem and sparsemem.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/init.c')
-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 110ee7656b41..ec3b9e9f30f4 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
@@ -426,7 +426,7 @@ void __init mem_init(void) | |||
426 | 426 | ||
427 | #ifdef CONFIG_HIGHMEM | 427 | #ifdef CONFIG_HIGHMEM |
428 | for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { | 428 | for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { |
429 | struct page *page = mem_map + tmp; | 429 | struct page *page = pfn_to_page(tmp); |
430 | 430 | ||
431 | if (!page_is_ram(tmp)) { | 431 | if (!page_is_ram(tmp)) { |
432 | SetPageReserved(page); | 432 | SetPageReserved(page); |