mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-17 06:52:43 +00:00
x86: fix boot failure with 64GB+ system with numa 32-bit
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
9043f00796
commit
c3ff01672a
@ -251,7 +251,7 @@ static int __init acpi20_parse_srat(struct acpi_table_srat *sratp)
|
|||||||
|
|
||||||
for_each_online_node(nid) {
|
for_each_online_node(nid) {
|
||||||
unsigned long start = node_start_pfn[nid];
|
unsigned long start = node_start_pfn[nid];
|
||||||
unsigned long end = node_end_pfn[nid];
|
unsigned long end = min(node_end_pfn[nid], max_pfn);
|
||||||
|
|
||||||
memory_present(nid, start, end);
|
memory_present(nid, start, end);
|
||||||
node_remap_size[nid] = node_memmap_size_bytes(nid, start, end);
|
node_remap_size[nid] = node_memmap_size_bytes(nid, start, end);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user