Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754064AbaLHHHz (ORCPT ); Mon, 8 Dec 2014 02:07:55 -0500 Received: from LGEMRELSE7Q.lge.com ([156.147.1.151]:45842 "EHLO lgemrelse7q.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751007AbaLHHHy (ORCPT ); Mon, 8 Dec 2014 02:07:54 -0500 X-Original-SENDERIP: 10.177.222.213 X-Original-MAILFROM: iamjoonsoo.kim@lge.com Date: Mon, 8 Dec 2014 16:11:40 +0900 From: Joonsoo Kim To: Vlastimil Babka Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Minchan Kim , Mel Gorman , Rik van Riel , David Rientjes Subject: Re: [RFC PATCH 2/3] mm: more aggressive page stealing for UNMOVABLE allocations Message-ID: <20141208071140.GB3904@js1304-P5Q-DELUXE> References: <1417713178-10256-1-git-send-email-vbabka@suse.cz> <1417713178-10256-3-git-send-email-vbabka@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1417713178-10256-3-git-send-email-vbabka@suse.cz> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Dec 04, 2014 at 06:12:57PM +0100, Vlastimil Babka wrote: > When allocation falls back to stealing free pages of another migratetype, > it can decide to steal extra pages, or even the whole pageblock in order to > reduce fragmentation, which could happen if further allocation fallbacks > pick a different pageblock. In try_to_steal_freepages(), one of the situations > where extra pages are stolen happens when we are trying to allocate a > MIGRATE_RECLAIMABLE page. > > However, MIGRATE_UNMOVABLE allocations are not treated the same way, although > spreading such allocation over multiple fallback pageblocks is arguably even > worse than it is for RECLAIMABLE allocations. To minimize fragmentation, we > should minimize the number of such fallbacks, and thus steal as much as is > possible from each fallback pageblock. I'm not sure that this change is good. If we steal order 0 pages, this may be good. But, sometimes, we try to steal high order page and, in this case, there would be many order 0 freepages and blindly stealing freepages in that pageblock make the system more fragmented. MIGRATE_RECLAIMABLE is different case than MIGRATE_UNMOVABLE, because it can be reclaimed so excessive migratetype movement doesn't result in permanent fragmentation. What I'd like to do to prevent fragmentation is 1) check whether we can steal all or almost freepages and change migratetype of pageblock. 2) If above condition isn't met, deny allocation and invoke compaction. Maybe knob to control behaviour would be needed. How about it? Thanks. > > This patch thus adds a check for MIGRATE_UNMOVABLE to the decision to steal > extra free pages. When evaluating with stress-highalloc from mmtests, this has > reduced the number of MIGRATE_UNMOVABLE fallbacks to roughly 1/6. The number > of these fallbacks stealing from MIGRATE_MOVABLE block is reduced to 1/3. > > Signed-off-by: Vlastimil Babka > --- > mm/page_alloc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index 548b072..a14249c 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -1098,6 +1098,7 @@ static int try_to_steal_freepages(struct zone *zone, struct page *page, > > if (current_order >= pageblock_order / 2 || > start_type == MIGRATE_RECLAIMABLE || > + start_type == MIGRATE_UNMOVABLE || > page_group_by_mobility_disabled) { > int pages; > > -- > 2.1.2 > > -- > 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 -- 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/