diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-11-04 04:42:03 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-11-15 23:21:48 +0000 |
commit | a8049c53cdad347b5b1234969dba65a179fdf8f1 (patch) | |
tree | 01386830e7ce44c66318a1b479daffa65d63182b /arch/mips/mm/init.c | |
parent | a754f70886ebcc7fda3d18a828e0e54e3ffc86d9 (diff) | |
download | op-kernel-dev-a8049c53cdad347b5b1234969dba65a179fdf8f1.zip op-kernel-dev-a8049c53cdad347b5b1234969dba65a179fdf8f1.tar.gz |
[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 110ee76..ec3b9e9 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c @@ -426,7 +426,7 @@ void __init mem_init(void) #ifdef CONFIG_HIGHMEM for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { - struct page *page = mem_map + tmp; + struct page *page = pfn_to_page(tmp); if (!page_is_ram(tmp)) { SetPageReserved(page); |