lkml.org 
[lkml]   [2000]   [Jan]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] kswapd less agressive
Hi Alan, Andrea,

a few people (hi Andrea :)) have commented that kswapd
is somewhat too agressive in 2.2.15pre4. This patch
should fix that (but don't integrate it yet, I have not
tested it yet).

Basically kswapd used to agressively free pages until
it had reached freepages.high. Now kswapd will only
free pages agressively up to freepages.low, above that
it will pause if it finds it's ->need_resched set.
(which should bring us back to freeing in the background)

Everyone interested: please test 2.2.15pre4 with and
without this test and tell us your results, thank you.

regards,

Rik
--
The Internet is not a network of computers. It is a network
of people. That is its real strength.


--- vmscan.c.combo Sun Jan 23 01:06:50 2000
+++ vmscan.c Sun Jan 23 01:06:01 2000
@@ -498,6 +498,8 @@
if (!do_try_to_free_pages(GFP_KSWAPD))
break;
if (tsk->need_resched)
+ if (nr_free_pages > freepages.low)
+ break;
schedule();
}
run_task_queue(&tq_disk);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:56    [W:0.039 / U:0.564 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site