Commit 5fa78ca7 authored by Glauber Costa's avatar Glauber Costa Committed by Ingo Molnar

x86: retry allocation if failed

This patch puts in the code to retry allocation in case it fails. By its
own, it does not make much sense but making the code look like x86_64.
But later patches in this series will make we try to allocate from
zones other than DMA first, which will possibly fail.
Signed-off-by: default avatarGlauber Costa <gcosta@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 8779f2fc
...@@ -76,6 +76,8 @@ void *dma_alloc_coherent(struct device *dev, size_t size, ...@@ -76,6 +76,8 @@ void *dma_alloc_coherent(struct device *dev, size_t size,
struct page *page; struct page *page;
dma_addr_t bus; dma_addr_t bus;
int order = get_order(size); int order = get_order(size);
unsigned long dma_mask = 0;
/* ignore region specifiers */ /* ignore region specifiers */
gfp &= ~(__GFP_DMA | __GFP_HIGHMEM); gfp &= ~(__GFP_DMA | __GFP_HIGHMEM);
...@@ -85,15 +87,37 @@ void *dma_alloc_coherent(struct device *dev, size_t size, ...@@ -85,15 +87,37 @@ void *dma_alloc_coherent(struct device *dev, size_t size,
if (!dev) if (!dev)
dev = &fallback_dev; dev = &fallback_dev;
dma_mask = dev->coherent_dma_mask;
if (dma_mask == 0)
dma_mask = DMA_32BIT_MASK;
again:
page = dma_alloc_pages(dev, gfp, order); page = dma_alloc_pages(dev, gfp, order);
if (page == NULL) if (page == NULL)
return NULL; return NULL;
ret = page_address(page); {
bus = page_to_phys(page); int high, mmu;
bus = page_to_phys(page);
memset(ret, 0, size); ret = page_address(page);
*dma_handle = bus; high = (bus + size) >= dma_mask;
mmu = high;
if (force_iommu && !(gfp & GFP_DMA))
mmu = 1;
else if (high) {
free_pages((unsigned long)ret,
get_order(size));
/* Don't use the 16MB ZONE_DMA unless absolutely
needed. It's better to use remapping first. */
if (dma_mask < DMA_32BIT_MASK && !(gfp & GFP_DMA)) {
gfp = (gfp & ~GFP_DMA32) | GFP_DMA;
goto again;
}
}
memset(ret, 0, size);
*dma_handle = bus;
}
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment