]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
powerpc: Fix memory hotplug with sparse vmemmap
authorNathan Fontenot <nfont@linux.vnet.ibm.com>
Fri, 27 Sep 2013 15:18:09 +0000 (10:18 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Oct 2013 01:14:28 +0000 (18:14 -0700)
commit8feeb87d772d6611d7eaf9e0e870d1ed981ef322
treeadd4b2ba02d382ce75ab1e6ddbc85a18d957ed2e
parent698dc640e9dc5722d8ce4bf34524986ef5236390
powerpc: Fix memory hotplug with sparse vmemmap

commit f7e3334a6bcb42e7295a9bd9cb36ca4e6e4e66b4 upstream.

Previous commit 46723bfa540... introduced a new config option
HAVE_BOOTMEM_INFO_NODE that ended up breaking memory hot-remove for ppc
when sparse vmemmap is not defined.

This patch defines HAVE_BOOTMEM_INFO_NODE for ppc and adds the call to
register_page_bootmem_info_node. Without this we get a BUG_ON for memory
hot remove in put_page_bootmem().

This also adds a stub for register_page_bootmem_memmap to allow ppc to build
with sparse vmemmap defined. Leaving this as a stub is fine since the same
vmemmap addresses are also handled in vmemmap_populate and as such are
properly mapped.

Signed-off-by: Nathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/powerpc/mm/init_64.c
arch/powerpc/mm/mem.c
mm/Kconfig