The patch titled dma: make dma pool to use kmalloc_node has been added to the -mm tree. Its filename is dma-make-dma-pool-to-use-kmalloc_node.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: dma: make dma pool to use kmalloc_node From: Yinghai Lu <Yinghai.Lu@xxxxxxx> Using dev_to_node(&dev->dev) to get node, and kmalloc_node to dma buffer on corresponding node dma pool Signed-off-by: Yinghai Lu <yinghai.lu@xxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Cc: Christoph Lameter <clameter@xxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/dmapool.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/base/dmapool.c~dma-make-dma-pool-to-use-kmalloc_node drivers/base/dmapool.c --- a/drivers/base/dmapool.c~dma-make-dma-pool-to-use-kmalloc_node +++ a/drivers/base/dmapool.c @@ -127,7 +127,7 @@ dma_pool_create (const char *name, struc } else if (allocation < size) return NULL; - if (!(retval = kmalloc (sizeof *retval, GFP_KERNEL))) + if (!(retval = kmalloc_node (sizeof *retval, GFP_KERNEL, dev_to_node(dev)))) return retval; strlcpy (retval->name, name, sizeof retval->name); _ Patches currently in -mm which might be from Yinghai.Lu@xxxxxxx are serial-assert-dtr-for-serial-console-devices.patch usb-make-the-usb_device-numa_node-to-get-assigned-from.patch x86-64-disable-the-gart-in-shutdown.patch x86_84-move-iommu-declaration-from-proto-to-iommuh.patch x86_64-change-_map_single-to-static-in-pci_gartc-etc.patch x86_64-geode-hw-random-number-generator-depend-on-x86_3.patch x86_64-get-mp_bus_to_node-as-early.patch console-more-buf-for-index-parsing.patch console-console-handover-to-preferred-console.patch serial-convert-early_uart-to-earlycon-for-8250.patch serial-convert-early_uart-to-earlycon-for-8250-fix.patch serial-convert-early_uart-to-earlycon-for-8250-ia64-fix.patch serial-convert-early_uart-to-earlycon-for-8250-fix-3-alias.patch dma-make-dma-pool-to-use-kmalloc_node.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