aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ttm
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2009-07-29 02:56:52 -0400
committerDave Airlie <airlied@redhat.com>2009-07-29 02:56:52 -0400
commitb42db2b12df7b4f7b2ace581a7726cb5bcb2d658 (patch)
treee5df5aed1a2dc88e6b1eb659eea881706ad00239 /drivers/gpu/drm/ttm
parentea3c13bd8c2ed1d3670bd72e60f562a427355fdf (diff)
drm/ttm: fix highuser vs dma32 confusion.
DMA32 and highmem are sort of exclusive. Noticed by AndrewR on #radeon. Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/ttm')
-rw-r--r--drivers/gpu/drm/ttm/ttm_tt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
index 9b2248a80cf..b8b6c4a5f98 100644
--- a/drivers/gpu/drm/ttm/ttm_tt.c
+++ b/drivers/gpu/drm/ttm/ttm_tt.c
@@ -137,13 +137,15 @@ static void ttm_tt_free_page_directory(struct ttm_tt *ttm)
137 137
138static struct page *ttm_tt_alloc_page(unsigned page_flags) 138static struct page *ttm_tt_alloc_page(unsigned page_flags)
139{ 139{
140 gfp_t gfp_flags = GFP_HIGHUSER; 140 gfp_t gfp_flags = GFP_USER;
141 141
142 if (page_flags & TTM_PAGE_FLAG_ZERO_ALLOC) 142 if (page_flags & TTM_PAGE_FLAG_ZERO_ALLOC)
143 gfp_flags |= __GFP_ZERO; 143 gfp_flags |= __GFP_ZERO;
144 144
145 if (page_flags & TTM_PAGE_FLAG_DMA32) 145 if (page_flags & TTM_PAGE_FLAG_DMA32)
146 gfp_flags |= __GFP_DMA32; 146 gfp_flags |= __GFP_DMA32;
147 else
148 gfp_flags |= __GFP_HIGHMEM;
147 149
148 return alloc_page(gfp_flags); 150 return alloc_page(gfp_flags);
149} 151}