[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 7-4 VM killing (A solution)
Linus Torvalds wrote:
>
> On Thu, 4 May 2000, Rajagopal Ananthanarayanan wrote:
> >
> > Ok, I may have a solution after having asked, mostly to myself,
> > why doesn't shrink_mmap() find pages to free?
> >
> > The answer apparenlty is because in 7-4 shrink_mmap(),
> > unreferenced pages get filed as "young" if the zone has
> > enough pages in it (free_pages > pages_high).
>
> Good catch.
>
> That's obviously a bug, and your fix looks like the obvious fix. Thanks,
Rik still had some reservations although he hasn't
sent a response to my rebuttal, yet. We'll see see.
On another note, noticed your change to shrink_mmap in 7-5:
-------
- count = nr_lru_pages >> priority;
+ count = (nr_lru_pages << 1) >> priority;
-------
Is this to defeat aging? If so, I think its overly cautious:
if all an iteration of shrink_mmap did was to flip the referenced bit,
then that iteration shouldn't be included in count (and in the
current code it isn't). So why double the effort?
--
--------------------------------------------------------------------------
Rajagopal Ananthanarayanan ("ananth")
Member Technical Staff, SGI.
--------------------------------------------------------------------------
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux.eu.org/Linux-MM/