mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Pierre Gondois <pierre.gondois@arm.com>
To: "Rafael J. Wysocki" <rafael@kernel.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>,
	Viresh Kumar <viresh.kumar@linaro.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>,
	Saravana Kannan <saravanak@kernel.org>,
	linux-pm@vger.kernel.org
Subject: Re: [PATCH v5 2/6] cpufreq: Add boost_freq_req QoS request
Date: Fri, 13 Mar 2026 16:33:07 +0100	[thread overview]
Message-ID: <dc575a54-ca5f-4df9-9875-fca68b109c27@arm.com> (raw)
In-Reply-To: <CAJZ5v0jE0-tP5hz8yMrxriawYJ3pQyQs8rYMn_TA5fm1umb84w@mail.gmail.com>


On 3/13/26 16:31, Rafael J. Wysocki wrote:
> On Fri, Mar 13, 2026 at 3:30 PM Pierre Gondois <pierre.gondois@arm.com> wrote:
>>
>> On 3/11/26 14:57, Rafael J. Wysocki wrote:
>>> On Wed, Mar 11, 2026 at 2:52 PM Rafael J. Wysocki<rafael@kernel.org> wrote:
>>>> On Wed, Feb 25, 2026 at 9:49 AM Pierre Gondois<pierre.gondois@arm.com> wrote:
>>>>> The Power Management Quality of Service (PM QoS) allows to
>>>>> aggregate constraints from multiple entities. It is currently
>>>>> used to manage the min/max frequency of a given policy.
>>>>>
>>>>> Frequency constraints can come for instance from:
>>>>> - Thermal framework: acpi_thermal_cpufreq_init()
>>>>> - Firmware: _PPC objects: acpi_processor_ppc_init()
>>>>> - User: by setting policyX/scaling_[min|max]_freq
>>>>> The minimum of the max frequency constraints is used to compute
>>>>> the resulting maximum allowed frequency.
>>>>>
>>>>> When enabling boost frequencies, the same frequency request object
>>>>> (policy->max_freq_req) as to handle requests from users is used.
>>>>> As a result, when setting:
>>>>> - scaling_max_freq
>>>>> - boost
>>>>> The last sysfs file used overwrites the request from the other
>>>>> sysfs file.
>>>>>
>>>>> To avoid this, create a per-policy boost_freq_req to save the boost
>>>>> constraints instead of overwriting the last scaling_max_freq
>>>>> constraint.
>>>>>
>>>>> Signed-off-by: Pierre Gondois<pierre.gondois@arm.com>
>>>>> ---
>>>>>    drivers/cpufreq/cpufreq.c | 37 ++++++++++++++++++++++++++++++++-----
>>>>>    include/linux/cpufreq.h   |  1 +
>>>>>    2 files changed, 33 insertions(+), 5 deletions(-)
>>>>>
>>>>> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
>>>>> index db414c052658b..50467b938668a 100644
>>>>> --- a/drivers/cpufreq/cpufreq.c
>>>>> +++ b/drivers/cpufreq/cpufreq.c
>>>>> @@ -1359,17 +1359,21 @@ static void cpufreq_policy_free(struct cpufreq_policy *policy)
>>>>>           /* Cancel any pending policy->update work before freeing the policy. */
>>>>>           cancel_work_sync(&policy->update);
>>>>>
>>>>> -       if (policy->max_freq_req) {
>>>>> +       if ((policy->max_freq_req && !policy->boost_supported) ||
>>>>> +           policy->boost_freq_req) {
>>>> Are you sure?
>>>>
>>>>>                   /*
>>>>> -                * Remove max_freq_req after sending CPUFREQ_REMOVE_POLICY
>>>>> -                * notification, since CPUFREQ_CREATE_POLICY notification was
>>>>> -                * sent after adding max_freq_req earlier.
>>>>> +                * Remove max/boost _freq_req after sending CPUFREQ_REMOVE_POLICY
>>>>> +                * notification, since CPUFREQ_CREATE_POLICY notification was sent
>>>>> +                * after adding max/boost _freq_req earlier.
>>>>>                    */
>>>>>                   blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
>>>>>                                                CPUFREQ_REMOVE_POLICY, policy);
>>>>> -               freq_qos_remove_request(policy->max_freq_req);
>>>>>           }
>>>>>
>>>>> +       freq_qos_remove_request(policy->boost_freq_req);
>>>>> +       kfree(policy->boost_freq_req);
>>>>> +
>>>>> +       freq_qos_remove_request(policy->max_freq_req);
>>>>>           freq_qos_remove_request(policy->min_freq_req);
>>>>>           kfree(policy->min_freq_req);
>>>>>
>>>>> @@ -1479,6 +1483,29 @@ static int cpufreq_policy_online(struct cpufreq_policy *policy,
>>>>>                           goto out_destroy_policy;
>>>>>                   }
>>>>>
>>>>> +               if (policy->boost_supported) {
>>>>> +                       policy->boost_freq_req = kzalloc(sizeof(*policy->boost_freq_req),
>>>>> +                                                        GFP_KERNEL);
>>>> Instead of doing this, why don't you add 1 to the policy->min_freq_req
>>>> allocation size when boost is supported?  You'll destroy the policy if
>>>> the allocation fails anyway.
>>
>> Yes right,
>> this would make the error handling much simpler to follow.
>>
>> On the other hand Viresh seems to have acknowledged the logic,
> But he has also said "+1" to this one. :-)

ah right indeed


>
>> so whatever seems is better to both of you.
> I think we agree.

  reply	other threads:[~2026-03-13 15:34 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
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 [this message]
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=dc575a54-ca5f-4df9-9875-fca68b109c27@arm.com \
    --to=pierre.gondois@arm.com \
    --cc=christian.loehle@arm.com \
    --cc=gautham.shenoy@amd.com \
    --cc=ionela.voinescu@arm.com \
    --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

all inboxes | Powered by JetHome®