From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 28C262C0357 for ; Wed, 18 Jul 2012 17:15:59 +1000 (EST) Message-ID: <1342595730.3669.70.camel@pasglop> Subject: Re: [PATCH] mm: setup pageblock_order before it's used by sparse From: Benjamin Herrenschmidt To: Yinghai Lu Date: Wed, 18 Jul 2012 17:15:30 +1000 In-Reply-To: References: <1341047274-5616-1-git-send-email-jiang.liu@huawei.com> <4FF100F0.9050501@huawei.com> <4FF25EFA.1080004@huawei.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Cc: Tony Luck , Jiang Liu , linux-mm@kvack.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org, Minchan Kim , Keping Chen , Mel Gorman , KOSAKI Motohiro , David Rientjes , Xishi Qiu , Andrew Morton , David Gibson , linuxppc-dev@lists.ozlabs.org, KAMEZAWA Hiroyuki , Jiang Liu List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Mon, 2012-07-02 at 20:25 -0700, Yinghai Lu wrote: > > That means pageblock_order is always set to "MAX_ORDER - 1", not sure > > whether this is intended. And it has the same issue as IA64 of wasting > > memory if CONFIG_SPARSE is enabled. > > adding BenH, need to know if it is powerpc intended. > > > > > So it would be better to keep function set_pageblock_order(), it will > > fix the memory wasting on both IA64 and PowerPC. > > Should setup pageblock_order as early as possible to avoid confusing. Hrm, HPAGE_SHIFT is initially 0 because we only know at runtime what huge page sizes are going to be supported (if any). The business with pageblock_order is new to me and does look bogus today indeed. But not a huge deal either. Our MAX_ORDER is typically 9 (64K pages) or 13 (4K pages) and our standard huge page size is generally 16M so there isn't a big difference here. Still, maybe something worth looking into... Cheers, Ben.