Commit a8049c53 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Convert reference to mem_map to pfn_to_page().

This was crashing the combination of highmem and sparsemem.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent a754f708
...@@ -426,7 +426,7 @@ void __init mem_init(void) ...@@ -426,7 +426,7 @@ void __init mem_init(void)
#ifdef CONFIG_HIGHMEM #ifdef CONFIG_HIGHMEM
for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { 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)) { if (!page_is_ram(tmp)) {
SetPageReserved(page); SetPageReserved(page);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment