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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 95258C433FE for ; Wed, 16 Nov 2022 11:50:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233433AbiKPLtj (ORCPT ); Wed, 16 Nov 2022 06:49:39 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60976 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238483AbiKPLsy (ORCPT ); Wed, 16 Nov 2022 06:48:54 -0500 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 014AF29825; Wed, 16 Nov 2022 03:35:45 -0800 (PST) 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 1120A1477; Wed, 16 Nov 2022 03:35:51 -0800 (PST) Received: from [10.57.6.51] (unknown [10.57.6.51]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 01FCC3F663; Wed, 16 Nov 2022 03:35:40 -0800 (PST) Message-ID: <205c3ebf-5a0b-883e-a9db-731e04bac728@arm.com> Date: Wed, 16 Nov 2022 11:35:38 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.2 From: Lukasz Luba Subject: Re: [PATCH v1] Revert "cpufreq: schedutil: Move max CPU capacity to sugov_policy" To: Sam Wu Cc: Saravana Kannan , Ingo Molnar , Dietmar Eggemann , "Isaac J . Manjarres" , kernel-team@android.com, Mel Gorman , Juri Lelli , Ben Segall , Steven Rostedt , Vincent Guittot , Valentin Schneider , Peter Zijlstra , "Rafael J. Wysocki" , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, "Rafael J. Wysocki" , Daniel Bristot de Oliveira , Viresh Kumar References: <20221110195732.1382314-1-wusamuel@google.com> Content-Language: en-US In-Reply-To: <20221110195732.1382314-1-wusamuel@google.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Hi Sam, On 11/10/22 19:57, Sam Wu wrote: > This reverts commit 6d5afdc97ea71958287364a1f1d07e59ef151b11. > > On a Pixel 6 device, it is observed that this commit increases > latency by approximately 50ms, or 20%, in migrating a task > that requires full CPU utilization from a LITTLE CPU to Fmax > on a big CPU. Reverting this change restores the latency back > to its original baseline value. Which mainline kernel version you use in pixel6? Could you elaborate a bit how is it possible? Do you have the sg_policy setup properly (and at right time)? Do you have the cpu capacity from arch_scale_cpu_capacity() set correctly and at the right time during this cpufreq governor setup? IIRC in Android there is a different code for setting up the cpufreq sched governor clones. In mainline we don't have to do those tricks, so this might be the main difference. Could you trace the value that is read from arch_scale_cpu_capacity() and share it with us? I suspect this value changes in time in your kernel. Regards, Lukasz