linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* mm: memory/cpu hotplug section mismatch.
@ 2007-06-11  4:35 Paul Mundt
  2007-06-11  5:01 ` KAMEZAWA Hiroyuki
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Mundt @ 2007-06-11  4:35 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: linux-mm, linux-kernel

When building with memory hotplug enabled and cpu hotplug disabled, we
end up with the following section mismatch:

WARNING: mm/built-in.o(.text+0x4e58): Section mismatch: reference to
.init.text: (between 'free_area_init_node' and '__build_all_zonelists')

This happens as a result of:

	-> free_area_init_node()
	  -> free_area_init_core()
	    -> zone_pcp_init() <-- all __meminit up to this point
	      -> zone_batchsize() <-- marked as __cpuinit

This happens because CONFIG_HOTPLUG_CPU=n sets __cpuinit to __init, but
CONFIG_MEMORY_HOTPLUG=y unsets __meminit.

Changing zone_batchsize() to __init_refok fixes this.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>

--

 mm/page_alloc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index bd8e335..5c312d6 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1968,7 +1968,7 @@ void zone_init_free_lists(struct pglist_data *pgdat, struct zone *zone,
 	memmap_init_zone((size), (nid), (zone), (start_pfn), MEMMAP_EARLY)
 #endif
 
-static int __cpuinit zone_batchsize(struct zone *zone)
+static int __init_refok zone_batchsize(struct zone *zone)
 {
 	int batch;
 

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2007-06-12  3:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-11  4:35 mm: memory/cpu hotplug section mismatch Paul Mundt
2007-06-11  5:01 ` KAMEZAWA Hiroyuki
2007-06-11  5:09   ` Paul Mundt
2007-06-11 15:27     ` Randy Dunlap
2007-06-11 15:44       ` Paul Mundt
2007-06-11 18:40         ` Sam Ravnborg
2007-06-12  1:50           ` Yasunori Goto
2007-06-12  3:19             ` Paul Mundt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox