The patch titled Subject: pci: mm: add pci_pool_zalloc() call has been added to the -mm tree. Its filename is pci-mm-add-pci_pool_zalloc-call.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/pci-mm-add-pci_pool_zalloc-call.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/pci-mm-add-pci_pool_zalloc-call.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: "Sean O. Stalley" <sean.stalley@xxxxxxxxx> Subject: pci: mm: add pci_pool_zalloc() call Add a wrapper function for pci_pool_alloc() to get zeroed memory. Signed-off-by: Sean O. Stalley <sean.stalley@xxxxxxxxx> Cc: Vinod Koul <vinod.koul@xxxxxxxxx> Cc: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> Cc: Gilles Muller <Gilles.Muller@xxxxxxx> Cc: Nicolas Palix <nicolas.palix@xxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Cc: Sebastian Andrzej Siewior <bigeasy@xxxxxxxxxxxxx> Cc: Jonathan Corbet <corbet@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/pci.h | 2 ++ 1 file changed, 2 insertions(+) diff -puN include/linux/pci.h~pci-mm-add-pci_pool_zalloc-call include/linux/pci.h --- a/include/linux/pci.h~pci-mm-add-pci_pool_zalloc-call +++ a/include/linux/pci.h @@ -1195,6 +1195,8 @@ int pci_set_vga_state(struct pci_dev *pd dma_pool_create(name, &pdev->dev, size, align, allocation) #define pci_pool_destroy(pool) dma_pool_destroy(pool) #define pci_pool_alloc(pool, flags, handle) dma_pool_alloc(pool, flags, handle) +#define pci_pool_zalloc(pool, flags, handle) \ + dma_pool_zalloc(pool, flags, handle) #define pci_pool_free(pool, vaddr, addr) dma_pool_free(pool, vaddr, addr) struct msix_entry { _ Patches currently in -mm which might be from sean.stalley@xxxxxxxxx are mm-add-support-for-__gfp_zero-flag-to-dma_pool_alloc.patch mm-add-dma_pool_zalloc-call-to-dma-api.patch pci-mm-add-pci_pool_zalloc-call.patch coccinelle-mm-scripts-coccinelle-api-alloc-pool_zalloc-simplecocci.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