Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758121AbYGPOuk (ORCPT ); Wed, 16 Jul 2008 10:50:40 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752686AbYGPOuc (ORCPT ); Wed, 16 Jul 2008 10:50:32 -0400 Received: from mx1.redhat.com ([66.187.233.31]:42152 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753778AbYGPOub (ORCPT ); Wed, 16 Jul 2008 10:50:31 -0400 Date: Wed, 16 Jul 2008 10:50:25 -0400 From: Rik van Riel To: Peter Zijlstra Cc: Eric Rannaud , linux-kernel@vger.kernel.org, linux-mm Subject: Re: madvise(2) MADV_SEQUENTIAL behavior Message-ID: <20080716105025.2daf5db2@cuia.bos.redhat.com> In-Reply-To: <1216210495.5232.47.camel@twins> References: <1216163022.3443.156.camel@zenigma> <1216210495.5232.47.camel@twins> Organization: Red Hat, Inc X-Mailer: Claws Mail 3.4.0 (GTK+ 2.12.10; i386-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1603 Lines: 43 On Wed, 16 Jul 2008 14:14:55 +0200 Peter Zijlstra wrote: > On Tue, 2008-07-15 at 23:03 +0000, Eric Rannaud wrote: > > mm/madvise.c and madvise(2) say: > > > > * MADV_SEQUENTIAL - pages in the given range will probably be accessed > > * once, so they can be aggressively read ahead, and > > * can be freed soon after they are accessed. > > > > > > But as the sample program at the end of this post shows, and as I > > understand the code in mm/filemap.c, MADV_SEQUENTIAL will only increase > > the amount of read ahead for the specified page range, but will not > > influence the rate at which the pages just read will be freed from > > memory. > > Correct, various attempts have been made to actually implement this, but > non made it through. > > My last attempt was: > http://lkml.org/lkml/2007/7/21/219 > > Rik recently tried something else based on his split-lru series: > http://lkml.org/lkml/2008/7/15/465 M patch is not going to help with mmap, though. I believe that for mmap MADV_SEQUENTIAL, we will have to do an unmap-behind from the fault path. Not every time, but maybe once per megabyte, unmapping the megabyte behind us. That way the normal page cache policies (use once, etc) can take care of page eviction, which should help if the file is also in use by another process. -- All Rights Reversed -- 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/