aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArve Hjønnevåg <arve@android.com>2012-11-26 17:20:21 -0800
committerArve Hjønnevåg <arve@android.com>2013-04-29 14:52:27 -0700
commitd8611a66e053b137d8487616b4501020da88662a (patch)
treea945a9784cc7864923460566fdd4f25515fb8091
parentf01c5c29a49ae3aab209cc745cb5f4f9eef85e65 (diff)
gpu: ion: Remove __GFP_NO_KSWAPD
It no longer exists. Signed-off-by: Arve Hjønnevåg <arve@android.com>
-rw-r--r--drivers/gpu/ion/ion_system_heap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/ion/ion_system_heap.c b/drivers/gpu/ion/ion_system_heap.c
index ea2aee79809..493c9e530b5 100644
--- a/drivers/gpu/ion/ion_system_heap.c
+++ b/drivers/gpu/ion/ion_system_heap.c
@@ -27,8 +27,8 @@
#include "ion_priv.h"
static unsigned int high_order_gfp_flags = (GFP_HIGHUSER | __GFP_ZERO |
- __GFP_NOWARN | __GFP_NORETRY |
- __GFP_NO_KSWAPD) & ~__GFP_WAIT;
+ __GFP_NOWARN | __GFP_NORETRY) &
+ ~__GFP_WAIT;
static unsigned int low_order_gfp_flags = (GFP_HIGHUSER | __GFP_ZERO |
__GFP_NOWARN);
static const unsigned int orders[] = {8, 4, 0};