]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/x86/kernel/amd_iommu.c
AMD IOMMU: avoid unnecessary low zone allocation in alloc_coherent
[linux-2.6-omap-h63xx.git] / arch / x86 / kernel / amd_iommu.c
index a34d8e915e3add50442eae3b5244afef64e9519d..e4866660463ec3fd475cd2cf39720210d54877b9 100644 (file)
@@ -1173,6 +1173,9 @@ static void *alloc_coherent(struct device *dev, size_t size,
        if (!check_device(dev))
                return NULL;
 
+       if (!get_device_resources(dev, &iommu, &domain, &devid))
+               flag &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
+
        virt_addr = (void *)__get_free_pages(flag, get_order(size));
        if (!virt_addr)
                return 0;
@@ -1180,8 +1183,6 @@ static void *alloc_coherent(struct device *dev, size_t size,
        memset(virt_addr, 0, size);
        paddr = virt_to_phys(virt_addr);
 
-       get_device_resources(dev, &iommu, &domain, &devid);
-
        if (!iommu || !domain) {
                *dma_addr = (dma_addr_t)paddr;
                return virt_addr;