The patch titled git-powerpc fix has been added to the -mm tree. Its filename is git-powerpc-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: git-powerpc fix From: Paul Mackerras <paulus@xxxxxxxxx> He got the order of the arguments to alloc_pages_node wrong. Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/powerpc/kernel/iommu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/powerpc/kernel/iommu.c~git-powerpc-fix arch/powerpc/kernel/iommu.c --- devel/arch/powerpc/kernel/iommu.c~git-powerpc-fix 2006-06-10 01:20:09.000000000 -0700 +++ devel-akpm/arch/powerpc/kernel/iommu.c 2006-06-10 01:20:09.000000000 -0700 @@ -561,7 +561,7 @@ void *iommu_alloc_coherent(struct iommu_ return NULL; /* Alloc enough pages (and possibly more) */ - page = alloc_pages_node(flag, order, node); + page = alloc_pages_node(node, flag, order); if (!page) return NULL; ret = page_address(page); _ Patches currently in -mm which might be from paulus@xxxxxxxxx are macintosh-mangle-caps-lock-events-on-adb-keyboards.patch ppp_async-hang-fix.patch git-powerpc.patch git-powerpc-fix.patch work-around-ppc64-bootup-bug-by-making-mutex-debugging-save-restore-irqs.patch add-poisonh-and-patch-primary-users.patch x86-powerpc-make-hardirq_ctx-and-softirq_ctx-__read_mostly.patch define-__raw_get_cpu_var-and-use-it.patch apple-motion-sensor-driver.patch fix-broken-dubious-driver-suspend-methods.patch drivers-use-list_move.patch lock-validator-add-per_cpu_offset-fix.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