On Thu, 05 Feb 2009 01:21:23 -0800 (PST) David Miller <davem@xxxxxxxxxxxxx> wrote: > From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> > Date: Thu, 5 Feb 2009 18:06:17 +0900 > > > @@ -2632,7 +2633,8 @@ void __meminit memmap_init_zone(unsigned > > if (context == MEMMAP_EARLY) { > > if (!early_pfn_valid(pfn)) > > continue; > > - if (!early_pfn_in_nid(pfn, nid)) > > + tmp = early_pfn_in_nid(pfn, nid); > > + if (tmp > -1 && tmp != nid) > > early_pfn_in_nid() returns true or false, not the found nid > > I think you meant to change this to call early_pfn_to_nid() > sorry.. > I'll make that correction and test your patch. > > BTW, if you make that conversion there is no need for > early_pfn_in_nid() since there will be no other users. > Thanks, maybe the patch will be like this. -Kame == If a pfn is not in early_node_map[], memmap for it is not initialized. By this, PG_reserved is not set and the invalid memmap may sneak into buddy allocator. To avoid that, initialize it with give nid if no early_node_map[] for pfn exists. PG_reserved will make this page unused. Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> --- include/linux/mmzone.h | 6 ------ mm/page_alloc.c | 7 +++++-- 2 files changed, 5 insertions(+), 8 deletions(-) Index: mmotm-2.6.29-Feb03/mm/page_alloc.c =================================================================== --- mmotm-2.6.29-Feb03.orig/mm/page_alloc.c +++ mmotm-2.6.29-Feb03/mm/page_alloc.c @@ -2618,6 +2618,7 @@ void __meminit memmap_init_zone(unsigned unsigned long end_pfn = start_pfn + size; unsigned long pfn; struct zone *z; + int tmp; if (highest_memmap_pfn < end_pfn - 1) highest_memmap_pfn = end_pfn - 1; @@ -2632,7 +2633,8 @@ void __meminit memmap_init_zone(unsigned if (context == MEMMAP_EARLY) { if (!early_pfn_valid(pfn)) continue; - if (!early_pfn_in_nid(pfn, nid)) + tmp = early_pfn_to_nid(pfn); + if (tmp > -1 && tmp != nid) continue; } page = pfn_to_page(pfn); @@ -2999,8 +3001,9 @@ int __meminit early_pfn_to_nid(unsigned return early_node_map[i].nid; } - return 0; + return -1; } + #endif /* CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID */ /* Basic iterator support to walk early_node_map[] */ Index: mmotm-2.6.29-Feb03/include/linux/mmzone.h =================================================================== --- mmotm-2.6.29-Feb03.orig/include/linux/mmzone.h +++ mmotm-2.6.29-Feb03/include/linux/mmzone.h @@ -1070,12 +1070,6 @@ void sparse_init(void); #define sparse_index_init(_sec, _nid) do {} while (0) #endif /* CONFIG_SPARSEMEM */ -#ifdef CONFIG_NODES_SPAN_OTHER_NODES -#define early_pfn_in_nid(pfn, nid) (early_pfn_to_nid(pfn) == (nid)) -#else -#define early_pfn_in_nid(pfn, nid) (1) -#endif - #ifndef early_pfn_valid #define early_pfn_valid(pfn) (1) #endif -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html