From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934906AbcATQ5F (ORCPT ); Wed, 20 Jan 2016 11:57:05 -0500 Received: from casper.infradead.org ([85.118.1.10]:34624 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934846AbcATQ5D (ORCPT ); Wed, 20 Jan 2016 11:57:03 -0500 Date: Wed, 20 Jan 2016 17:56:57 +0100 From: Peter Zijlstra To: Frederic Weisbecker Cc: LKML , Byungchul Park , Chris Metcalf , Thomas Gleixner , Luiz Capitulino , Christoph Lameter , "Paul E . McKenney" , Mike Galbraith , Rik van Riel Subject: Re: [RFC PATCH 4/4] sched: Upload nohz full CPU load on task enqueue/dequeue Message-ID: <20160120165657.GN6357@twins.programming.kicks-ass.net> References: <1452700891-21807-1-git-send-email-fweisbec@gmail.com> <1452700891-21807-5-git-send-email-fweisbec@gmail.com> <20160119131708.GF6344@twins.programming.kicks-ass.net> <20160119170317.GC5317@lerouge> <20160120090906.GG6357@twins.programming.kicks-ass.net> <20160120145416.GB22723@lerouge> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160120145416.GB22723@lerouge> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jan 20, 2016 at 03:54:19PM +0100, Frederic Weisbecker wrote: > > You can simply do: > > > > for_each_nohzfull_cpu(cpu) { > > struct rq *rq = rq_of(cpu); > > > > raw_spin_lock(&rq->lock); > > update_cpu_load_active(rq); > > raw_spin_unlock(&rq->lock); > > } > > But from where should we do that? house keeper thingy > Maybe we can do it before we call source/target_load(), on the > selected targets needed by the caller? The problem is that if we do > that right after a task got enqueued on the nohz runqueue, we may > accidentally account it as the whole dynticks frame (I mean, if we get > rid of that enqueue/dequeue accounting). Yes so? What if the current tick happens right after a task get enqueued? Then we account the whole tick as !idle, even tough we might have been idle for 99% of the time. Not a problem, this is sampling. Doing it locally or remotely doesn't matter. > > Also, since when can we have enqueues/dequeues while NOHZ_FULL ? I > > thought that was the 1 task 100% cpu case, there are no > > enqueues/dequeues there. > > That's the most optimized case but we can definetly have small moments > with more than one task running. For example if we have a workqueue, > or such short and quick tasks. The moment you have nr_running>1 the tick comes back on.