From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932544AbWF0TSH (ORCPT ); Tue, 27 Jun 2006 15:18:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932542AbWF0TSG (ORCPT ); Tue, 27 Jun 2006 15:18:06 -0400 Received: from ug-out-1314.google.com ([66.249.92.169]:63983 "EHLO ug-out-1314.google.com") by vger.kernel.org with ESMTP id S932544AbWF0TSD (ORCPT ); Tue, 27 Jun 2006 15:18:03 -0400 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=U1Hir4v0KqnMSQRYQWzsqWs6i1iLyU//w2+2CiONFdFEHJpGPSb0nqbWd0kDVyzNGkU098A8QbSnMQRgfF7O/uY2OoIicI5wbJjWiujML4UjzHyIZFLmo13rZ67Z22hVbssvsu7pqKH7VMSjFoNnX1fHFQohZixlvdFZhmwyWMs= Message-ID: Date: Tue, 27 Jun 2006 21:18:01 +0200 From: "Franck Bui-Huu" To: "Dave Hansen" Subject: Re: [PATCH 2/7] bootmem: mark link_bootmem() as part of the __init section Cc: "Andrew Morton" , "Mel Gorman" , "Linux Kernel Mailing List" In-Reply-To: <1151428665.24103.2.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <449FDD02.2090307@innova-card.com> <1151344691.10877.44.camel@localhost.localdomain> <44A12A4F.8030204@innova-card.com> <1151428665.24103.2.camel@localhost.localdomain> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org 2006/6/27, Dave Hansen : > On Tue, 2006-06-27 at 14:53 +0200, Franck Bui-Huu wrote: > > Signed-off-by: Franck Bui-Huu > > --- > > mm/bootmem.c | 2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --git a/mm/bootmem.c b/mm/bootmem.c > > index d213fed..d0a34fe 100644 > > --- a/mm/bootmem.c > > +++ b/mm/bootmem.c > > @@ -56,7 +56,7 @@ unsigned long __init bootmem_bootmap_pag > > /* > > * link bdata in order > > */ > > -static void link_bootmem(bootmem_data_t *bdata) > > +static void __init link_bootmem(bootmem_data_t *bdata) > > { > > bootmem_data_t *ent; > > if (list_empty(&bdata_list)) { > > Looks sane. Just curious, did you do any wider audit in bootmem.c for > more of these? > I checked that all functions in bootmem.c belong to the __init section. -- Franck