From: Keith Mannthey In cases where the acpi memory-add event does not containe the pxm (node) infomation allow the driver to look up node info based on the address. The acpi_get_node call returns -1 if it can't decode the pxm info, this causes add_memory to panic. acpi_get_node would have to decode the resource from the handle (a lenghty proposition). This seems to be the cleanist point to interject the hook. Signed-off-by: Keith Mannthey Cc: KAMEZAWA Hiroyuki Cc: Andi Kleen Signed-off-by: Andrew Morton --- diff -puN drivers/acpi/acpi_memhotplug.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup drivers/acpi/acpi_memhotplug.c --- a/drivers/acpi/acpi_memhotplug.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup +++ a/drivers/acpi/acpi_memhotplug.c @@ -238,6 +238,10 @@ static int acpi_memory_enable_device(str num_enabled++; continue; } + + if (node < 0) + node = memory_add_physaddr_to_nid(info->start_addr); + result = add_memory(node, info->start_addr, info->length); if (result) continue; _