The patch titled m68k: use proper defines for zone initialization has been added to the -mm tree. Its filename is m68k-use-proper-defines-for-zone-initialization.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: m68k: use proper defines for zone initialization From: Roman Zippel <zippel@xxxxxxxxxxxxxx> MAX_NR_ZONES changed, so use correct defines now. Signed-off-by: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/m68k/mm/motorola.c | 12 ++++++------ arch/m68k/mm/sun3mmu.c | 5 ++--- 2 files changed, 8 insertions(+), 9 deletions(-) diff -puN arch/m68k/mm/motorola.c~m68k-use-proper-defines-for-zone-initialization arch/m68k/mm/motorola.c --- devel/arch/m68k/mm/motorola.c~m68k-use-proper-defines-for-zone-initialization 2006-05-24 18:32:36.000000000 -0700 +++ devel-akpm/arch/m68k/mm/motorola.c 2006-05-24 18:32:36.000000000 -0700 @@ -203,7 +203,7 @@ void __init paging_init(void) { int chunk; unsigned long mem_avail = 0; - unsigned long zones_size[3] = { 0, }; + unsigned long zones_size[MAX_NR_ZONES] = { 0, }; #ifdef DEBUG { @@ -257,12 +257,12 @@ void __init paging_init(void) #ifdef DEBUG printk ("before free_area_init\n"); #endif - zones_size[0] = (mach_max_dma_address < (unsigned long)high_memory ? - (mach_max_dma_address+1) : (unsigned long)high_memory); - zones_size[1] = (unsigned long)high_memory - zones_size[0]; + zones_size[ZONE_DMA] = (mach_max_dma_address < (unsigned long)high_memory ? + (mach_max_dma_address+1) : (unsigned long)high_memory); + zones_size[ZONE_NORMAL] = (unsigned long)high_memory - zones_size[0]; - zones_size[0] = (zones_size[0] - PAGE_OFFSET) >> PAGE_SHIFT; - zones_size[1] >>= PAGE_SHIFT; + zones_size[ZONE_DMA] = (zones_size[ZONE_DMA] - PAGE_OFFSET) >> PAGE_SHIFT; + zones_size[ZONE_NORMAL] >>= PAGE_SHIFT; free_area_init(zones_size); } diff -puN arch/m68k/mm/sun3mmu.c~m68k-use-proper-defines-for-zone-initialization arch/m68k/mm/sun3mmu.c --- devel/arch/m68k/mm/sun3mmu.c~m68k-use-proper-defines-for-zone-initialization 2006-05-24 18:32:36.000000000 -0700 +++ devel-akpm/arch/m68k/mm/sun3mmu.c 2006-05-24 18:32:36.000000000 -0700 @@ -46,7 +46,7 @@ void __init paging_init(void) unsigned long address; unsigned long next_pgtable; unsigned long bootmem_end; - unsigned long zones_size[3] = {0, 0, 0}; + unsigned long zones_size[MAX_NR_ZONES] = { 0, }; unsigned long size; @@ -92,8 +92,7 @@ void __init paging_init(void) current->mm = NULL; /* memory sizing is a hack stolen from motorola.c.. hope it works for us */ - zones_size[0] = ((unsigned long)high_memory - PAGE_OFFSET) >> PAGE_SHIFT; - zones_size[1] = 0; + zones_size[ZONE_DMA] = ((unsigned long)high_memory - PAGE_OFFSET) >> PAGE_SHIFT; free_area_init(zones_size); _ Patches currently in -mm which might be from zippel@xxxxxxxxxxxxxx are kconfig-improve-config-load-save-output.patch kconfig-fix-config-dependencies.patch kconfig-remove-symbol_yesmodno.patch kconfig-allow-multiple-default-values-per-symbol.patch kconfig-allow-loading-multiple-configurations.patch kconfig-integrate-split-config-into-silentoldconfig.patch kconfig-move-kernelrelease.patch kconfig-add-symbol-option-config-syntax.patch kconfig-add-defconfig_list-module-option.patch kconfig-add-search-option-for-xconfig.patch kconfig-finer-customization-via-popup-menus.patch kconfig-create-links-in-info-window.patch kconfig-jump-to-linked-menu-prompt.patch kconfig-warn-about-leading-whitespace-for-menu-prompts.patch kconfig-remove-leading-whitespace-in-menu-prompts.patch config-exit-if-no-beginning-filename.patch make-kernelrelease-speedup.patch kconfig-kconfig_overwriteconfig.patch m68k-completely-initialize-hw_regs_t-in-ide_setup_ports.patch m68k-atyfb_base-compile-fix-for-config_pci=n.patch m68k-cleanup-unistdh.patch m68k-remove-some-unused-definitions-in-zorroh.patch m68k-use-c99-initializer.patch m68k-print-correct-stack-trace.patch m68k-restore-amikbd-compatibility-with-24.patch m68k-extra-delay.patch m68k-use-proper-defines-for-zone-initialization.patch m68k-adjust-to-changed-hardirq_mask.patch m68k-m68k-mac-via2-fixes-and-cleanups.patch fix-incorrect-sa_onstack-behaviour-for-64-bit-processes.patch adjust-handle_irr_event-return-type.patch fix-kbuild-dependencies-for-synclink-drivers.patch time-use-clocksource-abstraction-for-ntp-adjustments-optimize-out-some-mults-since-gcc-cant-avoid-them.patch time-rename-clocksource-functions.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