The $SUBJECT patch has a small, obvious, compile bug in it on the NUMA-Q, which I introduced while cleaning it up. Please apply this patch on top of that one.
-- Dave
The "abstract discontigmem setup" patch has a small compile bug in it on the NUMA-Q, which I introduced while "cleaning it up." Please apply after that patch. Signed-off-by: Dave Hansen <[EMAIL PROTECTED]> --- memhotplug-dave/arch/i386/kernel/numaq.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) diff -puN arch/i386/kernel/numaq.c~A3.2.1-fix-numaq arch/i386/kernel/numaq.c --- memhotplug/arch/i386/kernel/numaq.c~A3.2.1-fix-numaq 2005-02-28 14:16:23.000000000 -0800 +++ memhotplug-dave/arch/i386/kernel/numaq.c 2005-02-28 14:16:59.000000000 -0800 @@ -62,7 +62,9 @@ static void __init smp_dump_qct(void) memory_present(node, node_start_pfn[node], node_end_pfn[node]); - node_remap_size[node] = node_memmap_size_bytes(node); + node_remap_size[node] = node_memmap_size_bytes(node, + node_start_pfn[node], + node_end_pfn[node]); } } } _

