Re: powerpc/pseries: Fix build break when MEMORY_HOTREMOVE=n

2017-02-15 Thread Michael Ellerman
On Thu, 2017-02-16 at 03:01:18 UTC, Michael Ellerman wrote: > We broke the build when CONFIG_MEMORY_HOTREMOVE=n: > > arch/powerpc/platforms/pseries/hotplug-memory.c:821:8: error: implicit > declaration of function 'dlpar_memory_readd_by_index' > > Add a dummy to fix it. > > Fixes: e70d59700f

Re: [PATCH] powerpc/pseries: Fix build break when MEMORY_HOTREMOVE=n

2017-02-15 Thread Michael Ellerman
Nathan Fontenot writes: > On 02/15/2017 09:01 PM, Michael Ellerman wrote: >> We broke the build when CONFIG_MEMORY_HOTREMOVE=n: >> >> arch/powerpc/platforms/pseries/hotplug-memory.c:821:8: error: implicit >> declaration of function 'dlpar_memory_readd_by_index' >> >> Add a dummy to fix it.

Re: [PATCH] powerpc/pseries: Fix build break when MEMORY_HOTREMOVE=n

2017-02-15 Thread Nathan Fontenot
On 02/15/2017 09:01 PM, Michael Ellerman wrote: > We broke the build when CONFIG_MEMORY_HOTREMOVE=n: > > arch/powerpc/platforms/pseries/hotplug-memory.c:821:8: error: implicit > declaration of function 'dlpar_memory_readd_by_index' > > Add a dummy to fix it. > > Fixes: e70d59700fc3 ("powerpc

[PATCH] powerpc/pseries: Fix build break when MEMORY_HOTREMOVE=n

2017-02-15 Thread Michael Ellerman
We broke the build when CONFIG_MEMORY_HOTREMOVE=n: arch/powerpc/platforms/pseries/hotplug-memory.c:821:8: error: implicit declaration of function 'dlpar_memory_readd_by_index' Add a dummy to fix it. Fixes: e70d59700fc3 ("powerpc/pseries: Introduce memory hotplug READD operation") Signed-off