From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756340AbcH3IVy (ORCPT ); Tue, 30 Aug 2016 04:21:54 -0400 Received: from mail-ua0-f173.google.com ([209.85.217.173]:35266 "EHLO mail-ua0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755700AbcH3IVT (ORCPT ); Tue, 30 Aug 2016 04:21:19 -0400 MIME-Version: 1.0 In-Reply-To: <8737lnudq6.fsf@linux.vnet.ibm.com> References: <1472447255-10584-1-git-send-email-iamjoonsoo.kim@lge.com> <8737lnudq6.fsf@linux.vnet.ibm.com> From: Joonsoo Kim Date: Tue, 30 Aug 2016 17:21:18 +0900 Message-ID: Subject: Re: [PATCH v5 0/6] Introduce ZONE_CMA To: "Aneesh Kumar K.V" Cc: Andrew Morton , Rik van Riel , Johannes Weiner , Mel Gorman , Laura Abbott , Minchan Kim , Marek Szyprowski , Michal Nazarewicz , Vlastimil Babka , Linux Memory Management List , LKML , Joonsoo Kim Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2016-08-29 18:27 GMT+09:00 Aneesh Kumar K.V : > js1304@gmail.com writes: > >> From: Joonsoo Kim >> >> Hello, >> >> Changes from v4 >> o Rebase on next-20160825 >> o Add general fix patch for lowmem reserve >> o Fix lowmem reserve ratio >> o Fix zone span optimizaion per Vlastimil >> o Fix pageset initialization >> o Change invocation timing on cma_init_reserved_areas() > > I don't see much information regarding how we interleave between > ZONE_CMA and other zones for movable allocation. Is that explained in > any of the patch ? The fair zone allocator got removed by > e6cbd7f2efb433d717af72aa8510a9db6f7a7e05 Interleaving would not work since the fair zone allocator policy is removed. I don't think that it's a big problem because it is just matter of timing to fill up the memory. Eventually, memory on ZONE_CMA will be fully used in any case. Thanks.