diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-06-14 02:13:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-15 19:18:08 -0400 |
commit | d09c6b809432668371b5de9102f4f9aa6a7c79cc (patch) | |
tree | 23a80218149ce732dfab1afca6abd3f370bc0131 | |
parent | 902233ee494f9d9da6dbb818316fcbf892bebbed (diff) |
mm: Fix memory/cpu hotplug section mismatch and oops.
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 fo
This happens because CONFIG_HOTPLUG_CPU=n sets __cpuinit to __init, but
CONFIG_MEMORY_HOTPLUG=y unsets __meminit.
Changing zone_batchsize() to __devinit fixes this.
__devinit is the only thing that is common between CONFIG_HOTPLUG_CPU=y and
CONFIG_MEMORY_HOTPLUG=y. In the long run, perhaps this should be moved to
another section identifier completely. Without this, memory hot-add
of offline nodes (via hotadd_new_pgdat()) will oops if CPU hotplug is
not also enabled.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Yasunori Goto <y-goto@jp.fujitsu.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
--
mm/page_alloc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index bd8e33582d25..05ace44852eb 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, | |||
1968 | memmap_init_zone((size), (nid), (zone), (start_pfn), MEMMAP_EARLY) | 1968 | memmap_init_zone((size), (nid), (zone), (start_pfn), MEMMAP_EARLY) |
1969 | #endif | 1969 | #endif |
1970 | 1970 | ||
1971 | static int __cpuinit zone_batchsize(struct zone *zone) | 1971 | static int __devinit zone_batchsize(struct zone *zone) |
1972 | { | 1972 | { |
1973 | int batch; | 1973 | int batch; |
1974 | 1974 | ||