lkml.org 
[lkml]   [2020]   [Nov]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 4/8] cppc_cpufreq: replace per-cpu structures with lists
Hi Jeremy,

On Thursday 05 Nov 2020 at 09:50:30 (-0600), Jeremy Linton wrote:
> Hi,
>
> On 11/5/20 6:55 AM, Ionela Voinescu wrote:
> > The cppc_cpudata per-cpu storage was inefficient (1) additional to causing
> > functional issues (2) when CPUs are hotplugged out, due to per-cpu data
> > being improperly initialised.
> >
> > (1) The amount of information needed for CPPC performance control in its
> > cpufreq driver depends on the domain (PSD) coordination type:
> >
> > ANY: One set of CPPC control and capability data (e.g desired
> > performance, highest/lowest performance, etc) applies to all
> > CPUs in the domain.
> >
> > ALL: Same as ANY. To be noted that this type is not currently
> > supported. When supported, information about which CPUs
> > belong to a domain is needed in order for frequency change
> > requests to be sent to each of them.
> >
> > HW: It's necessary to store CPPC control and capability
> > information for all the CPUs. HW will then coordinate the
> > performance state based on their limitations and requests.
> >
> > NONE: Same as HW. No HW coordination is expected.
> >
> > Despite this, the previous initialisation code would indiscriminately
> > allocate memory for all CPUs (all_cpu_data) and unnecessarily
> > duplicate performance capabilities and the domain sharing mask and type
> > for each possible CPU.
>
> I should have mentioned this on the last set.
>
> If the common case on arm/acpi machines is a single core per _PSD (which I
> believe it is), then you are actually increasing the overhead doing this.
>

Thanks for taking another look and pointing this out.

Yes, that would be quite inefficient as I'd be holding both CPU and domain
information uselessly, for that case. I could drop the domain
information without actually losing anything (shared type and shared cpu
map have no purpose for single CPUs in a domain).

Also, I don't actually need a list of CPUs in the domain, an array will
work just as well, as I know the number of CPUs when I allocate the
domain - that will allow me to remove the node from cppc_cpudata and
save me some pointers.

Also, I now remember I wanted to get rid of cpu and cur_policy from
cppc_cpudata as well, as they serve no purpose. Let me know if you guys
see a reason against this.

All of this should at least bring things on par for HW and NONE types,
while improving ANY and ALL types. Thanks again for bringing this up.

Regards,
Ionela.

\
 
 \ /
  Last update: 2020-11-05 18:01    [W:0.082 / U:0.068 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site