Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 3 Jul 2001 14:20:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 3 Jul 2001 14:20:42 -0400 Received: from humbolt.nl.linux.org ([131.211.28.48]:19219 "EHLO humbolt.nl.linux.org") by vger.kernel.org with ESMTP id ; Tue, 3 Jul 2001 14:20:36 -0400 Content-Type: text/plain; charset=US-ASCII From: Daniel Phillips To: Marco Colombo , Rik van Riel Subject: Re: VM Requirement Document - v0.0 Date: Tue, 3 Jul 2001 20:24:14 +0200 X-Mailer: KMail [version 1.2] Cc: , In-Reply-To: <01070317045806.00338@starship> In-Reply-To: <01070317045806.00338@starship> MIME-Version: 1.0 Message-Id: <01070320241408.00338@starship> Content-Transfer-Encoding: 7BIT Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org An ammendment to my previous post... > I see three page priority levels: > > 0 - accessed-never/aged to zero > 1 - accessed-once/just loaded > 2 - accessed-often > > with these transitions: > > 0 -> 1, if a page is accessed > 1 -> 2, if a page is accessed a second time > 1 -> 0, if a page gets old > 2 -> 0, if a page gets old Better: 1 -> 0, if a page was not referenced before arriving at the old end 1 -> 2, if it was Meaning that multiple accesses to pages on the level 1 list are treated as a single access. In addition, this reflects what we can do practically with the hardware referenced bit. -- Daniel - 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/