mm, hotplug: avoid compiling memory hotremove functions when disabled
__remove_pages() is only necessary for CONFIG_MEMORY_HOTREMOVE. PowerPC pseries will return -EOPNOTSUPP if unsupported. Adding an #ifdef causes several other functions it depends on to also become unnecessary, which saves in .text when disabled (it's disabled in most defconfigs besides powerpc, including x86). remove_memory_block() becomes static since it is not referenced outside of drivers/base/memory.c. Build tested on x86 and powerpc with CONFIG_MEMORY_HOTREMOVE both enabled and disabled. Signed-off-by:David Rientjes <rientjes@google.com> Acked-by:
Toshi Kani <toshi.kani@hp.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Wen Congyang <wency@cn.fujitsu.com> Cc: Tang Chen <tangchen@cn.fujitsu.com> Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Lin...
Showing
- arch/powerpc/platforms/pseries/hotplug-memory.c 12 additions, 0 deletionsarch/powerpc/platforms/pseries/hotplug-memory.c
- drivers/base/memory.c 23 additions, 21 deletionsdrivers/base/memory.c
- include/linux/memory.h 2 additions, 1 deletioninclude/linux/memory.h
- include/linux/memory_hotplug.h 2 additions, 2 deletionsinclude/linux/memory_hotplug.h
- mm/memory_hotplug.c 35 additions, 33 deletionsmm/memory_hotplug.c
- mm/sparse.c 39 additions, 33 deletionsmm/sparse.c
Please register or sign in to comment