]> git.baikalelectronics.ru Git - kernel.git/commit
x86: Fix the initialization of physnode_map
authorPetr Tesarik <ptesarik@suse.cz>
Sat, 1 Feb 2014 12:30:19 +0000 (13:30 +0100)
committerH. Peter Anvin <hpa@zytor.com>
Sun, 2 Feb 2014 06:15:51 +0000 (22:15 -0800)
commit5f35feda9f280aeff31213f2a31ecccf6e5f9df8
tree2b550d2c20d88c55fc23e77fab306a645953927d
parenta48244813ba9111fca65df7534dbb0d8c950bba7
x86: Fix the initialization of physnode_map

With DISCONTIGMEM, the mapping between a pfn and its owning node is
initialized using data provided by the BIOS. However, the initialization
may fail if the extents are not aligned to section boundary (64M).

The symptom of this bug is an early boot failure in pfn_to_page(),
as it tries to access NODE_DATA(__nid) using index from an unitialized
element of the physnode_map[] array.

While the bug is always present, it is more likely to be hit in kdump
kernels on large machines, because:

1. The memory map for a kdump kernel is specified as exactmap, and
   exactmap is more likely to be unaligned.

2. Large reservations are more likely to span across a 64M boundary.

[ hpa: fixed incorrect use of "pfn" instead of "start" ]

Signed-off-by: Petr Tesarik <ptesarik@suse.cz>
Link: http://lkml.kernel.org/r/20140201133019.32e56f86@hananiah.suse.cz
Acked-by: David Rientjes <rientjes@google.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
arch/x86/mm/numa_32.c