Re: [PATCH 1/2] cpufreq: schedutil: Fix superfluous updates caused by need_freq_update

From: Sultan Alsawaf
Date: Wed Apr 09 2025 - 22:33:54 EST


On Thu, Apr 10, 2025 at 10:30:45AM +0800, Xuewen Yan wrote:
> On Thu, Apr 10, 2025 at 10:22 AM Sultan Alsawaf <sultan@xxxxxxxxxxxxxxx> wrote:
> >
> > On Thu, Apr 10, 2025 at 10:13:04AM +0800, Xuewen Yan wrote:
> > > On Thu, Apr 10, 2025 at 10:09 AM Sultan Alsawaf <sultan@xxxxxxxxxxxxxxx> wrote:
> > > >
> > > > On Thu, Apr 10, 2025 at 10:06:41AM +0800, Xuewen Yan wrote:
> > > > > On Thu, Apr 10, 2025 at 9:49 AM Sultan Alsawaf <sultan@xxxxxxxxxxxxxxx> wrote:
> > > > > >
> > > > > > On Wed, Apr 09, 2025 at 07:48:05PM +0800, Xuewen Yan wrote:
> > > > > > > Or can we modify it as follows?
> > > > > > >
> > > > > > > -->8--
> > > > > > >
> > > > > > > diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
> > > > > > > index 1a19d69b91ed..0e8d3b92ffe7 100644
> > > > > > > --- a/kernel/sched/cpufreq_schedutil.c
> > > > > > > +++ b/kernel/sched/cpufreq_schedutil.c
> > > > > > > @@ -83,7 +83,7 @@ static bool sugov_should_update_freq(struct
> > > > > > > sugov_policy *sg_policy, u64 time)
> > > > > > >
> > > > > > > if (unlikely(sg_policy->limits_changed)) {
> > > > > > > sg_policy->limits_changed = false;
> > > > > > > - sg_policy->need_freq_update =
> > > > > > > cpufreq_driver_test_flags(CPUFREQ_NEED_UPDATE_LIMITS);
> > > > > > > + sg_policy->need_freq_update = true;
> > > > > > > return true;
> > > > > > > }
> > > > > > >
> > > > > > > @@ -95,11 +95,15 @@ static bool sugov_should_update_freq(struct
> > > > > > > sugov_policy *sg_policy, u64 time)
> > > > > > > static bool sugov_update_next_freq(struct sugov_policy *sg_policy, u64 time,
> > > > > > > unsigned int next_freq)
> > > > > > > {
> > > > > > > - if (sg_policy->need_freq_update)
> > > > > > > + if (sg_policy->need_freq_update) {
> > > > > > > sg_policy->need_freq_update = false;
> > > > > > > - else if (sg_policy->next_freq == next_freq)
> > > > > > > - return false;
> > > > > > > + if (cpufreq_driver_test_flags(CPUFREQ_NEED_UPDATE_LIMITS))
> > > > > > > + goto change;
> > > > > > > + }
> > > > > > >
> > > > > > > + if (sg_policy->next_freq == next_freq)
> > > > > > > + return false;
>
> I have deleted the else.

Yes, but your change causes a regression by recreating part of the problem
solved in 8e461a1cb43d6 ("cpufreq: schedutil: Fix superfluous updates caused by
need_freq_update").

Sultan