From: Corentin Labbe Date: Wed, 14 Feb 2018 12:17:47 +0000 (+0000) Subject: powerpc/pseries: Add empty update_numa_cpu_lookup_table() for NUMA=n X-Git-Tag: v4.19~1556^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1e150ceb61e4a585bad156da15c33bfe89f5858;p=platform%2Fkernel%2Flinux-rpi.git powerpc/pseries: Add empty update_numa_cpu_lookup_table() for NUMA=n When CONFIG_NUMA is not set, the build fails with: arch/powerpc/platforms/pseries/hotplug-cpu.c:335:4: error: déclaration implicite de la fonction « update_numa_cpu_lookup_table » So we have to add update_numa_cpu_lookup_table() as an empty function when CONFIG_NUMA is not set. Fixes: 1d9a090783be ("powerpc/numa: Invalidate numa_cpu_lookup_table on cpu remove") Signed-off-by: Corentin Labbe Signed-off-by: Michael Ellerman --- diff --git a/arch/powerpc/include/asm/topology.h b/arch/powerpc/include/asm/topology.h index 5932481..9f42164 100644 --- a/arch/powerpc/include/asm/topology.h +++ b/arch/powerpc/include/asm/topology.h @@ -81,6 +81,9 @@ static inline int numa_update_cpu_topology(bool cpus_locked) { return 0; } + +static inline void update_numa_cpu_lookup_table(unsigned int cpu, int node) {} + #endif /* CONFIG_NUMA */ #if defined(CONFIG_NUMA) && defined(CONFIG_PPC_SPLPAR)