From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua0-f199.google.com (mail-ua0-f199.google.com [209.85.217.199]) by kanga.kvack.org (Postfix) with ESMTP id 4047E6B0038 for ; Tue, 16 Aug 2016 02:15:39 -0400 (EDT) Received: by mail-ua0-f199.google.com with SMTP id r91so165704693uar.0 for ; Mon, 15 Aug 2016 23:15:39 -0700 (PDT) Received: from mx2.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id h195si19124092wmg.66.2016.08.15.23.15.38 for (version=TLS1 cipher=AES128-SHA bits=128/128); Mon, 15 Aug 2016 23:15:38 -0700 (PDT) Subject: Re: [PATCH v6 08/11] mm, compaction: create compact_gap wrapper References: <20160810091226.6709-1-vbabka@suse.cz> <20160810091226.6709-9-vbabka@suse.cz> <20160816061518.GE17448@js1304-P5Q-DELUXE> From: Vlastimil Babka Message-ID: <656fea7f-753d-df56-744a-50b90f9a3842@suse.cz> Date: Tue, 16 Aug 2016 08:15:36 +0200 MIME-Version: 1.0 In-Reply-To: <20160816061518.GE17448@js1304-P5Q-DELUXE> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Joonsoo Kim Cc: Andrew Morton , Michal Hocko , Mel Gorman , David Rientjes , Rik van Riel , linux-mm@kvack.org, linux-kernel@vger.kernel.org On 08/16/2016 08:15 AM, Joonsoo Kim wrote: > On Wed, Aug 10, 2016 at 11:12:23AM +0200, Vlastimil Babka wrote: >> --- a/include/linux/compaction.h >> +++ b/include/linux/compaction.h >> @@ -58,6 +58,22 @@ enum compact_result { >> >> struct alloc_context; /* in mm/internal.h */ >> >> +/* >> + * Number of free order-0 pages that should be available above given watermark >> + * to make sure compaction has reasonable chance of not running out of free >> + * pages that it needs to isolate as migration target during its work. >> + */ >> +static inline unsigned long compact_gap(unsigned int order) >> +{ >> + /* >> + * Although all the isolations for migration are temporary, compaction >> + * may have up to 1 << order pages on its list and then try to split >> + * an (order - 1) free page. At that point, a gap of 1 << order might >> + * not be enough, so it's safer to require twice that amount. >> + */ >> + return 2UL << order; >> +} > > I agree with this wrapper function but there is a question. > > Could you elaborate more on this code comment? Freescanner could keep > COMPACT_CLUSTER_MAX freepages on the list. It's not associated with > requested order at least for now. Why compact_gap is 2UL << order in > this case? It's true that for high enough order, COMPACT_CLUSTER_MAX might be more limiting than 1 << order. But then it also helps to have more free pages for probability of compaction success, so I don't think it's worth complicating the compact_gap() formula. > Thanks. > -- 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