From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail191.messagelabs.com (mail191.messagelabs.com [216.82.242.19]) by kanga.kvack.org (Postfix) with SMTP id 674B66B01D8 for ; Thu, 14 May 2009 11:35:24 -0400 (EDT) Message-ID: <4A0C37D0.60004@redhat.com> Date: Thu, 14 May 2009 11:25:04 -0400 From: Rik van Riel MIME-Version: 1.0 Subject: Re: [PATCH] mmtom: Prevent shrinking of active anon lru list in case of no swap space V3 References: <20090514231555.f52c81eb.minchan.kim@gmail.com> In-Reply-To: <20090514231555.f52c81eb.minchan.kim@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org To: MinChan Kim Cc: Andrew Morton , LKML , linux-mm , KOSAKI Motohiro , Johannes Weiner List-ID: MinChan Kim wrote: > This patch prevents unnecessary deactivation of anon lru pages. > But, it don't prevent aging of anon pages to swap out. > --- a/mm/vmscan.c > +++ b/mm/vmscan.c > @@ -1577,7 +1577,7 @@ static void shrink_zone(int priority, struct zone *zone, > * Even if we did not try to evict anon pages at all, we want to > * rebalance the anon lru active/inactive ratio. > */ > - if (inactive_anon_is_low(zone, sc)) > + if (inactive_anon_is_low(zone, sc) && nr_swap_pages > 0) > shrink_active_list(SWAP_CLUSTER_MAX, zone, sc, priority, 0); > > throttle_vm_writeout(sc->gfp_mask); Acked-by: Rik van Riel -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org