From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Weiner Subject: Re: [PATCH] mm: disallow direct reclaim page writeback Date: Thu, 15 Apr 2010 04:37:04 +0200 Message-ID: <20100415023704.GC20640@cmpxchg.org> References: <20100413202021.GZ13327@think> <20100414014041.GD2493@dastard> <20100414155233.D153.A69D9226@jp.fujitsu.com> <20100414072830.GK2493@dastard> <20100414085132.GJ25756@csn.ul.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Dave Chinner , KOSAKI Motohiro , Chris Mason , linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-fsdevel@vger.kernel.org To: Mel Gorman Return-path: Content-Disposition: inline In-Reply-To: <20100414085132.GJ25756@csn.ul.ie> Sender: owner-linux-mm@kvack.org List-Id: linux-fsdevel.vger.kernel.org On Wed, Apr 14, 2010 at 09:51:33AM +0100, Mel Gorman wrote: > They will need to be tackled in turn then but obviously there should be > a focus on the common paths. The reclaim paths do seem particularly > heavy and it's down to a lot of temporary variables. I might not get the > time today but what I'm going to try do some time this week is > > o Look at what temporary variables are copies of other pieces of information > o See what variables live for the duration of reclaim but are not needed > for all of it (i.e. uninline parts of it so variables do not persist) > o See if it's possible to dynamically allocate scan_control > > The last one is the trickiest. Basically, the idea would be to move as much > into scan_control as possible. Then, instead of allocating it on the stack, > allocate a fixed number of them at boot-time (NR_CPU probably) protected by > a semaphore. Limit the number of direct reclaimers that can be active at a > time to the number of scan_control variables. kswapd could still allocate > its on the stack or with kmalloc. > > If it works out, it would have two main benefits. Limits the number of > processes in direct reclaim - if there is NR_CPU-worth of proceses in direct > reclaim, there is too much going on. It would also shrink the stack usage > particularly if some of the stack variables are moved into scan_control. > > Maybe someone will beat me to looking at the feasibility of this. I already have some patches to remove trivial parts of struct scan_control, namely may_unmap, may_swap, all_unreclaimable and isolate_pages. The rest needs a deeper look. A rather big offender in there is the combination of shrink_active_list (360 bytes here) and shrink_page_list (200 bytes). I am currently looking at breaking out all the accounting stuff from shrink_active_list into a separate leaf function so that the stack footprint does not add up. Your idea of per-cpu allocated scan controls reminds me of an idea I have had for some time now: moving reclaim into its own threads (per cpu?). Not only would it separate the allocator's stack from the writeback stack, we could also get rid of that too_many_isolated() workaround and coordinate reclaim work better to prevent overreclaim. But that is not a quick fix either... -- 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-mm.org/ . Don't email: email@kvack.org