From: Arve Hjønnevåg Date: Fri, 13 Dec 2013 22:24:41 +0000 (-0800) Subject: gpu: ion: Remove __GFP_NO_KSWAPD X-Git-Tag: v3.14-rc1~13^2~418 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1584f40ff0b8f2d1b42a4353f3a27b0c1f8545a5;p=platform%2Fkernel%2Flinux-exynos.git gpu: ion: Remove __GFP_NO_KSWAPD It no longer exists. Signed-off-by: Arve Hjønnevåg [jstultz: modified patch to apply to staging directory] Signed-off-by: John Stultz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/android/ion/ion_system_heap.c b/drivers/staging/android/ion/ion_system_heap.c index d4f0a56..344f753 100644 --- a/drivers/staging/android/ion/ion_system_heap.c +++ b/drivers/staging/android/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};