mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Li,Rongqing" <lirongqing@baidu.com>
To: "Rafael J. Wysocki (Intel)" <rafael@kernel.org>
Cc: Viresh Kumar <viresh.kumar@linaro.org>,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"zhongqiu.han@oss.qualcomm.com" <zhongqiu.han@oss.qualcomm.com>
Subject: 答复: [外部邮件] Re: [PATCH v4 2/2] cpufreq: acpi-cpufreq: fix P-state index mismatch in get_cur_freq_on_cpu()
Date: Tue, 15 Sep 2026 05:04:25 +0000	[thread overview]
Message-ID: <d39fba05f2a945008a6a83b7a3ee83c5@baidu.com> (raw)
In-Reply-To: <CAJZ5v0iPPmrTtLRG23UYJ_ibn7VUceuN2qFXpjCsBYnBzDMzYA@mail.gmail.com>



eq: acpi-cpufreq: fix P-state index
> mismatch in get_cur_freq_on_cpu()
> 
> On Thu, Sep 10, 2026 at 1:13 PM lirongqing <lirongqing@baidu.com> wrote:
> >
> > From: Li RongQing <lirongqing@baidu.com>
> >
> > get_cur_freq_on_cpu() uses perf->state, which is an index into
> > perf->states[], to index policy->freq_table[]. However, freq_table[]
> > is built by filtering _PSS entries that are not lower in frequency
> > than the previous one, so its index space no longer matches
> > perf->states[]. The original P-state index for each remaining
> > freq_table entry is stored in driver_data.
> >
> > Once an entry has been skipped, using perf->state as an index into
> > freq_table[] can therefore select the frequency of a different
> > P-state.
> >
> > The reported current frequency itself remains correct because it is
> > obtained from extract_freq(). The mismatch only affects the cached
> > frequency used by get_cur_freq_on_cpu() to detect a firmware frequency
> > change behind our back.
> >
> > If the wrong table entry contains a frequency different from the one
> > the CPU is actually running at, the check falsely detects a frequency
> > change and sets data->resume. The next ->target() call then performs a
> > redundant control-register write even if the requested P-state is
> > already the current P-state.
> >
> > Conversely, if the wrong table entry happens to contain the frequency
> > to which firmware has changed the CPU, the frequency change is missed
> > and data->resume remains clear. A subsequent ->target() call for the
> > P-state that the cpufreq core believes to be current can then
> > short-circuit without rewriting the control register, leaving the CPU
> > at the firmware-selected frequency until a different P-state is
> > requested.
> >
> > Fix this by taking the cached frequency directly from
> > perf->states[perf->state].core_frequency. perf->state and states[] use
> > perf->the same P-state index space, and converting
> > core_frequency to kHz yields the same value stored in the
> > corresponding freq_table entry during initialization.
> 
> Sashiko has comments on this patch and it has a point IMV:
> 
> https://sashiko.dev/#/patchset/20260910111329.2220-1-lirongqing%40baid
> u.com
> 

The extract_msr() fallback issue should be valid , but it is a pre-existing problem that is
orthogonal to the index mismatch fixed by this series. I would therefore prefer to keep this series scoped to that mismatch.

If there is no interest in addressing it here, I will send a separate patch to fix it.

Thanks

[Li,Rongqing] 


> Can you please tell me what you think?
> 
> > Fixes: e56a727b023d ("[CPUFREQ] Make acpi-cpufreq more robust against
> > BIOS freq changes behind our back.")
> > Reported-by: Zhongqiu Han <zhongqiu.han@oss.qualcomm.com>
> > Suggested-by: Zhongqiu Han <zhongqiu.han@oss.qualcomm.com>
> > Signed-off-by: Li RongQing <lirongqing@baidu.com>
> > Reviewed-by: Zhongqiu Han <zhongqiu.han@oss.qualcomm.com>
> > ---
> >  drivers/cpufreq/acpi-cpufreq.c | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/cpufreq/acpi-cpufreq.c
> > b/drivers/cpufreq/acpi-cpufreq.c index a797bb2..3313c74 100644
> > --- a/drivers/cpufreq/acpi-cpufreq.c
> > +++ b/drivers/cpufreq/acpi-cpufreq.c
> > @@ -353,6 +353,7 @@ static u32 get_cur_val(const struct cpumask *mask,
> > struct acpi_cpufreq_data *dat
> >
> >  static unsigned int get_cur_freq_on_cpu(unsigned int cpu)  {
> > +       struct acpi_processor_performance *perf;
> >         struct acpi_cpufreq_data *data;
> >         struct cpufreq_policy *policy;
> >         unsigned int freq;
> > @@ -368,7 +369,9 @@ static unsigned int get_cur_freq_on_cpu(unsigned
> int cpu)
> >         if (unlikely(!data || !policy->freq_table))
> >                 return 0;
> >
> > -       cached_freq =
> policy->freq_table[to_perf_data(data)->state].frequency;
> > +       perf = to_perf_data(data);
> > +       cached_freq = perf->states[perf->state].core_frequency * 1000;
> > +
> >         freq = extract_freq(policy, get_cur_val(cpumask_of(cpu), data));
> >         if (freq != cached_freq) {
> >                 /*
> > --
> > 2.9.4
> >

      reply	other threads:[~2026-09-15  5:04 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-10 11:13 [PATCH v4 0/2] cpufreq: acpi-cpufreq: fix P-state index mismatch between perf->states[] and freq_table[] lirongqing
2026-09-10 11:13 ` [PATCH v4 1/2] cpufreq: acpi-cpufreq: fix P-state index mismatch in extract_io() lirongqing
2026-09-10 11:13 ` [PATCH v4 2/2] cpufreq: acpi-cpufreq: fix P-state index mismatch in get_cur_freq_on_cpu() lirongqing
2026-09-14 18:23   ` Rafael J. Wysocki (Intel)
2026-09-15  5:04     ` Li,Rongqing [this message]

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=d39fba05f2a945008a6a83b7a3ee83c5@baidu.com \
    --to=lirongqing@baidu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rafael@kernel.org \
    --cc=viresh.kumar@linaro.org \
    --cc=zhongqiu.han@oss.qualcomm.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®