From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752013AbeDYJjZ (ORCPT ); Wed, 25 Apr 2018 05:39:25 -0400 Received: from foss.arm.com ([217.140.101.70]:36678 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751982AbeDYJjM (ORCPT ); Wed, 25 Apr 2018 05:39:12 -0400 Date: Wed, 25 Apr 2018 10:39:09 +0100 From: Quentin Perret To: Viresh Kumar Cc: Peter Zijlstra , Valentin Schneider , Ingo Molnar , Vincent Guittot , Daniel Lezcano , linux-kernel@vger.kernel.org Subject: Re: [PATCH] sched/fair: Rearrange select_task_rq_fair() to optimize it Message-ID: <20180425093909.GI14391@e108498-lin.cambridge.arm.com> References: <8a34a16da90b9f83ffe60316a074a5e4d05b59b0.1524479666.git.viresh.kumar@linaro.org> <434fa179-7c8f-8a01-a07a-4527521a04c7@arm.com> <20180424104304.GE4064@hirez.programming.kicks-ass.net> <0985e709-0d71-2c08-20a9-7bfb618fb5f2@arm.com> <20180424123523.GF4064@hirez.programming.kicks-ass.net> <20180425051509.aohopadqw7q5urbd@vireshk-i7> <20180425081334.GF14391@e108498-lin.cambridge.arm.com> <20180425090327.7mwm2pdheeptz6sd@vireshk-i7> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180425090327.7mwm2pdheeptz6sd@vireshk-i7> User-Agent: Mutt/1.8.3 (2017-05-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wednesday 25 Apr 2018 at 14:33:27 (+0530), Viresh Kumar wrote: > On 25-04-18, 09:13, Quentin Perret wrote: > > While you're at it, you could probably remove the one in wake_cap() ? I > > think having just one in select_task_rq_fair() should be enough. > > Just make it clear, you are asking me to remove sync_entity_load_avg() > in wake_cap() ? But aren't we required to do that, as in the very next > line we call task_util(p) ? Right, we do need to call sync_entity_load_avg() at some point before calling task_util(), but we don't need to re-call it in strf() after in this case. So my point was just that if you want to re-work the wake-up path and make sure we don't call sync_entity_load_avg() if not needed then this might need fixing as well ... Or maybe we don't care since re-calling sync_entity_load_avg() should be really cheap ...