The patch titled dma: make dma pool to use kmalloc_node has been removed from the -mm tree. Its filename was dma-make-dma-pool-to-use-kmalloc_node.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 file 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 origin.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 - 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