Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp2524583pxu; Mon, 7 Dec 2020 08:42:30 -0800 (PST) X-Google-Smtp-Source: ABdhPJxWLmKYq4288c8WTx2sATyHs0uoLEmcOv97LYbQzwJglfUMAJuwsdqxE3fQGm5Cp8TmWCXy X-Received: by 2002:a17:906:adce:: with SMTP id lb14mr13384693ejb.502.1607359350150; Mon, 07 Dec 2020 08:42:30 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1607359350; cv=none; d=google.com; s=arc-20160816; b=Xa2PTcmD+qFElYWPOVwvsz79B7br91ukCVtzvJBgpvl6tlZvKGLHz4CdgAnczoJcGi F8erZyjPlnXQGNHSOfr7GSe2dk+rfzaT2yS9rRdxvTPCkyvYg61BOr3ftEI3gaWDoVqG WXi84vdOezoNDL9qtI8ayPs33oCQeZ61860sDGmWWrzHMwv5bVfndbPF4k3XU7AZCstb hAhnT4awHairGQ/zO8NtmKjth4BiRYPqmr26OSguuv1/UBDVDhlLjbgG3iX4IXFcLMyO wF7sZto1Y36la0+Oy2ng4ZW6J5JYDvKZJ7D+ROBKBehJxtq/mfmrOyxwEdfYYmF0JEN+ Fi+w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=VL+xpuBLaEJOnkGQyUjdRECdp17bOAtiEPT7/fwRwR4=; b=WkXE2w2BzhPnNmkHI1TwBqa2e+iFp/GlBJALItlCjeODFOgJGjer39I8/av6SSNKwv iXIe+2UhUvLF5yR4YupGLSzBf/sVoYXkcIKMN7T5Hx4AR3enI/cN3HB33f606S5AGeba QnjSctVcFHMDu+tiP1aJ4VhfLNaPoILOPGH5Yz7q4nB1FKcvGp2w5GHYbuYZAiMHz/g+ gdDQ+dNtGg6kMkdwUWCcq5mAGzdnU/m4UpQooRM+rLq68b17ljIUa8gpxVFpRICpnOmj NxdmCx9MvjCx7I0F051WYF3tTRcg1w77lVfzIPu3cveMPDkEwh4k3n3E4GXn1lYgMiO1 T8WQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id k15si6825542ejp.554.2020.12.07.08.42.01; Mon, 07 Dec 2020 08:42:30 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727807AbgLGQke (ORCPT + 99 others); Mon, 7 Dec 2020 11:40:34 -0500 Received: from cloudserver094114.home.pl ([79.96.170.134]:50168 "EHLO cloudserver094114.home.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727673AbgLGQke (ORCPT ); Mon, 7 Dec 2020 11:40:34 -0500 Received: from 89-64-79-106.dynamic.chello.pl (89.64.79.106) (HELO kreacher.localnet) by serwer1319399.home.pl (79.96.170.134) with SMTP (IdeaSmtpServer 0.83.530) id db8c3b154aa71968; Mon, 7 Dec 2020 17:39:51 +0100 From: "Rafael J. Wysocki" To: Linux PM Cc: LKML , Viresh Kumar , Srinivas Pandruvada , Peter Zijlstra , Doug Smythies , Giovanni Gherdovich Subject: [PATCH v1 1/4] cpufreq: schedutil: Add util to struct sg_cpu Date: Mon, 07 Dec 2020 17:28:25 +0100 Message-ID: <2344038.BgO4qI7qUv@kreacher> In-Reply-To: <20360841.iInq7taT2Z@kreacher> References: <20360841.iInq7taT2Z@kreacher> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Rafael J. Wysocki Instead of passing util and max between functions while computing the utilization and capacity, store the former in struct sg_cpu (along with the latter and bw_dl). This will allow the current utilization value to be compared with the one obtained previously (which is requisite for some code changes to follow this one), but also it makes the code look slightly more consistent and clean. Signed-off-by: Rafael J. Wysocki --- kernel/sched/cpufreq_schedutil.c | 42 ++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 22 deletions(-) Index: linux-pm/kernel/sched/cpufreq_schedutil.c =================================================================== --- linux-pm.orig/kernel/sched/cpufreq_schedutil.c +++ linux-pm/kernel/sched/cpufreq_schedutil.c @@ -53,6 +53,7 @@ struct sugov_cpu { unsigned int iowait_boost; u64 last_update; + unsigned long util; unsigned long bw_dl; unsigned long max; @@ -276,16 +277,15 @@ unsigned long schedutil_cpu_util(int cpu return min(max, util); } -static unsigned long sugov_get_util(struct sugov_cpu *sg_cpu) +static void sugov_get_util(struct sugov_cpu *sg_cpu) { struct rq *rq = cpu_rq(sg_cpu->cpu); - unsigned long util = cpu_util_cfs(rq); unsigned long max = arch_scale_cpu_capacity(sg_cpu->cpu); sg_cpu->max = max; sg_cpu->bw_dl = cpu_bw_dl(rq); - - return schedutil_cpu_util(sg_cpu->cpu, util, max, FREQUENCY_UTIL, NULL); + sg_cpu->util = schedutil_cpu_util(sg_cpu->cpu, cpu_util_cfs(rq), max, + FREQUENCY_UTIL, NULL); } /** @@ -362,8 +362,6 @@ static void sugov_iowait_boost(struct su * sugov_iowait_apply() - Apply the IO boost to a CPU. * @sg_cpu: the sugov data for the cpu to boost * @time: the update time from the caller - * @util: the utilization to (eventually) boost - * @max: the maximum value the utilization can be boosted to * * A CPU running a task which woken up after an IO operation can have its * utilization boosted to speed up the completion of those IO operations. @@ -377,18 +375,17 @@ static void sugov_iowait_boost(struct su * This mechanism is designed to boost high frequently IO waiting tasks, while * being more conservative on tasks which does sporadic IO operations. */ -static unsigned long sugov_iowait_apply(struct sugov_cpu *sg_cpu, u64 time, - unsigned long util, unsigned long max) +static void sugov_iowait_apply(struct sugov_cpu *sg_cpu, u64 time) { unsigned long boost; /* No boost currently required */ if (!sg_cpu->iowait_boost) - return util; + return; /* Reset boost if the CPU appears to have been idle enough */ if (sugov_iowait_reset(sg_cpu, time, false)) - return util; + return; if (!sg_cpu->iowait_boost_pending) { /* @@ -397,18 +394,19 @@ static unsigned long sugov_iowait_apply( sg_cpu->iowait_boost >>= 1; if (sg_cpu->iowait_boost < IOWAIT_BOOST_MIN) { sg_cpu->iowait_boost = 0; - return util; + return; } } sg_cpu->iowait_boost_pending = false; /* - * @util is already in capacity scale; convert iowait_boost + * sg_cpu->util is already in capacity scale; convert iowait_boost * into the same scale so we can compare. */ - boost = (sg_cpu->iowait_boost * max) >> SCHED_CAPACITY_SHIFT; - return max(boost, util); + boost = (sg_cpu->iowait_boost * sg_cpu->max) >> SCHED_CAPACITY_SHIFT; + if (sg_cpu->util < boost) + sg_cpu->util = boost; } #ifdef CONFIG_NO_HZ_COMMON @@ -439,9 +437,8 @@ static void sugov_update_single(struct u { struct sugov_cpu *sg_cpu = container_of(hook, struct sugov_cpu, update_util); struct sugov_policy *sg_policy = sg_cpu->sg_policy; - unsigned long util, max; - unsigned int next_f; unsigned int cached_freq = sg_policy->cached_raw_freq; + unsigned int next_f; sugov_iowait_boost(sg_cpu, time, flags); sg_cpu->last_update = time; @@ -451,10 +448,10 @@ static void sugov_update_single(struct u if (!sugov_should_update_freq(sg_policy, time)) return; - util = sugov_get_util(sg_cpu); - max = sg_cpu->max; - util = sugov_iowait_apply(sg_cpu, time, util, max); - next_f = get_next_freq(sg_policy, util, max); + sugov_get_util(sg_cpu); + sugov_iowait_apply(sg_cpu, time); + + next_f = get_next_freq(sg_policy, sg_cpu->util, sg_cpu->max); /* * Do not reduce the frequency if the CPU has not been idle * recently, as the reduction is likely to be premature then. @@ -491,9 +488,10 @@ static unsigned int sugov_next_freq_shar struct sugov_cpu *j_sg_cpu = &per_cpu(sugov_cpu, j); unsigned long j_util, j_max; - j_util = sugov_get_util(j_sg_cpu); + sugov_get_util(j_sg_cpu); + sugov_iowait_apply(j_sg_cpu, time); + j_util = j_sg_cpu->util; j_max = j_sg_cpu->max; - j_util = sugov_iowait_apply(j_sg_cpu, time, j_util, j_max); if (j_util * max > j_max * util) { util = j_util;