The patch titled have-ia64-use-add_active_range-and-free_area_init_nodes fix has been removed from the -mm tree. Its filename is have-ia64-use-add_active_range-and-free_area_init_nodes-fix.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: mel@xxxxxxxxx (Mel Gorman) On (14/05/06 20:31), Andrew Morton didst pronounce: > Mel Gorman <mel@xxxxxxxxx> wrote: > > > > Size zones and holes in an architecture independent manner for ia64. > > > > This one makes my ia64 die very early in boot. The trace is pretty useless. > > config at http://www.zip.com.au/~akpm/linux/patches/stuff/config-ia64 > > <log snipped> Curses. When I tried to reproduce this, the machine booted with my default config but died before initialising the console with your config. The machine is far away so I can't see the screen or restart the machine remotely so I can only assume it is dying for the same reasons yours did. > Note the misaligned pfns. > > Andy's (misspelled) CONFIG_UNALIGNED_ZONE_BOUNDRIES patch didn't actually > include an update to any Kconfig files. But hacking that in by hand didn't > help. It would not have helped in this case because the zone boundaries would still be in the wrong place for ia64. Below is a patch that aligns the zones on all architectures that use CONFIG_ARCH_POPULATES_NODE_MAP . That is currently i386, x86_64, powerpc, ppc and ia64. It does *not* align pgdat->node_start_pfn but I don't believe that it is necessary. I can't test it on ia64 until I get someone to restart the machine. The patch compiles and is currently boot-testing on a range of other machines. I hope to know within 5-6 hours if everything is ok. Cc: Mel Gorman <mel@xxxxxxxxx> Cc: "Luck, Tony" <tony.luck@xxxxxxxxx> Cc: Andi Kleen <ak@xxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Cc: Anton Blanchard <anton@xxxxxxxxx> Cc: Mike Kravetz <kravetz@xxxxxxxxxx> Cc: Dave Hansen <haveblue@xxxxxxxxxx> Cc: Andy Whitcroft <apw@xxxxxxxxxxxx> Cc: Yasunori Goto <y-goto@xxxxxxxxxxxxxx>, Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> Cc: Jack Steiner <steiner@xxxxxxx> Cc: "Bob Picco" <bob.picco@xxxxxx> Cc: Martin Bligh <mbligh@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/page_alloc.c | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff -puN mm/page_alloc.c~have-ia64-use-add_active_range-and-free_area_init_nodes-fix mm/page_alloc.c --- 25/mm/page_alloc.c~have-ia64-use-add_active_range-and-free_area_init_nodes-fix Mon May 15 14:43:18 2006 +++ 25-akpm/mm/page_alloc.c Mon May 15 14:43:18 2006 @@ -2563,14 +2563,20 @@ void __init free_area_init_nodes(unsigne { unsigned long nid; int zone_index; + unsigned long lowest_pfn = find_min_pfn_with_active_regions(); + + lowest_pfn = zone_boundary_align_pfn(lowest_pfn); + arch_max_dma_pfn = zone_boundary_align_pfn(arch_max_dma_pfn); + arch_max_dma32_pfn = zone_boundary_align_pfn(arch_max_dma32_pfn); + arch_max_low_pfn = zone_boundary_align_pfn(arch_max_low_pfn); + arch_max_high_pfn = zone_boundary_align_pfn(arch_max_high_pfn); /* Record where the zone boundaries are */ memset(arch_zone_lowest_possible_pfn, 0, sizeof(arch_zone_lowest_possible_pfn)); memset(arch_zone_highest_possible_pfn, 0, sizeof(arch_zone_highest_possible_pfn)); - arch_zone_lowest_possible_pfn[ZONE_DMA] = - find_min_pfn_with_active_regions(); + arch_zone_lowest_possible_pfn[ZONE_DMA] = lowest_pfn; arch_zone_highest_possible_pfn[ZONE_DMA] = arch_max_dma_pfn; arch_zone_highest_possible_pfn[ZONE_DMA32] = arch_max_dma32_pfn; arch_zone_highest_possible_pfn[ZONE_NORMAL] = arch_max_low_pfn; _ Patches currently in -mm which might be from mel@xxxxxxxxx are introduce-mechanism-for-registering-active-regions-of-memory.patch have-power-use-add_active_range-and-free_area_init_nodes.patch have-x86-use-add_active_range-and-free_area_init_nodes.patch have-x86_64-use-add_active_range-and-free_area_init_nodes.patch sparsemem-record-nid-during-memory-present.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html