From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail172.messagelabs.com (mail172.messagelabs.com [216.82.254.3]) by kanga.kvack.org (Postfix) with ESMTP id C43C16B004D for ; Tue, 1 Sep 2009 06:03:55 -0400 (EDT) Date: Tue, 1 Sep 2009 11:03:56 +0100 From: Mel Gorman Subject: Re: page allocator regression on nommu Message-ID: <20090901100356.GA27393@csn.ul.ie> References: <20090831074842.GA28091@linux-sh.org> <20090831103056.GA29627@csn.ul.ie> <20090831104315.GB30264@linux-sh.org> <20090831105952.GC29627@csn.ul.ie> <20090901004627.GA531@linux-sh.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20090901004627.GA531@linux-sh.org> Sender: owner-linux-mm@kvack.org To: Paul Mundt , Christoph Lameter , KOSAKI Motohiro , Pekka Enberg , Peter Zijlstra , Nick Piggin , Dave Hansen , Lee Schermerhorn , Andrew Morton , Linus Torvalds , David Howells , linux-mm@kvack.org, linux-kernel@vger.kernel.org List-ID: On Tue, Sep 01, 2009 at 09:46:27AM +0900, Paul Mundt wrote: > > What is the output of the following debug patch? > > > > ... > Inode-cache hash table entries: 1024 (order: 0, 4096 bytes) > ------------[ cut here ]------------ > Badness at mm/page_alloc.c:1046 > Ok, it looks like ownership was not being taken properly and the first patch was incomplete. Please try ==== diff --git a/mm/page_alloc.c b/mm/page_alloc.c index d052abb..5596880 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -817,13 +815,15 @@ __rmqueue_fallback(struct zone *zone, int order, int start_migratetype) * agressive about taking ownership of free pages */ if (unlikely(current_order >= (pageblock_order >> 1)) || - start_migratetype == MIGRATE_RECLAIMABLE) { + start_migratetype == MIGRATE_RECLAIMABLE || + page_group_by_mobility_disabled) { unsigned long pages; pages = move_freepages_block(zone, page, start_migratetype); /* Claim the whole block if over half of it is free */ - if (pages >= (1 << (pageblock_order-1))) + if (pages >= (1 << (pageblock_order-1)) || + page_group_by_mobility_disabled) set_pageblock_migratetype(page, start_migratetype); -- 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