From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 65FFEC433DB for ; Tue, 9 Feb 2021 17:27:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2D19B64EA6 for ; Tue, 9 Feb 2021 17:27:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233202AbhBIR1P (ORCPT ); Tue, 9 Feb 2021 12:27:15 -0500 Received: from foss.arm.com ([217.140.110.172]:54452 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232986AbhBIR0e (ORCPT ); Tue, 9 Feb 2021 12:26:34 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id F28F0ED1; Tue, 9 Feb 2021 09:25:46 -0800 (PST) Received: from e113632-lin (e113632-lin.cambridge.arm.com [10.1.194.46]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 0B6B23F73B; Tue, 9 Feb 2021 09:25:44 -0800 (PST) From: Valentin Schneider To: Vincent Guittot Cc: Ingo Molnar , Peter Zijlstra , Juri Lelli , Dietmar Eggemann , Steven Rostedt , Ben Segall , Mel Gorman , Frederic Weisbecker , Thomas Gleixner , Daniel Bristot de Oliveira , linux-kernel , Joel Fernandes , Qais Yousef Subject: Re: [RFC PATCH 5/6] sched/fair: trigger the update of blocked load on newly idle cpu In-Reply-To: References: <20210205114830.781-1-vincent.guittot@linaro.org> <20210205114830.781-6-vincent.guittot@linaro.org> User-Agent: Notmuch/0.21 (http://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) Date: Tue, 09 Feb 2021 17:25:39 +0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/02/21 14:57, Vincent Guittot wrote: > On Tue, 9 Feb 2021 at 14:09, Valentin Schneider > wrote: >> On 05/02/21 12:48, Vincent Guittot wrote: >> > @@ -261,6 +261,12 @@ static void cpuidle_idle_call(void) >> > static void do_idle(void) >> > { >> > int cpu = smp_processor_id(); >> > + >> > + /* >> > + * Check if we need to update some blocked load >> > + */ >> > + nohz_run_idle_balance(cpu); >> > + >> >> What do we gain from doing this here vs having a stats update in >> newidle_balance()? > > As mentioned by Joel, newidle_balance is called in the schedule > context with preempt and irq off which prevent any local activity > like irq/timer. Whereas in this new place, we have the same condition > as during ILB with only preemptoff and _nohz_idle_balance() regularly > checks if it has to abort because something has been scheduled on the > cpu. > Gotcha, that's already hinted at in the cover letter. Could you point this out in the changelog? Other than that, I don't see anything wrong with this approach.