From: Christoph Lameter Date: Fri, 24 Mar 2006 11:15:59 +0000 (-0800) Subject: [PATCH] cpusets: only wakeup kswapd for zones in the current cpuset X-Git-Tag: v2.6.17-rc1~931 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b1303fcf23678ee1785841fb0c770a35cd0833c;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git [PATCH] cpusets: only wakeup kswapd for zones in the current cpuset If we get under some memory pressure in a cpuset (we only scan zones that are in the cpuset for memory) then kswapd is woken up for all zones. This patch only wakes up kswapd in zones that are part of the current cpuset. Signed-off-by: Christoph Lameter Acked-by: Paul Jackson Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/page_alloc.c b/mm/page_alloc.c index b7f14a4..a5c3f8b 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -943,7 +943,8 @@ restart: goto got_pg; do { - wakeup_kswapd(*z, order); + if (cpuset_zone_allowed(*z, gfp_mask)) + wakeup_kswapd(*z, order); } while (*(++z)); /*