From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Chinner Subject: Re: [PATCH 2/2] mm: vmscan: If kswapd has been running too long, allow it to sleep Date: Thu, 19 May 2011 10:28:55 +1000 Message-ID: <20110519002855.GD32466@dastard> References: <1305558417-24354-1-git-send-email-mgorman@suse.de> <1305558417-24354-3-git-send-email-mgorman@suse.de> <20110516141654.2728f05a.akpm@linux-foundation.org> <1305614225.6008.19.camel@mulgrave.site> <20110517162226.96974d89.akpm@linux-foundation.org> <20110518094718.GP5279@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Andrew Morton , James Bottomley , Colin King , Raghavendra D Prabhu , Jan Kara , Chris Mason , Christoph Lameter , Pekka Enberg , Rik van Riel , Johannes Weiner , Minchan Kim , linux-fsdevel , linux-mm , linux-kernel , linux-ext4 , stable To: Mel Gorman Return-path: Content-Disposition: inline In-Reply-To: <20110518094718.GP5279@suse.de> Sender: linux-ext4-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Wed, May 18, 2011 at 10:47:18AM +0100, Mel Gorman wrote: > As we are aggressively shrinking slab, we can reach the stage where > we scan the requested number of objects and reclaim none of them > potentially setting zone->all_unreclaimable to 1 if a lot of scanning > has also taken place recently without pages being freed. Once this > happens, kswapd isn't even trying to reclaim pages and is instead stuck > in shrink_slab until a page is freed clearing zone->all_unreclaimable > and zone->pages-scanned. Isn't this completely broken then? We can have slabs with lots of objects but none are reclaimable - e.g. dirty inodes are not even on the inode LRU and require IO to get there, so repeatedly scanning the slab trying to free inodes is completely pointless. If the shrinkers are not freeing anything, then it should be backing off and giving thme some time to clean objects is a much more efficient use of CPU time than spinning madly. Indeed, if you back off, you can do another pass over the LRU and see if there are more pages that can be reclaimed, too, so you're not dependent on the shrinkers actually making progress to break the livelock.... Cheers, Dave. -- Dave Chinner david@fromorbit.com