public inbox for linux-pm@vger.kernel.org
 help / color / mirror / Atom feed
From: Pierre Gondois <pierre.gondois@arm.com>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: linux-kernel@vger.kernel.org, Jie Zhan <zhanjie9@hisilicon.com>,
	Lifeng Zheng <zhenglifeng1@huawei.com>,
	Ionela Voinescu <ionela.voinescu@arm.com>,
	Sumit Gupta <sumitg@nvidia.com>,
	Christian Loehle <christian.loehle@arm.com>,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	Huang Rui <ray.huang@amd.com>,
	"Gautham R. Shenoy" <gautham.shenoy@amd.com>,
	Mario Limonciello <mario.limonciello@amd.com>,
	Perry Yuan <perry.yuan@amd.com>,
	Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>,
	Len Brown <lenb@kernel.org>,
	Saravana Kannan <saravanak@kernel.org>,
	linux-pm@vger.kernel.org
Subject: Re: [PATCH v5 1/6] cpufreq: Remove per-CPU QoS constraint
Date: Mon, 16 Mar 2026 15:45:07 +0100	[thread overview]
Message-ID: <de26c436-bc6d-49bd-ab88-e055f1665c2f@arm.com> (raw)
In-Reply-To: <zvk6qqwde535fiimjrtwhkyjnhymliv5acubtho3ge5hgj7y5g@3wolynnix3gz>


On 3/13/26 09:57, Viresh Kumar wrote:
> On 25-02-26, 09:49, Pierre Gondois wrote:
>> policy->max_freq_req represents the maximum allowed frequency as
>> requested by the policyX/scaling_max_freq sysfs file. This request
>> applies to all CPUs of the policy. It is not possible to request
>> a per-CPU maximum frequency.
>>
>> Thus, the interaction between the policy boost and scaling_max_freq
>> settings should be handled by adding a boost specific QoS constraint.
>> This will be handled in the following patches.
>>
>> This patch reverts of:
>> commit 1608f0230510 ("cpufreq: Fix re-boost issue after hotplugging
>> a CPU")
>>
>> Reviewed-by: Lifeng Zheng <zhenglifeng1@huawei.com>
>> Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
>> ---
>>   drivers/cpufreq/cpufreq.c | 4 ----
>>   1 file changed, 4 deletions(-)
>>
>> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
>> index 4472bb1ec83c7..db414c052658b 100644
>> --- a/drivers/cpufreq/cpufreq.c
>> +++ b/drivers/cpufreq/cpufreq.c
>> @@ -1481,10 +1481,6 @@ static int cpufreq_policy_online(struct cpufreq_policy *policy,
>>   
>>   		blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
>>   				CPUFREQ_CREATE_POLICY, policy);
>> -	} else {
>> -		ret = freq_qos_update_request(policy->max_freq_req, policy->max);
>> -		if (ret < 0)
>> -			goto out_destroy_policy;
>>   	}
>>   
>>   	if (cpufreq_driver->get && has_target()) {
> Even if this change is required, I don't think this should be applied
> separately. Just reverting this will get the bug back, which was fixed by
> commit 1608f0230510. Individual patches shouldn't break kernel (and bisect) as
> much as possible.
>
I could not reproduce the original issue.

At the time of the patch and still now, calls to
freq_qos_update_request() are checked against negative values.
The only exception is when using the scaling_max_frequency sysfs
entry, but this is out of the scope.

So I don't see how:

commit 1608f0230510 ("cpufreq: Fix re-boost issue after hotplugging a CPU")

can prevent a CPU to reach the boost frequency.  The only path that
could fail and that I could reproduce was fixed by:

https://lore.kernel.org/all/852ff11c589e6300730d207baac195b2d9d8b95f.1745511526.git.viresh.kumar@linaro.org/

So the current conclusion is that "cpufreq: Fix re-boost issue after 
hotplugging a CPU"
was not the real fix


  parent reply	other threads:[~2026-03-16 14:46 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-25  8:49 [PATCH v5 0/6] cpufreq: Introduce boost frequency QoS Pierre Gondois
2026-02-25  8:49 ` [PATCH v5 1/6] cpufreq: Remove per-CPU QoS constraint Pierre Gondois
2026-03-13  8:57   ` Viresh Kumar
2026-03-13 14:28     ` Pierre Gondois
2026-03-16 14:45     ` Pierre Gondois [this message]
2026-03-16 19:25       ` Rafael J. Wysocki
2026-03-17  8:42       ` zhenglifeng (A)
2026-02-25  8:49 ` [PATCH v5 2/6] cpufreq: Add boost_freq_req QoS request Pierre Gondois
2026-03-11 13:52   ` Rafael J. Wysocki
2026-03-11 13:57     ` Rafael J. Wysocki
2026-03-13 14:28       ` Pierre Gondois
2026-03-13 15:31         ` Rafael J. Wysocki
2026-03-13 15:33           ` Pierre Gondois
2026-03-13  9:17     ` Viresh Kumar
2026-02-25  8:49 ` [PATCH v5 3/6] cpufreq: Centralize boost freq QoS requests Pierre Gondois
2026-03-11 16:11   ` Rafael J. Wysocki
2026-03-13  9:22   ` Viresh Kumar
2026-03-13 14:28     ` Pierre Gondois
2026-03-17 10:28     ` Pierre Gondois
2026-02-25  8:49 ` [PATCH v5 4/6] cpufreq: Update .set_boost() callbacks to rely on boost_freq_req Pierre Gondois
2026-03-11 16:19   ` Rafael J. Wysocki
2026-03-13  9:38     ` Viresh Kumar
2026-03-13 11:43       ` Rafael J. Wysocki
2026-03-13 14:28         ` Pierre Gondois
2026-02-25  8:49 ` [PATCH v5 5/6] cpufreq: Set policy->min and max as real QoS constraints Pierre Gondois
2026-02-25  8:49 ` [RFC PATCH v5 6/6] cpufreq/freq_table: Allow decreasing cpuinfo.max_freq Pierre Gondois
2026-03-11 16:24   ` Rafael J. Wysocki
2026-03-13 14:28     ` Pierre Gondois
2026-03-13  8:13 ` [PATCH v5 0/6] cpufreq: Introduce boost frequency QoS Viresh Kumar
2026-03-13 14:27   ` Pierre Gondois

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=de26c436-bc6d-49bd-ab88-e055f1665c2f@arm.com \
    --to=pierre.gondois@arm.com \
    --cc=christian.loehle@arm.com \
    --cc=gautham.shenoy@amd.com \
    --cc=ionela.voinescu@arm.com \
    --cc=lenb@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=mario.limonciello@amd.com \
    --cc=perry.yuan@amd.com \
    --cc=rafael@kernel.org \
    --cc=ray.huang@amd.com \
    --cc=saravanak@kernel.org \
    --cc=srinivas.pandruvada@linux.intel.com \
    --cc=sumitg@nvidia.com \
    --cc=viresh.kumar@linaro.org \
    --cc=zhanjie9@hisilicon.com \
    --cc=zhenglifeng1@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox