Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AC980C433F5 for ; Fri, 12 Nov 2021 14:17:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 94B3A61054 for ; Fri, 12 Nov 2021 14:17:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235148AbhKLOTz (ORCPT ); Fri, 12 Nov 2021 09:19:55 -0500 Received: from foss.arm.com ([217.140.110.172]:38394 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235189AbhKLOTu (ORCPT ); Fri, 12 Nov 2021 09:19:50 -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 0AE4FED1; Fri, 12 Nov 2021 06:17:00 -0800 (PST) Received: from [192.168.178.6] (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 1D0E63F70D; Fri, 12 Nov 2021 06:16:57 -0800 (PST) Subject: Re: [Resend PATCH] psi : calc cfs task memstall time more precisely To: Xuewen Yan Cc: Zhaoyang Huang , Johannes Weiner , Andrew Morton , Michal Hocko , Vladimir Davydov , Zhaoyang Huang , "open list:MEMORY MANAGEMENT" , LKML , Peter Zijlstra , Vincent Guittot , xuewen.yan@unisoc.com, Ke Wang References: <1634278612-17055-1-git-send-email-huangzhaoyang@gmail.com> <78b3f72b-3fe7-f2e0-0e6b-32f28b8ce777@arm.com> <85c81ab7-49ed-aba5-6221-ea6a8f37f8ad@arm.com> <05a2e61e-9c55-8f8d-5e72-9854613e53c9@arm.com> From: Dietmar Eggemann Message-ID: <1aa4afe4-3c30-a9c9-561b-bd692c569ae0@arm.com> Date: Fri, 12 Nov 2021 15:16:52 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/11/2021 06:36, Xuewen Yan wrote: > Hi Dietmar > On Tue, Nov 9, 2021 at 5:43 PM Dietmar Eggemann > wrote: >> >> On 08/11/2021 09:49, Xuewen Yan wrote: >>> Hi Dietmar >>> >>> On Sat, Nov 6, 2021 at 1:20 AM Dietmar Eggemann >>> wrote: >>>> >>>> On 05/11/2021 06:58, Zhaoyang Huang wrote: [...] >>>> Even the CFS part (cpu_rq(CPUx)->cfs.avg.util_avg) can be larger than >>>> the original cpu capacity (rq->cpu_capacity_orig). >>>> >>>> Have a look at cpu_util(). capacity_orig_of(CPUx) and >>>> arch_scale_cpu_capacity(CPUx) both returning rq->cpu_capacity_orig. >>>> >>> >>> Well, your means is we should not use the 1024 and should use the >>> original cpu capacity? >>> And maybe use the "sched_cpu_util()" is a good choice just like this: >>> >>> + if (current->in_memstall) >>> + growth_fixed = div64_ul(cpu_util_cfs(rq) * growth, >>> sched_cpu_util(rq->cpu, capacity_orig_of(rq->cpu))); >> >> Not sure about this. In case util_cfs=0 you would get scale=0. > > Yes , we should consider it. In addition, it also should be considered > when util_cfs > capacity_orig because of the UTIL_EST...... We should ]-clamp cpu_util_cfs() with capacity_orig_of(), like we currently do for the CFS internal cpu_util(). In fact, we should only use one function for this. Sent a patch out: https://lkml.kernel.org/r/20211112141349.155713-1-dietmar.eggemann@arm.com%3E [...]