All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP
@ 2023-03-21  8:30 Geert Uytterhoeven
  2023-03-21  8:41 ` John Paul Adrian Glaubitz
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Geert Uytterhoeven @ 2023-03-21  8:30 UTC (permalink / raw)
  To: Dave Hansen, Arnd Bergmann, Christoph Lameter, Pekka Enberg,
	David Rientjes, Joonsoo Kim, Andrew Morton, Vlastimil Babka,
	Roman Gushchin, Hyeonggon Yoo
  Cc: John Paul Adrian Glaubitz, linux-mm, linux-sh, linux-kernel,
	Geert Uytterhoeven, Randy Dunlap

sh/migor_defconfig:

    mm/slab.c: In function ‘slab_memory_callback’:
    mm/slab.c:1127:23: error: implicit declaration of function ‘init_cache_node_node’; did you mean ‘drain_cache_node_node’? [-Werror=implicit-function-declaration]
     1127 |                 ret = init_cache_node_node(nid);
	  |                       ^~~~~~~~~~~~~~~~~~~~
	  |                       drain_cache_node_node

The #ifdef condition protecting the definition of init_cache_node_node()
no longer matches the conditions protecting the (multiple) users.

Fix this by syncing the conditions.

Fixes: 76af6a054da40553 ("mm/migrate: add CPU hotplug to demotion #ifdef")
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/b5bdea22-ed2f-3187-6efe-0c72330270a4@infradead.org
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 mm/slab.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/slab.c b/mm/slab.c
index ba454246ee13dd4d..de1523a78f2e7367 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -839,7 +839,7 @@ static int init_cache_node(struct kmem_cache *cachep, int node, gfp_t gfp)
 	return 0;
 }
 
-#if (defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)) || defined(CONFIG_SMP)
+#if defined(CONFIG_NUMA) || defined(CONFIG_SMP)
 /*
  * Allocates and initializes node for a node on each slab cache, used for
  * either memory or cpu hotplug.  If memory is being hot-added, the kmem_cache_node
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2023-03-23  8:38 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-21  8:30 [PATCH] mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP Geert Uytterhoeven
2023-03-21  8:41 ` John Paul Adrian Glaubitz
2023-03-21  8:50   ` Geert Uytterhoeven
2023-03-21 15:07     ` Vlastimil Babka
2023-03-21 15:29 ` Randy Dunlap
2023-03-21 16:40 ` Matthew Wilcox
2023-03-21 16:43   ` Randy Dunlap
2023-03-22 16:16   ` Dave Hansen
2023-03-22 16:46     ` Matthew Wilcox
2023-03-22 16:49       ` Dave Hansen
2023-03-23  8:25       ` Geert Uytterhoeven
2023-03-23  8:28         ` John Paul Adrian Glaubitz
2023-03-23  8:36           ` Geert Uytterhoeven

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.