Subject: Re: tuning for small memory machines
To: matthew green <mrg@eterna.com.au>
From: Chuck Silvers <chuq@chuq.com>
List: tech-kern
Date: 12/02/2002 22:26:41
hi,

On Tue, Dec 03, 2002 at 10:53:45AM +1100, matthew green wrote:
> the "min" values stop pageout from happening, but if there is free
> ram available any type of ram can use it up to it's "max", i believe.

a page will not be reclaimed if the system is already at or below
the "min" threshold for that type of data.

a page will not be reclaimed if the system is already at or over
the "max" threshold for a different type of data.


the effect is that usage for a given type of data can exceed its max
as long as there is insufficient demand for other types of data.
but if demand for other types of data increases, pages of types
over their max will be reclaimed in preference to pages of types
not over their max.  if usage for all types is between their mins
and maxes then all pageable pages are eligible for reuse.

-Chuck