aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorJerome Glisse <jglisse@redhat.com>2010-06-16 10:45:22 +0200
committerDave Airlie <airlied@redhat.com>2010-07-01 11:59:25 +1000
commit7c2a9acf856f150a9fc3efbaa0be44f97c30f6ca (patch)
tree94813a39553bde0b645c988966ee244455c0035b /drivers/gpu
parentdrm/radeon/r100/r200: fix calculation of compressed cube maps (diff)
downloadlinux-dev-7c2a9acf856f150a9fc3efbaa0be44f97c30f6ca.tar.xz
linux-dev-7c2a9acf856f150a9fc3efbaa0be44f97c30f6ca.zip
drm/ttm: non pooled page allocation should have GFP_USER set
Non pooled page allocation should have GFP_USER set so allocation can wait and reclaim page from other process (ie non atomic). Signed-off-by: Jerome Glisse <jglisse@redhat.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/ttm/ttm_page_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index ef910694bd63..2f047577b1e3 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -667,7 +667,7 @@ int ttm_get_pages(struct list_head *pages, int flags,
{
struct ttm_page_pool *pool = ttm_get_pool(flags, cstate);
struct page *p = NULL;
- int gfp_flags = 0;
+ int gfp_flags = GFP_USER;
int r;
/* set zero flag for page allocation if required */