]> git.karo-electronics.de Git - karo-tx-linux.git/commit
[PATCH] sparsemem: fix oops in x86_64 show_mem
authorBob Picco <bob.picco@hp.com>
Fri, 8 Jun 2007 01:01:35 +0000 (21:01 -0400)
committerWilly Tarreau <w@1wt.eu>
Wed, 15 Aug 2007 08:02:25 +0000 (10:02 +0200)
commit61540c3cf703e55fddb9ed6b9bf032b5c4d61813
treee0099d3b6b22a5175f30e6fddb6e31bf3b6494f1
parent6f86cc30ff0f6610b6ec1d41d7d1ab1061e0cc47
[PATCH] sparsemem: fix oops in x86_64 show_mem

We aren't sampling for holes in memory. Thus we encounter a section hole with
empty section map pointer for SPARSEMEM and OOPs for show_mem. This issue
has been seen in 2.6.21, current git and current mm. This patch is for
2.6.21 stable. It was tested against sparsemem.

Previous to commit f0a5a58aa812b31fd9f197c4ba48245942364eae memory_present
was called for node_start_pfn to node_end_pfn. This would cover the hole(s)
with reserved pages and valid sections. Most SPARSEMEM supported arches
do a pfn_valid check in show_mem before computing the page structure address.

This issue was brought to my attention on IRC by Arnaldo Carvalho de Melo at
acme@redhat.com. Thanks to Arnaldo for testing.

Signed-off-by: Bob Picco <bob.picco@hp.com>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/x86_64/mm/init.c