Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932876AbXAYLzw (ORCPT ); Thu, 25 Jan 2007 06:55:52 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932879AbXAYLzw (ORCPT ); Thu, 25 Jan 2007 06:55:52 -0500 Received: from [212.12.190.202] ([212.12.190.202]:32956 "EHLO raad.intranet" rhost-flags-FAIL-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S932876AbXAYLzv (ORCPT ); Thu, 25 Jan 2007 06:55:51 -0500 From: Al Boldi To: Peter Zijlstra Subject: Re: [RFC] Limit the size of the pagecache Date: Thu, 25 Jan 2007 14:57:32 +0300 User-Agent: KMail/1.5 Cc: linux-kernel@vger.kernel.org, Vaidyanathan Srinivasan References: <200701250942.47321.a1426z@gawab.com> <45B86930.2090709@linux.vnet.ibm.com> <1169720945.6189.52.camel@twins> In-Reply-To: <1169720945.6189.52.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1256" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200701251457.32999.a1426z@gawab.com> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2401 Lines: 66 Peter Zijlstra wrote: > > Apart from kswapd, limiting pagecache helps performance of > > applications by not eating away their ANON pages or other parts of its > > resident data set. When there is enough free memory, then there is no > > performance issue. However memory is always utilized to the max. > > Hence every pagecache page that is allocated should come from some > > application's RSS, or from cold pagecache page. If that page was > > stolen from some application, then that application pays the price for > > swapping or reading the page back to memory. This scenario is what we > > want to avoid. All that we are trying to achieve is that pagecache > > eats a (unmapped) pagecache page and not steal memory from other > > important application's resident set. > > > > Certainly this should be a configurable option and kernel's behavior > > should not be changed in general. > > Ah, this would be a clear case of the page reclaim selecting the wrong > working set. Yes. > It is perfectly fine for a page cache page to evict a app page (be it > anon or not) if that page cache page is used more frequently than the > app page in question. It seems, that there is currently a clear preference for pagecache-page over app-page. Some form of prio-selection could probably aid the situation. > Trouble seems to be that the current algorithm gets it quite wrong at > times. It breaks down when memory gets tight. You can actually hear it thrashing the disk, although it's not supposed to thrash, even with swapoff. > Also stating that free memory somehow is good for you is weird, free > memory is a loss, you under utilise your machine. Keeping clean > pagecache pages in there that are likely to be referenced again is a > clear win; it saves the tediously slow load from disk. That's the theory. > So you're now proposing to limit the page cache As a workaround. > where as its clear that > the better solution would be to tune replacement policy Yes. Hopefully successfully. > (and or provide > hints to said mechanism using madvise/fadvise) Not feasible; source is sometimes not immediately available. Thanks! -- Al - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/