]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: unify gfp masks
authorGlauber Costa <gcosta@redhat.com>
Wed, 9 Apr 2008 16:18:06 +0000 (13:18 -0300)
committerIngo Molnar <mingo@elte.hu>
Sat, 19 Apr 2008 17:19:58 +0000 (19:19 +0200)
Use the same gfp masks for x86_64 and i386.
It involves using HIGHMEM or DMA32 where necessary, for the sake
of code compatibility, (no real effect), and using the NORETRY
mask for i386.

Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/kernel/pci-dma_32.c
arch/x86/kernel/pci-dma_64.c

index 11f100a5f034f180aa43633422f42b799591e36b..5450bd142cb0a568ba0df5e9ff832f834bfb8b9f 100644 (file)
@@ -79,7 +79,7 @@ void *dma_alloc_coherent(struct device *dev, size_t size,
        unsigned long dma_mask = 0;
 
        /* ignore region specifiers */
-       gfp &= ~(__GFP_DMA | __GFP_HIGHMEM);
+       gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
 
        if (dma_alloc_from_coherent_mem(dev, size, dma_handle, &ret))
                return ret;
@@ -91,7 +91,9 @@ void *dma_alloc_coherent(struct device *dev, size_t size,
        if (dma_mask == 0)
                dma_mask = DMA_32BIT_MASK;
 
- again:
+       /* Don't invoke OOM killer */
+       gfp |= __GFP_NORETRY;
+again:
        page = dma_alloc_pages(dev, gfp, order);
        if (page == NULL)
                return NULL;
index 13a31a4a4c17959ccdaee8f75f671690a11f3f0d..b956f5945d67b62e47c54aba646483cbeae37cbb 100644 (file)
@@ -49,6 +49,8 @@ dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle,
        unsigned long dma_mask = 0;
        u64 bus;
 
+       /* ignore region specifiers */
+       gfp &= ~(__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32);
 
        if (dma_alloc_from_coherent_mem(dev, size, dma_handle, &memory))
                return memory;