The patch titled hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 has been removed from the -mm tree. Its filename is hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2.patch This patch was dropped because it was folded into hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup.patch ------------------------------------------------------ Subject: hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 From: Yasunori Goto <y-goto@xxxxxxxxxxxxxx> EXPORT_SYMBOL_GPL is necessary for memory_add_physaddr_to_nid(). Because acpi_memhotplug.c which uses it can be compiled as a kernel module. Signed-off-by: Yasunori Goto <y-goto@xxxxxxxxxxxxxx> Cc: Keith Mannthey <kmannth@xxxxxxxxxx> Cc: "Luck, Tony" <tony.luck@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/ia64/mm/numa.c | 2 ++ arch/x86_64/mm/init.c | 1 + arch/x86_64/mm/srat.c | 2 ++ 3 files changed, 5 insertions(+) diff -puN arch/ia64/mm/numa.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 arch/ia64/mm/numa.c --- a/arch/ia64/mm/numa.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 +++ a/arch/ia64/mm/numa.c @@ -16,6 +16,7 @@ #include <linux/node.h> #include <linux/init.h> #include <linux/bootmem.h> +#include <linux/module.h> #include <asm/mmzone.h> #include <asm/numa.h> @@ -84,5 +85,6 @@ int memory_add_physaddr_to_nid(u64 addr) return nid; } +EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); #endif #endif diff -puN arch/x86_64/mm/init.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 arch/x86_64/mm/init.c --- a/arch/x86_64/mm/init.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 +++ a/arch/x86_64/mm/init.c @@ -552,6 +552,7 @@ int memory_add_physaddr_to_nid(u64 start { return 0; } +EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); #endif #else /* CONFIG_MEMORY_HOTPLUG */ diff -puN arch/x86_64/mm/srat.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 arch/x86_64/mm/srat.c --- a/arch/x86_64/mm/srat.c~hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2 +++ a/arch/x86_64/mm/srat.c @@ -470,3 +470,5 @@ int memory_add_physaddr_to_nid(u64 start return ret; } +EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); + _ Patches currently in -mm which might be from y-goto@xxxxxxxxxxxxxx are hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup.patch hot-add-mem-x86_64-memory_add_physaddr_to_nid-node-fixup-fix-2.patch introduce-mechanism-for-registering-active-regions-of-memory.patch have-power-use-add_active_range-and-free_area_init_nodes.patch have-x86-use-add_active_range-and-free_area_init_nodes.patch have-x86-use-add_active_range-and-free_area_init_nodes-fix.patch have-x86_64-use-add_active_range-and-free_area_init_nodes.patch have-ia64-use-add_active_range-and-free_area_init_nodes.patch account-for-memmap-and-optionally-the-kernel-image-as-holes.patch account-for-holes-that-are-outside-the-range-of-physical-memory.patch allow-an-arch-to-expand-node-boundaries.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html