Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754821Ab0FHJ2e (ORCPT ); Tue, 8 Jun 2010 05:28:34 -0400 Received: from gir.skynet.ie ([193.1.99.77]:37732 "EHLO gir.skynet.ie" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751738Ab0FHJ2d (ORCPT ); Tue, 8 Jun 2010 05:28:33 -0400 Date: Tue, 8 Jun 2010 10:28:14 +0100 From: Mel Gorman To: Christoph Hellwig Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org, Dave Chinner , Chris Mason , Nick Piggin , Rik van Riel Subject: Re: [RFC PATCH 0/6] Do not call ->writepage[s] from direct reclaim and use a_ops->writepages() where possible Message-ID: <20100608092814.GB27717@csn.ul.ie> References: <1275987745-21708-1-git-send-email-mel@csn.ul.ie> <20100608090811.GA5949@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20100608090811.GA5949@infradead.org> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1814 Lines: 41 On Tue, Jun 08, 2010 at 05:08:11AM -0400, Christoph Hellwig wrote: > On Tue, Jun 08, 2010 at 10:02:19AM +0100, Mel Gorman wrote: > > seeky patterns. The second is that direct reclaim calling the filesystem > > splices two potentially deep call paths together and potentially overflows > > the stack on complex storage or filesystems. This series is an early draft > > at tackling both of these problems and is in three stages. > > Btw, one more thing came up when I discussed the issue again with Dave > recently: > > - we also need to care about ->releasepage. At least for XFS it > can end up in the same deep allocator chain as ->writepage because > it does all the extent state conversions, even if it doesn't > start I/O. Dang. > I haven't managed yet to decode the ext4/btrfs codepaths > for ->releasepage yet to figure out how they release a page that > covers a delayed allocated or unwritten range. > If ext4/btrfs are also very deep call-chains and this series is going more or less the right direction, then avoiding calling ->releasepage from direct reclaim is one, somewhat unfortunate, option. The second is to avoid it on a per-filesystem basis for direct reclaim using PF_MEMALLOC to detect reclaimers and PF_KSWAPD to tell the difference between direct reclaimers and kswapd. Either way, these pages could be treated similar to dirty pages on the dirty_pages list. -- Mel Gorman Part-time Phd Student Linux Technology Center University of Limerick IBM Dublin Software Lab -- 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/