From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751329AbdAMJTG (ORCPT ); Fri, 13 Jan 2017 04:19:06 -0500 Received: from foss.arm.com ([217.140.101.70]:37292 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751241AbdAMJTE (ORCPT ); Fri, 13 Jan 2017 04:19:04 -0500 Date: Fri, 13 Jan 2017 09:19:04 +0000 From: Will Deacon To: Robert Richter Cc: Ard Biesheuvel , Hanjun Guo , Russell King , Catalin Marinas , David Daney , Mark Rutland , James Morse , Yisheng Xie , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , "linux-mm@kvack.org" Subject: Re: [PATCH v3] arm64: mm: Fix NOMAP page initialization Message-ID: <20170113091903.GA22538@arm.com> References: <20161216165437.21612-1-rrichter@cavium.com> <20170109115320.GI4930@rric.localdomain> <20170112160535.GF13843@arm.com> <20170112185825.GE5020@rric.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170112185825.GE5020@rric.localdomain> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 12, 2017 at 07:58:25PM +0100, Robert Richter wrote: > On 12.01.17 16:05:36, Will Deacon wrote: > > On Mon, Jan 09, 2017 at 12:53:20PM +0100, Robert Richter wrote: > > > > Kernel compile times (3 runs each): > > > > > > pfn_valid_within(): > > > > > > real 6m4.088s > > > user 372m57.607s > > > sys 16m55.158s > > > > > > real 6m1.532s > > > user 372m48.453s > > > sys 16m50.370s > > > > > > real 6m4.061s > > > user 373m18.753s > > > sys 16m57.027s > > > > Did you reboot the machine between each build here, or only when changing > > kernel? If the latter, do you see variations in kernel build time by simply > > rebooting the same Image? > > I built it in a loop on the shell, so no reboots between builds. Note > that I was building the kernel in /dev/shm to not access harddisks. I > think build times should be comparable then since there is no fs > caching. I guess I'm really asking what the standard deviation is if you *do* reboot between builds, using the same kernel. It's hard to tell whether the numbers are due to the patches, or just because of noise incurred by the way things happen to initialise. Will