Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755177AbXFKFBg (ORCPT ); Mon, 11 Jun 2007 01:01:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1762158AbXFKFBT (ORCPT ); Mon, 11 Jun 2007 01:01:19 -0400 Received: from fgwmail6.fujitsu.co.jp ([192.51.44.36]:54365 "EHLO fgwmail6.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755643AbXFKFBS (ORCPT ); Mon, 11 Jun 2007 01:01:18 -0400 Date: Mon, 11 Jun 2007 14:01:45 +0900 From: KAMEZAWA Hiroyuki To: Paul Mundt Cc: Sam Ravnborg , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: mm: memory/cpu hotplug section mismatch. Message-Id: <20070611140145.05726c0f.kamezawa.hiroyu@jp.fujitsu.com> In-Reply-To: <20070611043543.GA22910@linux-sh.org> References: <20070611043543.GA22910@linux-sh.org> Organization: Fujitsu X-Mailer: Sylpheed 2.4.2 (GTK+ 2.10.11; i686-pc-mingw32) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1211 Lines: 35 On Mon, 11 Jun 2007 13:35:43 +0900 Paul Mundt wrote: > 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. > It seems this zone_batchsize() is called by cpu-hotplug and memory-hotplug. So, __init_refok doesn't look good, here. maybe we can use __devinit here. (Because HOTPLUG_CPU and MEMORY_HOTPLUG are depend on CONFIG_HOTPLUG.) -Kame - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/