[resend] small patch for 2.4.9 VM

From: Marc Heckmann (heckmann@hbesoftware.com)
Date: Tue Aug 28 2001 - 17:45:48 EST


Hi,

just resending this now that linus is back.

calling swap_out() on every kswapd wakeup seems wrong to me.... I've seen swap grow
while there was no vm pressure at all... Please correct me if I'm wrong. Anyway the
patch below is quick fix. maybe not the nicest though.

as for the horrible OOM (or near OOM) performance, I tried putting kswapd to sleep
if we have enough free pages but still an inactive shortage as I mentioned in my
previous mail. no change. but then again do_try_free_pages has changed quite a bit
since 2.4.9-pre3.


attached mail follows:



[not on list, please CC me]

Hi,

I've been tracking the vm changes in the 2.4.9-pre series. I was seeing
really good improvements with 2.4.9-pre3 but then in pre4 it went to shit
on my box (192mb, 200mb swap). The page cache was huge at all times and
went pretty deep into swap on light loads. staring at the diff between
pre3 and pre4, I noticed that background page aging in kswapd has changed
[see do_try_free_pages], instead of just doing refill_inactive_scan(), it
now does swap_out() first, then refill_inactive. Somehow, this seems to
prevent proper page aging or something [please correct me if i'm wrong,
haven't had the time to stare at swap_out() yet]. Anyway the short patch
below, makes it behave like pre3 which is quite good for me. This might
also be the cause of other peoples mm problems with 2.4.9 final.

also, pre3 behaved _very_ good during OOM situations but then after pre4
it degraded to something similar to 2.4.8. The pre4 changes causes
do_try_free_pages to be constantly called by kswapd until _both_ the the
inactive_shortage and the free_shortage are gone. kswapd used to sleep for
a second if at least one of them wasn't short on pages. using some
printk's to debug, I noticed that there are enough free pages, but the
inactive target is _never_ reached so kswapd just goes nuts. This is also
why we don't go into OOM since the oom test only tests free pages and
cache. I think Rik might have commented on this already in another thread.
When I have time, I'll try putting kswapd to sleep for a second if we have
enough free pages, but not enough inactive ones.

I noticed that a lot of comments in the VM are now bogus with 2.4.9. I
really think that the changes between pre3 and pre4 could have been better
commented. I'm sure the changes have a reason to be there, but having
justification for them would really help to debug the thing.

 -marc

--- linux/mm/vmscan.c.orig.249 Thu Aug 16 23:55:50 2001
+++ linux/mm/vmscan.c Thu Aug 23 12:35:32 2001
@@ -818,9 +818,11 @@
 #define GENERAL_SHORTAGE 4
 static int do_try_to_free_pages(unsigned int gfp_mask, int user)
 {
- /* Always walk at least the active queue when called */
- int shortage = INACTIVE_SHORTAGE;
+ int shortage = 0;
         int maxtry;
+
+ /* Always walk at least the active queue when called */
+ refill_inactive_scan(DEF_PRIORITY);
 
         maxtry = 1 << DEF_PRIORITY;
         do {

-
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/



This archive was generated by hypermail 2b29 : Fri Aug 31 2001 - 21:00:31 EST