[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging] xen/cpufreq: refactor cmdline "cpufreq=xxx"
commit 7a1ad11bdb69fac53aad293965ff46462c0d6217 Author: Penny Zheng <Penny.Zheng@xxxxxxx> AuthorDate: Tue Aug 26 08:40:56 2025 +0200 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Tue Aug 26 09:33:30 2025 +0200 xen/cpufreq: refactor cmdline "cpufreq=xxx" A helper function handle_cpufreq_cmdline() is introduced to tidy different handling pathes. We also add a new helper cpufreq_opts_contain() to ignore redundant setting, like "cpufreq=hwp;hwp;xen" As only slot 0 of cpufreq_xen_opts[] needs explicit initializing with non-zero CPUFREQ_xen, dropping full array initializer could avoid touching initializer every time it grows Signed-off-by: Penny Zheng <Penny.Zheng@xxxxxxx> Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/drivers/cpufreq/cpufreq.c | 55 +++++++++++++++++++++++++++++++++---------- 1 file changed, 43 insertions(+), 12 deletions(-) diff --git a/xen/drivers/cpufreq/cpufreq.c b/xen/drivers/cpufreq/cpufreq.c index efba141418..267e4d3f3b 100644 --- a/xen/drivers/cpufreq/cpufreq.c +++ b/xen/drivers/cpufreq/cpufreq.c @@ -64,12 +64,49 @@ LIST_HEAD_READ_MOSTLY(cpufreq_governor_list); /* set xen as default cpufreq */ enum cpufreq_controller cpufreq_controller = FREQCTL_xen; -enum cpufreq_xen_opt __initdata cpufreq_xen_opts[2] = { CPUFREQ_xen, - CPUFREQ_none }; +enum cpufreq_xen_opt __initdata cpufreq_xen_opts[2] = { [0] = CPUFREQ_xen }; unsigned int __initdata cpufreq_xen_cnt = 1; static int __init cpufreq_cmdline_parse(const char *s, const char *e); +static bool __init cpufreq_opts_contain(enum cpufreq_xen_opt option) +{ + unsigned int count = cpufreq_xen_cnt; + + while ( count-- ) + { + if ( cpufreq_xen_opts[count] == option ) + return true; + } + + return false; +} + +static int __init handle_cpufreq_cmdline(enum cpufreq_xen_opt option) +{ + int ret = 0; + + if ( cpufreq_opts_contain(option) ) + return 0; + + cpufreq_controller = FREQCTL_xen; + cpufreq_xen_opts[cpufreq_xen_cnt++] = option; + switch ( option ) + { + case CPUFREQ_hwp: + case CPUFREQ_xen: + xen_processor_pmbits |= XEN_PROCESSOR_PM_PX; + break; + + default: + ASSERT_UNREACHABLE(); + ret = -EINVAL; + break; + } + + return ret; +} + static int __init cf_check setup_cpufreq_option(const char *str) { const char *arg = strpbrk(str, ",:;"); @@ -113,21 +150,15 @@ static int __init cf_check setup_cpufreq_option(const char *str) if ( choice > 0 || !cmdline_strcmp(str, "xen") ) { - xen_processor_pmbits |= XEN_PROCESSOR_PM_PX; - cpufreq_controller = FREQCTL_xen; - cpufreq_xen_opts[cpufreq_xen_cnt++] = CPUFREQ_xen; - ret = 0; - if ( arg[0] && arg[1] ) + ret = handle_cpufreq_cmdline(CPUFREQ_xen); + if ( !ret && arg[0] && arg[1] ) ret = cpufreq_cmdline_parse(arg + 1, end); } else if ( IS_ENABLED(CONFIG_INTEL) && choice < 0 && !cmdline_strcmp(str, "hwp") ) { - xen_processor_pmbits |= XEN_PROCESSOR_PM_PX; - cpufreq_controller = FREQCTL_xen; - cpufreq_xen_opts[cpufreq_xen_cnt++] = CPUFREQ_hwp; - ret = 0; - if ( arg[0] && arg[1] ) + ret = handle_cpufreq_cmdline(CPUFREQ_hwp); + if ( !ret && arg[0] && arg[1] ) ret = hwp_cmdline_parse(arg + 1, end); } else -- generated by git-patchbot for /home/xen/git/xen.git#staging
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |