Commit 85530b97 authored by Ivan Kokshaysky's avatar Ivan Kokshaysky Committed by Richard Henderson

[PATCH] compile fix for mm/init.c

Fix another page->count reference (in addition to numa.c one
that I've sent earlier).

Ivan.
parent 4ee5a98f
...@@ -117,7 +117,7 @@ show_mem(void) ...@@ -117,7 +117,7 @@ show_mem(void)
else if (!page_count(mem_map+i)) else if (!page_count(mem_map+i))
free++; free++;
else else
shared += atomic_read(&mem_map[i].count) - 1; shared += page_count(mem_map + i) - 1;
} }
printk("%ld pages of RAM\n",total); printk("%ld pages of RAM\n",total);
printk("%ld free pages\n",free); printk("%ld free pages\n",free);
......
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