From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754367AbdEENWJ (ORCPT ); Fri, 5 May 2017 09:22:09 -0400 Received: from foss.arm.com ([217.140.101.70]:51334 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752478AbdEENWI (ORCPT ); Fri, 5 May 2017 09:22:08 -0400 Subject: Re: [PATCH 2/3] sched/fair: Add load_weight->runnable_load_{sum|avg} To: Tejun Heo , Ingo Molnar , Peter Zijlstra References: <20170504202838.GA2647@htj.duckdns.org> <20170504202948.GC2647@htj.duckdns.org> Cc: linux-kernel@vger.kernel.org, Linus Torvalds , Vincent Guittot , Mike Galbraith , Paul Turner , Chris Mason , kernel-team@fb.com From: Dietmar Eggemann Message-ID: Date: Fri, 5 May 2017 14:22:05 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170504202948.GC2647@htj.duckdns.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Tejun, On 04/05/17 21:29, Tejun Heo wrote: > Currently, runnable_load_avg, which represents the portion of load avg > only from tasks which are currently active, is tracked by cfs_rq but > not by sched_entity. We want to propagate runnable_load_avg of a > nested cfs_rq without affecting load_avg propagation. To implement an > equivalent propagation channel, sched_entity needs to track > runnable_load_avg too. > > This patch moves cfs_rq->runnable_load_{sum|avg} into struct > load_weight which is already used to track load_avg and shared by both > cfs_rq and sched_entity. > > This patch only changes where runnable_load_{sum|avg} are located and > doesn't cause any actual behavior changes. The fields are still only > used for cfs_rqs. This one doesn't apply cleanly on tip/sched/core. There has been a lot of changes in the actual PELT code. e.g. a481db34b9be - sched/fair: Optimize ___update_sched_avg() (2017-03-30 Yuyang Du) 0ccb977f4c80 - sched/fair: Explicitly generate __update_load_avg() instances (2017-03-30 Peter Zijlstra) I stitch this up locally to be able to run some tests. [...]