From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f42.google.com (mail-pa0-f42.google.com [209.85.220.42]) by kanga.kvack.org (Postfix) with ESMTP id 1CE5C6B0062 for ; Thu, 29 May 2014 04:09:44 -0400 (EDT) Received: by mail-pa0-f42.google.com with SMTP id rd3so12538510pab.29 for ; Thu, 29 May 2014 01:09:43 -0700 (PDT) Received: from lgeamrelo04.lge.com (lgeamrelo04.lge.com. [156.147.1.127]) by mx.google.com with ESMTP id bd8si26885044pbd.241.2014.05.29.01.09.42 for ; Thu, 29 May 2014 01:09:43 -0700 (PDT) Message-ID: <5386EB3E.5090007@lge.com> Date: Thu, 29 May 2014 17:09:34 +0900 From: Gioh Kim MIME-Version: 1.0 Subject: Re: [PATCH v2 2/3] CMA: aggressively allocate the pages on cma reserved memory when not used References: <1401260672-28339-1-git-send-email-iamjoonsoo.kim@lge.com> <1401260672-28339-3-git-send-email-iamjoonsoo.kim@lge.com> <5386E0CA.5040201@lge.com> <20140529074847.GA7554@js1304-P5Q-DELUXE> In-Reply-To: <20140529074847.GA7554@js1304-P5Q-DELUXE> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Joonsoo Kim Cc: Andrew Morton , Rik van Riel , Johannes Weiner , Mel Gorman , Laura Abbott , Minchan Kim , Heesub Shin , Marek Szyprowski , Michal Nazarewicz , "Aneesh Kumar K.V" , linux-mm@kvack.org, linux-kernel@vger.kernel.org >>> + >>> /* >>> * Do the hard work of removing an element from the buddy allocator. >>> * Call me with the zone->lock already held. >>> @@ -1143,10 +1223,15 @@ __rmqueue_fallback(struct zone *zone, int order, int start_migratetype) >>> static struct page *__rmqueue(struct zone *zone, unsigned int order, >>> int migratetype) >>> { >>> - struct page *page; >>> + struct page *page = NULL; >>> + >>> + if (IS_ENABLED(CONFIG_CMA) && >> >> You might know that CONFIG_CMA is enabled and there is no CMA memory, because CONFIG_CMA_SIZE_MBYTES can be zero. >> Is IS_ENABLED(CONFIG_CMA) alright in that case? > > next line checks whether zone->managed_cma_pages is positive or not. > If there is no CMA memory, zone->managed_cma_pages will be zero and > we will skip to call __rmqueue_cma(). Is IS_ENABLED(CONFIG_CMA) necessary? What about if (migratetype == MIGRATE_MOVABLE && zone->managed_cma_pages) ? > > Thanks for review!!! > > 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