From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na6sys010bmx106.postini.com [74.125.246.206]) by kanga.kvack.org (Postfix) with SMTP id EB7D66B00A6 for ; Mon, 25 Mar 2013 17:34:01 -0400 (EDT) Date: Mon, 25 Mar 2013 14:34:00 -0700 From: Andrew Morton Subject: Re: [patch] mm: speedup in __early_pfn_to_nid Message-Id: <20130325143400.d226b1f7b64a209b86dd4151@linux-foundation.org> In-Reply-To: References: <20130318155619.GA18828@sgi.com> <20130321105516.GC18484@gmail.com> <20130322072532.GC10608@gmail.com> <20130323152948.GA3036@sgi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: David Rientjes Cc: KOSAKI Motohiro , Russ Anderson , Ingo Molnar , "linux-mm@kvack.org" , LKML , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" On Sun, 24 Mar 2013 17:28:12 -0700 (PDT) David Rientjes wrote: > On Sat, 23 Mar 2013, KOSAKI Motohiro wrote: > > > > --- linux.orig/mm/page_alloc.c 2013-03-19 16:09:03.736450861 -0500 > > > +++ linux/mm/page_alloc.c 2013-03-22 17:07:43.895405617 -0500 > > > @@ -4161,10 +4161,23 @@ int __meminit __early_pfn_to_nid(unsigne > > > { > > > unsigned long start_pfn, end_pfn; > > > int i, nid; > > > + /* > > > + NOTE: The following SMP-unsafe globals are only used early > > > + in boot when the kernel is running single-threaded. > > > + */ > > > + static unsigned long last_start_pfn, last_end_pfn; > > > + static int last_nid; > > > > Why don't you mark them __meminitdata? They seems freeable. > > > > Um, defining them in a __meminit function places them in .meminit.data > already. I wish it did, but it doesn't. -- 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: email@kvack.org