aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/agp/generic.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2010-06-14 21:02:05 -0400
committerDave Airlie <airlied@redhat.com>2010-06-14 21:02:32 -0400
commit1c48bc5f71cd7783e19fb8d9462be53f829be177 (patch)
treee3ed0d8125dd6b30911dd4445fc5b3ff423a26f3 /drivers/char/agp/generic.c
parentda931a931da85218add949266238c54b5fecd37f (diff)
agp: add no warn since we have a fallback to vmalloc paths
also drop the NORETRY we can probably nearly always satisfy order 1 allocs now, and again the vmalloc path is there. Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/char/agp/generic.c')
-rw-r--r--drivers/char/agp/generic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/generic.c b/drivers/char/agp/generic.c
index 4e414417730..d2abf514398 100644
--- a/drivers/char/agp/generic.c
+++ b/drivers/char/agp/generic.c
@@ -99,7 +99,7 @@ void agp_alloc_page_array(size_t size, struct agp_memory *mem)
99 mem->pages = NULL; 99 mem->pages = NULL;
100 100
101 if (size <= 2*PAGE_SIZE) 101 if (size <= 2*PAGE_SIZE)
102 mem->pages = kmalloc(size, GFP_KERNEL | __GFP_NORETRY); 102 mem->pages = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
103 if (mem->pages == NULL) { 103 if (mem->pages == NULL) {
104 mem->pages = vmalloc(size); 104 mem->pages = vmalloc(size);
105 } 105 }