From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt0-f200.google.com (mail-qt0-f200.google.com [209.85.216.200]) by kanga.kvack.org (Postfix) with ESMTP id 349436B025E for ; Tue, 16 Aug 2016 02:36:14 -0400 (EDT) Received: by mail-qt0-f200.google.com with SMTP id 101so158356556qtb.0 for ; Mon, 15 Aug 2016 23:36:14 -0700 (PDT) Received: from mx2.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id j6si19182121wmj.88.2016.08.15.23.36.13 for (version=TLS1 cipher=AES128-SHA bits=128/128); Mon, 15 Aug 2016 23:36:13 -0700 (PDT) Subject: Re: [PATCH v6 10/11] mm, compaction: require only min watermarks for non-costly orders References: <20160810091226.6709-1-vbabka@suse.cz> <20160810091226.6709-11-vbabka@suse.cz> <20160816061636.GF17448@js1304-P5Q-DELUXE> From: Vlastimil Babka Message-ID: <484d17e5-7294-4724-f5f9-0a15167d47ee@suse.cz> Date: Tue, 16 Aug 2016 08:36:12 +0200 MIME-Version: 1.0 In-Reply-To: <20160816061636.GF17448@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:16 AM, Joonsoo Kim wrote: > On Wed, Aug 10, 2016 at 11:12:25AM +0200, Vlastimil Babka wrote: >> diff --git a/mm/page_alloc.c b/mm/page_alloc.c >> index 621e4211ce16..a5c0f914ec00 100644 >> --- a/mm/page_alloc.c >> +++ b/mm/page_alloc.c >> @@ -2492,7 +2492,7 @@ int __isolate_free_page(struct page *page, unsigned int order) >> >> if (!is_migrate_isolate(mt)) { >> /* Obey watermarks as if the page was being allocated */ >> - watermark = low_wmark_pages(zone) + (1 << order); >> + watermark = min_wmark_pages(zone) + (1UL << order); > > This '1 << order' also needs some comment. Why can't we use > compact_gap() in this case? This is just short-cutting the high-order watermark check to check only order-0, because we already know the high-order page exists. We can't use compact_gap() as that's too high to use for a single allocation watermark, since we can be already holding some free pages on the list. So it would defeat the gap purpose. > 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