[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH 06/13] cpufreq: Export HWP parameters to userspace
On 28.05.2021 15:19, Jason Andryuk wrote: > On Thu, May 27, 2021 at 4:03 AM Jan Beulich <jbeulich@xxxxxxxx> wrote: >> On 03.05.2021 21:28, Jason Andryuk wrote: >>> --- a/xen/drivers/acpi/pmstat.c >>> +++ b/xen/drivers/acpi/pmstat.c >>> @@ -290,6 +290,12 @@ static int get_cpufreq_para(struct xen_sysctl_pm_op >>> *op) >>> &op->u.get_para.u.ondemand.sampling_rate, >>> &op->u.get_para.u.ondemand.up_threshold); >>> } >>> + >>> + if ( !strncasecmp(op->u.get_para.scaling_governor, >>> + "hwp-internal", CPUFREQ_NAME_LEN) ) >>> + { >>> + ret = get_hwp_para(policy, &op->u.get_para.u.hwp_para); >>> + } >>> op->u.get_para.turbo_enabled = cpufreq_get_turbo_status(op->cpuid); >> >> Nit: Unnecessary parentheses again, and with the leading blank line >> you also want a trailing one. (As an aside I'm also not overly happy >> to see the call keyed to the governor name. Is there really no other >> indication that hwp is in use?) > > This is preceded by similar checks for "userspace" and "ondemand", so > it is following existing code. Unlike other governors, hwp-internal > is static. It could be exported if you want to switch to comparing > with cpufreq_driver. Hmm, well, then feel free to keep the logic as you have it, except please don't take presence of unnecessary braces as excuse to add more. >>> + uint8_t hw_feature; /* bit flags for features */ >>> + uint8_t hw_lowest; >>> + uint8_t hw_most_efficient; >>> + uint8_t hw_guaranteed; >>> + uint8_t hw_highest; >> >> Any particular reason for the recurring hw_ prefixes? > > The idea was to differentiate values provided by CPU hardware from > user-configured values. I think that follows from their names already without the prefix. I'd prefer if you dropped them, but I'll try to not insist (I may comment on this again in later versions, in case I forgot by then). Jan
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |