pre-2.0.32-2 suggestion

Bill Hawes (whawes@star.net)
Mon, 16 Jun 1997 06:57:49 -0400


Gerard Roudier wrote:
> I've added to your patch some very simple changes that seem to me
> enough to fix 2.0.30 memory problems.

I had an idea that should work well with Gerard's patch for buffer head
allocation. As long as you're distinguishing page IO from other
operations, why not reserve some number (say 50 or 100) buffer heads for
page IO? So if the number of free buffer heads is less than the
reserve, non-page IO requests would have to try to allocate a new one,
but page IO could still use the free heads.

This would be easy to implement, and should improve system stability by
ensuring that paging IO doesn't suffer when memory gets very low.

-Bill