Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752382Ab2KTTTp (ORCPT ); Tue, 20 Nov 2012 14:19:45 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:38524 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751871Ab2KTTTo (ORCPT ); Tue, 20 Nov 2012 14:19:44 -0500 Date: Tue, 20 Nov 2012 11:19:42 -0800 From: Andrew Morton To: Jiang Liu Cc: Wen Congyang , David Rientjes , Jiang Liu , Maciej Rutecki , Chris Clayton , "Rafael J . Wysocki" , Mel Gorman , Minchan Kim , KAMEZAWA Hiroyuki , Michal Hocko , Jianguo Wu , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [RFT PATCH v1 4/5] mm: provide more accurate estimation of pages occupied by memmap Message-Id: <20121120111942.c9596d3f.akpm@linux-foundation.org> In-Reply-To: <50AB9F4A.5050500@gmail.com> References: <20121115112454.e582a033.akpm@linux-foundation.org> <1353254850-27336-1-git-send-email-jiang.liu@huawei.com> <1353254850-27336-5-git-send-email-jiang.liu@huawei.com> <20121119154240.91efcc53.akpm@linux-foundation.org> <50AB9F4A.5050500@gmail.com> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1538 Lines: 38 On Tue, 20 Nov 2012 23:18:34 +0800 Jiang Liu wrote: > >> +static unsigned long calc_memmap_size(unsigned long spanned_pages, > >> + unsigned long present_pages) > >> +{ > >> + unsigned long pages = spanned_pages; > >> + > >> + /* > >> + * Provide a more accurate estimation if there are big holes within > >> + * the zone and SPARSEMEM is in use. > >> + */ > >> + if (spanned_pages > present_pages + (present_pages >> 4) && > >> + IS_ENABLED(CONFIG_SPARSEMEM)) > >> + pages = present_pages; > >> + > >> + return PAGE_ALIGN(pages * sizeof(struct page)) >> PAGE_SHIFT; > >> +} > > > > Please explain the ">> 4" heuristc more completely - preferably in both > > the changelog and code comments. Why can't we calculate this > > requirement exactly? That might require a second pass, but that's OK for > > code like this? > Hi Andrew, > A normal x86 platform always have some holes within the DMA ZONE, > so the ">> 4" heuristic is to avoid applying this adjustment to the DMA > ZONE on x86 platforms. > Because the memmap_size is just an estimation, I feel it's OK to > remove the ">> 4" heuristic, that shouldn't affect much. Again: why can't we calculate this requirement exactly? That might require a second pass, but that's OK for code like this? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/