From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764046AbZDAQFk (ORCPT ); Wed, 1 Apr 2009 12:05:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760392AbZDAQF3 (ORCPT ); Wed, 1 Apr 2009 12:05:29 -0400 Received: from cmpxchg.org ([85.214.51.133]:50523 "EHLO cmpxchg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755640AbZDAQF2 (ORCPT ); Wed, 1 Apr 2009 12:05:28 -0400 Date: Wed, 1 Apr 2009 18:03:42 +0200 From: Johannes Weiner To: KOSAKI Motohiro Cc: KAMEZAWA Hiroyuki , Minchan Kim , Daisuke Nishimura , linux-kernel@vger.kernel.org, linux-mm@kvack.org, Andrew Morton , "Rafael J. Wysocki" , Rik van Riel , Balbir Singh Subject: Re: [PATCH] vmscan: memcg needs may_swap (Re: [patch] vmscan: rename sc.may_swap to may_unmap) Message-ID: <20090401160342.GA1930@cmpxchg.org> References: <20090401180445.80b11d90.kamezawa.hiroyu@jp.fujitsu.com> <20090401094955.GA1656@cmpxchg.org> <20090401185418.B204.A69D9226@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090401185418.B204.A69D9226@jp.fujitsu.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 01, 2009 at 06:55:45PM +0900, KOSAKI Motohiro wrote: > > > > How about making may_swap mean the following: > > > > > > > > @@ -642,6 +639,8 @@ static unsigned long shrink_page_list(st > > > > * Try to allocate it some swap space here. > > > > */ > > > > if (PageAnon(page) && !PageSwapCache(page)) { > > > > + if (!sc->map_swap) > > > > + goto keep_locked; > > > > if (!(sc->gfp_mask & __GFP_IO)) > > > > goto keep_locked; > > > > if (!add_to_swap(page)) > > > > > > > > try_to_free_pages() always sets it. > > > > > > > What is the advantage than _not_ scanning ANON LRU at all ? > > > > I thought we could collect anon pages that don't need swap io. > > Yes. but Is this important? > if memcg reclaim don't collect sleal swapcache, other global reclaim can. > > Am I missing any viewpoint? Nothing I am aware of, it should work as you suggest. I just wasn't sure about the memory controller.