From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Pitre Subject: Re: [RFC V2 2/2] sched: idle: IRQ based next prediction for idle period Date: Wed, 20 Jan 2016 14:57:07 -0500 (EST) Message-ID: References: <1453305636-22156-1-git-send-email-daniel.lezcano@linaro.org> <1453305636-22156-3-git-send-email-daniel.lezcano@linaro.org> <20160120194006.GW6357@twins.programming.kicks-ass.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mail-qg0-f49.google.com ([209.85.192.49]:34321 "EHLO mail-qg0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752534AbcATT5L (ORCPT ); Wed, 20 Jan 2016 14:57:11 -0500 Received: by mail-qg0-f49.google.com with SMTP id 6so15096004qgy.1 for ; Wed, 20 Jan 2016 11:57:10 -0800 (PST) In-Reply-To: <20160120194006.GW6357@twins.programming.kicks-ass.net> Sender: linux-pm-owner@vger.kernel.org List-Id: linux-pm@vger.kernel.org To: Peter Zijlstra Cc: Daniel Lezcano , tglx@linutronix.de, rafael@kernel.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, vincent.guittot@linaro.org On Wed, 20 Jan 2016, Peter Zijlstra wrote: > On Wed, Jan 20, 2016 at 05:00:33PM +0100, Daniel Lezcano wrote: > > +static inline u32 stats_mean(struct stats *s) > > +{ > > + /* > > + * gcc is smart enough to convert to a bits shift when the > > + * divisor is constant and multiple of 2^x. > > + * > > + * The number of values could have not reached STATS_NR_VALUES > > + * yet, but we can consider it acceptable as the situation is > > + * only at the beginning of the burst of irqs. > > + */ > > + return s->sum / STATS_NR_VALUES; > > +} > > Note that ->sum is u64, so you're very prone to truncation. It won't. It is the sum of u32 values, so the mean of those values can't exceed 32 bits. Nicolas