aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/drm/drm_memory.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@starflyer.(none)>2005-11-23 22:09:13 +1100
committerDave Airlie <airlied@linux.ie>2005-11-23 22:09:13 +1100
commitc41f47121d8bf44b886ef2039779dab8c1e3a25f (patch)
tree98fa0962eeec797d266b5936122e52d96839c2ec /drivers/char/drm/drm_memory.c
parentI think that if a PCI bus is a root bus, attached to a host bridge not a (diff)
downloadlinux-dev-c41f47121d8bf44b886ef2039779dab8c1e3a25f.tar.xz
linux-dev-c41f47121d8bf44b886ef2039779dab8c1e3a25f.zip
drm: add __GFP_COMP to the drm_alloc_pages
The DRM only uses drm_alloc_pages for non-SG PCI cards using DRM. Signed-off-by: Hugh Dickins <hugh@veritas.com> Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/char/drm/drm_memory.c')
-rw-r--r--drivers/char/drm/drm_memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/drm/drm_memory.c b/drivers/char/drm/drm_memory.c
index 2c74155aa84f..abef2acf99f5 100644
--- a/drivers/char/drm/drm_memory.c
+++ b/drivers/char/drm/drm_memory.c
@@ -95,7 +95,7 @@ unsigned long drm_alloc_pages(int order, int area)
unsigned long addr;
unsigned int sz;
- address = __get_free_pages(GFP_KERNEL, order);
+ address = __get_free_pages(GFP_KERNEL|__GFP_COMP, order);
if (!address)
return 0;