This series enables users of prebuilt kernels (e.g. distro kernels) to
specify their CPUfreq governor of choice using the kernel command line,
instead of having to wait for the system to fully boot to userspace to
switch using the sysfs interface. This is helpful for 2 reasons:
1. users get to choose the governor that runs during the actual boot;
2. it simplifies the userspace boot procedure a bit (one less thing to
worry about).
To enable this, the first patch moves all governor init calls to
core_initcall, to make sure they are registered by the time the drivers
probe. This should be relatively low impact as registering a governor
is a simple procedure (it gets added to a llist), and all governors
already load at core_initcall anyway when they're set as the default
in Kconfig. This also allows to clean-up the governors' init/exit code,
and reduces boilerplate.
The second patch introduces the new command line parameter, inspired by
its cpuidle counterpart. More details can be found in the respective
patch headers.
Changes in v2:
- added Viresh's ack to patch 01
- moved the assignment of 'default_governor' in patch 02 to the governor
registration path instead of the driver registration (Viresh)
Thanks,
Quentin
Quentin Perret (2):
cpufreq: Register governors at core_initcall
cpufreq: Specify default governor on command line
.../admin-guide/kernel-parameters.txt | 5 ++++
Documentation/admin-guide/pm/cpufreq.rst | 6 ++---
.../platforms/cell/cpufreq_spudemand.c | 26 ++-----------------
drivers/cpufreq/cpufreq.c | 23 ++++++++++++----
drivers/cpufreq/cpufreq_conservative.c | 22 ++++------------
drivers/cpufreq/cpufreq_ondemand.c | 24 +++++------------
drivers/cpufreq/cpufreq_performance.c | 14 ++--------
drivers/cpufreq/cpufreq_powersave.c | 18 +++----------
drivers/cpufreq/cpufreq_userspace.c | 18 +++----------
include/linux/cpufreq.h | 14 ++++++++++
kernel/sched/cpufreq_schedutil.c | 6 +----
11 files changed, 62 insertions(+), 114 deletions(-)
--
2.27.0.111.gc72c7da667-goog
Currently, most CPUFreq governors are registered at core_initcall time
when used as default, and module_init otherwise. In preparation for
letting users specify the default governor on the kernel command line,
change all of them to use core_initcall unconditionally, as is already
the case for schedutil and performance. This will enable us to assume
builtin governors have been registered before the builtin CPUFreq
drivers probe.
And since all governors now have similar init/exit patterns, introduce
two new macros cpufreq_governor_{init,exit}() to factorize the code.
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Quentin Perret <redacted>
---
Note: I couldn't boot-test the change to spudemand, by lack of hardware.
But I can confirm cell_defconfig compiles just fine.
---
.../platforms/cell/cpufreq_spudemand.c | 26 ++-----------------
drivers/cpufreq/cpufreq_conservative.c | 22 ++++------------
drivers/cpufreq/cpufreq_ondemand.c | 24 +++++------------
drivers/cpufreq/cpufreq_performance.c | 14 ++--------
drivers/cpufreq/cpufreq_powersave.c | 18 +++----------
drivers/cpufreq/cpufreq_userspace.c | 18 +++----------
include/linux/cpufreq.h | 14 ++++++++++
kernel/sched/cpufreq_schedutil.c | 6 +----
8 files changed, 36 insertions(+), 106 deletions(-)
Currently, the only way to specify the default CPUfreq governor is via
Kconfig options, which suits users who can build the kernel themselves
perfectly.
However, for those who use a distro-like kernel (such as Android, with
the Generic Kernel Image project), the only way to use a different
default is to boot to userspace, and to then switch using the sysfs
interface. Being able to specify the default governor on the command
line, like is the case for cpuidle, would enable those users to specify
their governor of choice earlier on, and to simplify slighlty the
userspace boot procedure.
To support this use-case, add a kernel command line parameter enabling
to specify a default governor for CPUfreq, which takes precedence over
the builtin default.
This implementation has one notable limitation: the default governor
must be registered before the driver. This is solved for builtin
governors and drivers using appropriate *_initcall() functions. And in
the modular case, this must be reflected as a constraint on the module
loading order.
Signed-off-by: Quentin Perret <redacted>
---
.../admin-guide/kernel-parameters.txt | 5 ++++
Documentation/admin-guide/pm/cpufreq.rst | 6 ++---
drivers/cpufreq/cpufreq.c | 23 +++++++++++++++----
3 files changed, 26 insertions(+), 8 deletions(-)
@@ -703,6 +703,11 @@ cpufreq.off=1 [CPU_FREQ] disable the cpufreq sub-system+ cpufreq.default_governor=+ [CPU_FREQ] Name of the default cpufreq governor to use.+ This governor must be registered in the kernel before+ the cpufreq driver probes.+ cpu_init_udelay=N [X86] Delay for N microsec between assert and de-assert of APIC INIT to start processors. This delay occurs
@@ -147,9 +147,9 @@ CPUs in it. The next major initialization step for a new policy object is to attach a scaling governor to it (to begin with, that is the default scaling governor-determined by the kernel configuration, but it may be changed later-via ``sysfs``). First, a pointer to the new policy object is passed to the-governor's ``->init()`` callback which is expected to initialize all of the+determined by the kernel command line or configuration, but it may be changed+later via ``sysfs``). First, a pointer to the new policy object is passed to+the governor's ``->init()`` callback which is expected to initialize all of the data structures necessary to handle the given policy and, possibly, to add a governor ``sysfs`` interface to it. Next, the governor is started by invoking its ``->start()`` callback.
@@ -1065,8 +1067,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)if(gov){pr_debug("Restoring governor %s for cpu %d\n",policy->governor->name,policy->cpu);-}elseif(def_gov){-gov=def_gov;+}elseif(default_governor){+gov=default_governor;}else{return-ENODATA;}
@@ -1074,8 +1076,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)/* Use the default policy if there is no last_policy. */if(policy->last_policy){pol=policy->last_policy;-}elseif(def_gov){-pol=cpufreq_parse_policy(def_gov->name);+}elseif(default_governor){+pol=cpufreq_parse_policy(default_governor->name);/**Incasethedefaultgovernorisneiter"performance"*nor"powersave",fallbacktotheinitialpolicy
@@ -2320,6 +2322,9 @@ int cpufreq_register_governor(struct cpufreq_governor *governor)list_add(&governor->governor_list,&cpufreq_governor_list);}+if(!strncasecmp(cpufreq_param_governor,governor->name,CPUFREQ_NAME_LEN))+default_governor=governor;+mutex_unlock(&cpufreq_governor_mutex);returnerr;}
This series enables users of prebuilt kernels (e.g. distro kernels) to
specify their CPUfreq governor of choice using the kernel command line,
instead of having to wait for the system to fully boot to userspace to
switch using the sysfs interface. This is helpful for 2 reasons:
1. users get to choose the governor that runs during the actual boot;
2. it simplifies the userspace boot procedure a bit (one less thing to
worry about).
To enable this, the first patch moves all governor init calls to
core_initcall, to make sure they are registered by the time the drivers
probe. This should be relatively low impact as registering a governor
is a simple procedure (it gets added to a llist), and all governors
already load at core_initcall anyway when they're set as the default
in Kconfig. This also allows to clean-up the governors' init/exit code,
and reduces boilerplate.
The second patch introduces the new command line parameter, inspired by
its cpuidle counterpart. More details can be found in the respective
patch headers.
Changes in v2:
- added Viresh's ack to patch 01
- moved the assignment of 'default_governor' in patch 02 to the governor
registration path instead of the driver registration (Viresh)
Thanks,
Quentin
Quentin Perret (2):
cpufreq: Register governors at core_initcall
cpufreq: Specify default governor on command line
.../admin-guide/kernel-parameters.txt | 5 ++++
Documentation/admin-guide/pm/cpufreq.rst | 6 ++---
.../platforms/cell/cpufreq_spudemand.c | 26 ++-----------------
drivers/cpufreq/cpufreq.c | 23 ++++++++++++----
drivers/cpufreq/cpufreq_conservative.c | 22 ++++------------
drivers/cpufreq/cpufreq_ondemand.c | 24 +++++------------
drivers/cpufreq/cpufreq_performance.c | 14 ++--------
drivers/cpufreq/cpufreq_powersave.c | 18 +++----------
drivers/cpufreq/cpufreq_userspace.c | 18 +++----------
include/linux/cpufreq.h | 14 ++++++++++
kernel/sched/cpufreq_schedutil.c | 6 +----
11 files changed, 62 insertions(+), 114 deletions(-)
--
2.27.0.111.gc72c7da667-goog
Hi Quentin,
Because I am lazy and sometimes do not want to recompile
the distro source, I have a need/desire for this.
Tested these two grub command lines:
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 consoleblank=300 intel_pstate=disable cpufreq.default_governor=schedutil cpuidle_sysfs_switch cpuidle.governor=teo"
And
#GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 consoleblank=450 intel_pstate=passive cpufreq.default_governor=schedutil cpuidle_sysfs_switch cpuidle.governor=teo"
And all worked as expected. I use Ubuntu as my distro, and also had to disable a startup script that switches to "ondemand", or similar, after 1 minute.
As a side note (separate subject, but is one reason I tried it):
My i5-9600K based computer seems to hit a power limit during boot approximately 3 seconds after kernel selection on grub.
This had no effect on that issue (even when selecting powersave governor).
... Doug
Hi Doug,
On Tuesday 23 Jun 2020 at 10:54:33 (-0700), Doug Smythies wrote:
Hi Quentin,
Because I am lazy and sometimes do not want to recompile
the distro source, I have a need/desire for this.
Good to know I'm not the only one ;-)
Tested these two grub command lines:
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 consoleblank=300 intel_pstate=disable cpufreq.default_governor=schedutil cpuidle_sysfs_switch cpuidle.governor=teo"
And
#GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 consoleblank=450 intel_pstate=passive cpufreq.default_governor=schedutil cpuidle_sysfs_switch cpuidle.governor=teo"
And all worked as expected. I use Ubuntu as my distro, and also had to disable a startup script that switches to "ondemand", or similar, after 1 minute.
Good, thanks for giving it a try.
As a side note (separate subject, but is one reason I tried it):
My i5-9600K based computer seems to hit a power limit during boot approximately 3 seconds after kernel selection on grub.
This had no effect on that issue (even when selecting powersave governor).
Interesting ... Could you confirm that compiling with powersave as
default doesn't fix the issue either?
Other question, when does the intel_pstate driver start on your device?
Before or after that 3 seconds boot time?
Thanks,
Quentin
And all worked as expected. I use Ubuntu as my distro, and also had to disable a startup script that
switches to "ondemand", or similar, after 1 minute.
Good, thanks for giving it a try.
quoted
As a side note (separate subject, but is one reason I tried it):
My i5-9600K based computer seems to hit a power limit during boot approximately 3 seconds after
kernel selection on grub.
quoted
This had no effect on that issue (even when selecting powersave governor).
Interesting ... Could you confirm that compiling with powersave as
default doesn't fix the issue either?
No, it doesn't (good idea for a test though).
However, the big mains spike is also gone. So, I no longer know why those power
limit log bits are always set after boot.
Other question, when does the intel_pstate driver start on your device?
Before or after that 3 seconds boot time?
Before, if I understand correctly (from dmesg):
[ 0.468969] intel_pstate: Intel P-state driver initializing
I'll attach a couple of annotated mains power graphs.
(which will likely get stripped from the on-list version of this e-mail).
Currently, I am drowning in stuff that doesn't work, and will put
this aside for now. I'll revive this as a new thread or a bugzilla
eventually.
I also tried booting with turbo disabled, no difference.
Thanks for this patch set.
... Doug
Currently, the only way to specify the default CPUfreq governor is via
Kconfig options, which suits users who can build the kernel themselves
perfectly.
However, for those who use a distro-like kernel (such as Android, with
the Generic Kernel Image project), the only way to use a different
default is to boot to userspace, and to then switch using the sysfs
interface. Being able to specify the default governor on the command
line, like is the case for cpuidle, would enable those users to specify
their governor of choice earlier on, and to simplify slighlty the
userspace boot procedure.
To support this use-case, add a kernel command line parameter enabling
to specify a default governor for CPUfreq, which takes precedence over
the builtin default.
This implementation has one notable limitation: the default governor
must be registered before the driver. This is solved for builtin
governors and drivers using appropriate *_initcall() functions. And in
the modular case, this must be reflected as a constraint on the module
loading order.
Signed-off-by: Quentin Perret <redacted>
---
.../admin-guide/kernel-parameters.txt | 5 ++++
Documentation/admin-guide/pm/cpufreq.rst | 6 ++---
drivers/cpufreq/cpufreq.c | 23 +++++++++++++++----
3 files changed, 26 insertions(+), 8 deletions(-)
@@ -703,6 +703,11 @@ cpufreq.off=1 [CPU_FREQ] disable the cpufreq sub-system+ cpufreq.default_governor=+ [CPU_FREQ] Name of the default cpufreq governor to use.+ This governor must be registered in the kernel before+ the cpufreq driver probes.+ cpu_init_udelay=N [X86] Delay for N microsec between assert and de-assert of APIC INIT to start processors. This delay occurs
@@ -147,9 +147,9 @@ CPUs in it. The next major initialization step for a new policy object is to attach a scaling governor to it (to begin with, that is the default scaling governor-determined by the kernel configuration, but it may be changed later-via ``sysfs``). First, a pointer to the new policy object is passed to the-governor's ``->init()`` callback which is expected to initialize all of the+determined by the kernel command line or configuration, but it may be changed+later via ``sysfs``). First, a pointer to the new policy object is passed to+the governor's ``->init()`` callback which is expected to initialize all of the data structures necessary to handle the given policy and, possibly, to add a governor ``sysfs`` interface to it. Next, the governor is started by invoking its ``->start()`` callback.
@@ -1065,8 +1067,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)if(gov){pr_debug("Restoring governor %s for cpu %d\n",policy->governor->name,policy->cpu);-}elseif(def_gov){-gov=def_gov;+}elseif(default_governor){+gov=default_governor;}else{return-ENODATA;}
@@ -1074,8 +1076,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)/* Use the default policy if there is no last_policy. */if(policy->last_policy){pol=policy->last_policy;-}elseif(def_gov){-pol=cpufreq_parse_policy(def_gov->name);+}elseif(default_governor){+pol=cpufreq_parse_policy(default_governor->name);/**Incasethedefaultgovernorisneiter"performance"*nor"powersave",fallbacktotheinitialpolicy
@@ -2320,6 +2322,9 @@ int cpufreq_register_governor(struct cpufreq_governor *governor)list_add(&governor->governor_list,&cpufreq_governor_list);}+if(!strncasecmp(cpufreq_param_governor,governor->name,CPUFREQ_NAME_LEN))+default_governor=governor;+mutex_unlock(&cpufreq_governor_mutex);returnerr;}
From: "Rafael J. Wysocki" <rafael@kernel.org> Date: 2020-06-24 12:51:21
On Wed, Jun 24, 2020 at 7:50 AM Viresh Kumar [off-list ref] wrote:
On 23-06-20, 15:21, Quentin Perret wrote:
quoted
Currently, the only way to specify the default CPUfreq governor is via
Kconfig options, which suits users who can build the kernel themselves
perfectly.
However, for those who use a distro-like kernel (such as Android, with
the Generic Kernel Image project), the only way to use a different
default is to boot to userspace, and to then switch using the sysfs
interface. Being able to specify the default governor on the command
line, like is the case for cpuidle, would enable those users to specify
their governor of choice earlier on, and to simplify slighlty the
userspace boot procedure.
To support this use-case, add a kernel command line parameter enabling
to specify a default governor for CPUfreq, which takes precedence over
the builtin default.
This implementation has one notable limitation: the default governor
must be registered before the driver. This is solved for builtin
governors and drivers using appropriate *_initcall() functions. And in
the modular case, this must be reflected as a constraint on the module
loading order.
Signed-off-by: Quentin Perret <redacted>
---
.../admin-guide/kernel-parameters.txt | 5 ++++
Documentation/admin-guide/pm/cpufreq.rst | 6 ++---
drivers/cpufreq/cpufreq.c | 23 +++++++++++++++----
3 files changed, 26 insertions(+), 8 deletions(-)
@@ -703,6 +703,11 @@ cpufreq.off=1 [CPU_FREQ] disable the cpufreq sub-system+ cpufreq.default_governor=+ [CPU_FREQ] Name of the default cpufreq governor to use.+ This governor must be registered in the kernel before+ the cpufreq driver probes.+ cpu_init_udelay=N [X86] Delay for N microsec between assert and de-assert of APIC INIT to start processors. This delay occurs
@@ -147,9 +147,9 @@ CPUs in it. The next major initialization step for a new policy object is to attach a scaling governor to it (to begin with, that is the default scaling governor-determined by the kernel configuration, but it may be changed later-via ``sysfs``). First, a pointer to the new policy object is passed to the-governor's ``->init()`` callback which is expected to initialize all of the+determined by the kernel command line or configuration, but it may be changed+later via ``sysfs``). First, a pointer to the new policy object is passed to+the governor's ``->init()`` callback which is expected to initialize all of the data structures necessary to handle the given policy and, possibly, to add a governor ``sysfs`` interface to it. Next, the governor is started by invoking its ``->start()`` callback.
@@ -1065,8 +1067,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)if(gov){pr_debug("Restoring governor %s for cpu %d\n",policy->governor->name,policy->cpu);-}elseif(def_gov){-gov=def_gov;+}elseif(default_governor){+gov=default_governor;}else{return-ENODATA;}
@@ -1074,8 +1076,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)/* Use the default policy if there is no last_policy. */if(policy->last_policy){pol=policy->last_policy;-}elseif(def_gov){-pol=cpufreq_parse_policy(def_gov->name);+}elseif(default_governor){+pol=cpufreq_parse_policy(default_governor->name);/**Incasethedefaultgovernorisneiter"performance"*nor"powersave",fallbacktotheinitialpolicy
@@ -2320,6 +2322,9 @@ int cpufreq_register_governor(struct cpufreq_governor *governor)list_add(&governor->governor_list,&cpufreq_governor_list);}+if(!strncasecmp(cpufreq_param_governor,governor->name,CPUFREQ_NAME_LEN))+default_governor=governor;+mutex_unlock(&cpufreq_governor_mutex);returnerr;}
On Wednesday 24 Jun 2020 at 14:51:04 (+0200), Rafael J. Wysocki wrote:
On Wed, Jun 24, 2020 at 7:50 AM Viresh Kumar [off-list ref] wrote:
quoted
quoted
@@ -2789,7 +2796,13 @@ static int __init cpufreq_core_init(void) cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj); BUG_ON(!cpufreq_global_kobject);+ mutex_lock(&cpufreq_governor_mutex);+ if (!default_governor)+ default_governor = cpufreq_default_governor();+ mutex_unlock(&cpufreq_governor_mutex);
I don't think locking is required here at core-initcall level.
It isn't necessary AFAICS, but it may as well be regarded as
annotation (kind of instead of having a comment explaining why it need
not be used).
Right, but I must admit that, looking at this more, I'm getting a bit
confused with the overall locking for governors :/
When in cpufreq_init_policy() we find a governor using
find_governor(policy->last_governor), what guarantees this governor is
not concurrently unregistered? That is, what guarantees this governor
doesn't go away between that find_governor() call, and the subsequent
call to try_module_get() in cpufreq_set_policy() down the line?
Can we somewhat assume that whatever governor is referred to by
policy->last_governor will have a non-null refcount? Or are the
cpufreq_online() and cpufreq_unregister_governor() path mutually
exclusive? Or is there something else?
Thanks,
Quentin
Right, but I must admit that, looking at this more, I'm getting a bit
confused with the overall locking for governors :/
When in cpufreq_init_policy() we find a governor using
find_governor(policy->last_governor), what guarantees this governor is
not concurrently unregistered? That is, what guarantees this governor
doesn't go away between that find_governor() call, and the subsequent
call to try_module_get() in cpufreq_set_policy() down the line?
Can we somewhat assume that whatever governor is referred to by
policy->last_governor will have a non-null refcount? Or are the
cpufreq_online() and cpufreq_unregister_governor() path mutually
exclusive? Or is there something else?
This should be sufficient to fix pending issues I believe. Based over your
patches.
--
viresh
-------------------------8<-------------------------
From: Viresh Kumar <viresh.kumar@linaro.org>
Date: Thu, 25 Jun 2020 13:15:23 +0530
Subject: [PATCH] cpufreq: Fix locking issues with governors
The locking around governors handling isn't adequate currently. The list
of governors should never be traversed without locking in place. Also we
must make sure the governor isn't removed while it is still referenced
by code.
Reported-by: Quentin Perret <redacted>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
drivers/cpufreq/cpufreq.c | 59 ++++++++++++++++++++++++---------------
1 file changed, 36 insertions(+), 23 deletions(-)
@@ -1060,11 +1066,14 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy){structcpufreq_governor*gov=NULL;unsignedintpol=CPUFREQ_POLICY_UNKNOWN;+boolput_governor=false;+intret;if(has_target()){/* Update policy governor to the one used before hotplug. */-gov=find_governor(policy->last_governor);+gov=get_governor(policy->last_governor);if(gov){+put_governor=true;pr_debug("Restoring governor %s for cpu %d\n",policy->governor->name,policy->cpu);}elseif(default_governor){
@@ -1091,7 +1100,11 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)return-ENODATA;}-returncpufreq_set_policy(policy,gov,pol);+ret=cpufreq_set_policy(policy,gov,pol);+if(put_governor)+module_put(gov->owner);++returnret;}staticintcpufreq_add_policy_cpu(structcpufreq_policy*policy,unsignedintcpu)
From: "Rafael J. Wysocki" <rafael@kernel.org> Date: 2020-06-25 10:53:01
On Thu, Jun 25, 2020 at 10:50 AM Viresh Kumar [off-list ref] wrote:
On 24-06-20, 16:32, Quentin Perret wrote:
quoted
Right, but I must admit that, looking at this more, I'm getting a bit
confused with the overall locking for governors :/
When in cpufreq_init_policy() we find a governor using
find_governor(policy->last_governor), what guarantees this governor is
not concurrently unregistered? That is, what guarantees this governor
doesn't go away between that find_governor() call, and the subsequent
call to try_module_get() in cpufreq_set_policy() down the line?
Can we somewhat assume that whatever governor is referred to by
policy->last_governor will have a non-null refcount? Or are the
cpufreq_online() and cpufreq_unregister_governor() path mutually
exclusive? Or is there something else?
This should be sufficient to fix pending issues I believe. Based over your
patches.
LGTM, but can you post it in a new thread to let Patchwork pick it up?
quoted hunk
-------------------------8<-------------------------
From: Viresh Kumar <viresh.kumar@linaro.org>
Date: Thu, 25 Jun 2020 13:15:23 +0530
Subject: [PATCH] cpufreq: Fix locking issues with governors
The locking around governors handling isn't adequate currently. The list
of governors should never be traversed without locking in place. Also we
must make sure the governor isn't removed while it is still referenced
by code.
Reported-by: Quentin Perret <redacted>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
drivers/cpufreq/cpufreq.c | 59 ++++++++++++++++++++++++---------------
1 file changed, 36 insertions(+), 23 deletions(-)
@@ -1060,11 +1066,14 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy){structcpufreq_governor*gov=NULL;unsignedintpol=CPUFREQ_POLICY_UNKNOWN;+boolput_governor=false;+intret;if(has_target()){/* Update policy governor to the one used before hotplug. */-gov=find_governor(policy->last_governor);+gov=get_governor(policy->last_governor);if(gov){+put_governor=true;pr_debug("Restoring governor %s for cpu %d\n",policy->governor->name,policy->cpu);}elseif(default_governor){
@@ -1091,7 +1100,11 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)return-ENODATA;}-returncpufreq_set_policy(policy,gov,pol);+ret=cpufreq_set_policy(policy,gov,pol);+if(put_governor)+module_put(gov->owner);++returnret;}staticintcpufreq_add_policy_cpu(structcpufreq_policy*policy,unsignedintcpu)
@@ -1065,8 +1067,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)if(gov){pr_debug("Restoring governor %s for cpu %d\n",policy->governor->name,policy->cpu);-}elseif(def_gov){-gov=def_gov;+}elseif(default_governor){+gov=default_governor;}else{return-ENODATA;}
quoted hunk
@@ -1074,8 +1076,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy) /* Use the default policy if there is no last_policy. */ if (policy->last_policy) { pol = policy->last_policy;- } else if (def_gov) {- pol = cpufreq_parse_policy(def_gov->name);+ } else if (default_governor) {+ pol = cpufreq_parse_policy(default_governor->name);
This change is not right IMO. This part handles the set-policy case,
where there are no governors. Right now this code, for some reasons
unknown to me, forcefully uses the default governor set to indicate
the policy, which is not a great idea in my opinion TBH. This doesn't
and shouldn't care about governor modules and should only be looking
at strings instead of governor pointer.
Rafael, I even think we should remove this code completely and just
rely on what the driver has sent to us. Using the selected governor
for set policy drivers is very confusing and also we shouldn't be
forced to compiling any governor for the set-policy case.
--
viresh
@@ -1065,8 +1067,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)if(gov){pr_debug("Restoring governor %s for cpu %d\n",policy->governor->name,policy->cpu);-}elseif(def_gov){-gov=def_gov;+}elseif(default_governor){+gov=default_governor;}else{return-ENODATA;}
quoted
@@ -1074,8 +1076,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy) /* Use the default policy if there is no last_policy. */ if (policy->last_policy) { pol = policy->last_policy;- } else if (def_gov) {- pol = cpufreq_parse_policy(def_gov->name);+ } else if (default_governor) {+ pol = cpufreq_parse_policy(default_governor->name);
This change is not right IMO. This part handles the set-policy case,
where there are no governors. Right now this code, for some reasons
unknown to me, forcefully uses the default governor set to indicate
the policy, which is not a great idea in my opinion TBH. This doesn't
and shouldn't care about governor modules and should only be looking
at strings instead of governor pointer.
Sounds right.
Rafael, I even think we should remove this code completely and just
rely on what the driver has sent to us. Using the selected governor
for set policy drivers is very confusing and also we shouldn't be
forced to compiling any governor for the set-policy case.
Well, AFAICS the idea was to use the default governor as a kind of
default policy proxy, but I agree that strings should be sufficient
for that.
I'll have a look at what to do with that code.
On Thursday 25 Jun 2020 at 13:44:34 (+0200), Rafael J. Wysocki wrote:
On Thu, Jun 25, 2020 at 1:36 PM Viresh Kumar [off-list ref] wrote:
quoted
This change is not right IMO. This part handles the set-policy case,
where there are no governors. Right now this code, for some reasons
unknown to me, forcefully uses the default governor set to indicate
the policy, which is not a great idea in my opinion TBH. This doesn't
and shouldn't care about governor modules and should only be looking
at strings instead of governor pointer.
Sounds right.
quoted
Rafael, I even think we should remove this code completely and just
rely on what the driver has sent to us. Using the selected governor
for set policy drivers is very confusing and also we shouldn't be
forced to compiling any governor for the set-policy case.
Well, AFAICS the idea was to use the default governor as a kind of
default policy proxy, but I agree that strings should be sufficient
for that.
I agree with all the above. I'd much rather not rely on the default
governor name to populate the default policy, too, so +1 from me.
Thanks,
Quentin
From: "Rafael J. Wysocki" <rafael@kernel.org> Date: 2020-06-25 13:28:57
On Thu, Jun 25, 2020 at 1:53 PM Quentin Perret [off-list ref] wrote:
On Thursday 25 Jun 2020 at 13:44:34 (+0200), Rafael J. Wysocki wrote:
quoted
On Thu, Jun 25, 2020 at 1:36 PM Viresh Kumar [off-list ref] wrote:
quoted
This change is not right IMO. This part handles the set-policy case,
where there are no governors. Right now this code, for some reasons
unknown to me, forcefully uses the default governor set to indicate
the policy, which is not a great idea in my opinion TBH. This doesn't
and shouldn't care about governor modules and should only be looking
at strings instead of governor pointer.
Sounds right.
quoted
Rafael, I even think we should remove this code completely and just
rely on what the driver has sent to us. Using the selected governor
for set policy drivers is very confusing and also we shouldn't be
forced to compiling any governor for the set-policy case.
Well, AFAICS the idea was to use the default governor as a kind of
default policy proxy, but I agree that strings should be sufficient
for that.
I agree with all the above. I'd much rather not rely on the default
governor name to populate the default policy, too, so +1 from me.
So before this series the default governor was selected at the kernel
configuration time (pre-build) and was always built-in. Because it
could not go away, its name could be used to indicate the default
policy for the "setpolicy" drivers.
After this series, however, it cannot be used this way reliably, but
you can still pass cpufreq_param_governor to cpufreq_parse_policy()
instead of def_gov->name in cpufreq_init_policy(), can't you?
On Thursday 25 Jun 2020 at 15:28:43 (+0200), Rafael J. Wysocki wrote:
On Thu, Jun 25, 2020 at 1:53 PM Quentin Perret [off-list ref] wrote:
quoted
On Thursday 25 Jun 2020 at 13:44:34 (+0200), Rafael J. Wysocki wrote:
quoted
On Thu, Jun 25, 2020 at 1:36 PM Viresh Kumar [off-list ref] wrote:
quoted
This change is not right IMO. This part handles the set-policy case,
where there are no governors. Right now this code, for some reasons
unknown to me, forcefully uses the default governor set to indicate
the policy, which is not a great idea in my opinion TBH. This doesn't
and shouldn't care about governor modules and should only be looking
at strings instead of governor pointer.
Sounds right.
quoted
Rafael, I even think we should remove this code completely and just
rely on what the driver has sent to us. Using the selected governor
for set policy drivers is very confusing and also we shouldn't be
forced to compiling any governor for the set-policy case.
Well, AFAICS the idea was to use the default governor as a kind of
default policy proxy, but I agree that strings should be sufficient
for that.
I agree with all the above. I'd much rather not rely on the default
governor name to populate the default policy, too, so +1 from me.
So before this series the default governor was selected at the kernel
configuration time (pre-build) and was always built-in. Because it
could not go away, its name could be used to indicate the default
policy for the "setpolicy" drivers.
After this series, however, it cannot be used this way reliably, but
you can still pass cpufreq_param_governor to cpufreq_parse_policy()
instead of def_gov->name in cpufreq_init_policy(), can't you?
Good point. I also need to fallback to the default builtin governor if
the command line parameter isn't valid (or non-existent), so perhaps
something like so?
iff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index dad6b85f4c89..20a2020abf88 100644
@@ -653,6 +653,23 @@ static unsigned int cpufreq_parse_policy(char *str_governor)returnCPUFREQ_POLICY_UNKNOWN;}+staticunsignedintcpufreq_default_policy(void)+{+unsignedintpol;++pol=cpufreq_parse_policy(cpufreq_param_governor);+if(pol!=CPUFREQ_POLICY_UNKNOWN)+returnpol;++if(IS_BUILTIN(CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE))+returnCPUFREQ_POLICY_PERFORMANCE;++if(IS_BUILTIN(CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE))+returnCPUFREQ_POLICY_POWERSAVE;++returnCPUFREQ_POLICY_UNKNOWN;+}+/***cpufreq_parse_governor-parseagovernorstringonlyforhas_target()*@str_governor:Governorname.
@@ -1085,8 +1102,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)/* Use the default policy if there is no last_policy. */if(policy->last_policy){pol=policy->last_policy;-}elseif(default_governor){-pol=cpufreq_parse_policy(default_governor->name);+}else{+pol=cpufreq_default_policy();/**Incasethedefaultgovernorisneiter"performance"*nor"powersave",fallbacktotheinitialpolicy
From: "Rafael J. Wysocki" <rafael@kernel.org> Date: 2020-06-25 14:08:32
On Thu, Jun 25, 2020 at 3:50 PM Quentin Perret [off-list ref] wrote:
On Thursday 25 Jun 2020 at 15:28:43 (+0200), Rafael J. Wysocki wrote:
quoted
On Thu, Jun 25, 2020 at 1:53 PM Quentin Perret [off-list ref] wrote:
quoted
On Thursday 25 Jun 2020 at 13:44:34 (+0200), Rafael J. Wysocki wrote:
quoted
On Thu, Jun 25, 2020 at 1:36 PM Viresh Kumar [off-list ref] wrote:
quoted
This change is not right IMO. This part handles the set-policy case,
where there are no governors. Right now this code, for some reasons
unknown to me, forcefully uses the default governor set to indicate
the policy, which is not a great idea in my opinion TBH. This doesn't
and shouldn't care about governor modules and should only be looking
at strings instead of governor pointer.
Sounds right.
quoted
Rafael, I even think we should remove this code completely and just
rely on what the driver has sent to us. Using the selected governor
for set policy drivers is very confusing and also we shouldn't be
forced to compiling any governor for the set-policy case.
Well, AFAICS the idea was to use the default governor as a kind of
default policy proxy, but I agree that strings should be sufficient
for that.
I agree with all the above. I'd much rather not rely on the default
governor name to populate the default policy, too, so +1 from me.
So before this series the default governor was selected at the kernel
configuration time (pre-build) and was always built-in. Because it
could not go away, its name could be used to indicate the default
policy for the "setpolicy" drivers.
After this series, however, it cannot be used this way reliably, but
you can still pass cpufreq_param_governor to cpufreq_parse_policy()
instead of def_gov->name in cpufreq_init_policy(), can't you?
Good point. I also need to fallback to the default builtin governor if
the command line parameter isn't valid (or non-existent), so perhaps
something like so?
Yes, that should work if I haven't missed anything.
quoted hunk
iff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index dad6b85f4c89..20a2020abf88 100644
@@ -653,6 +653,23 @@ static unsigned int cpufreq_parse_policy(char *str_governor)returnCPUFREQ_POLICY_UNKNOWN;}+staticunsignedintcpufreq_default_policy(void)+{+unsignedintpol;++pol=cpufreq_parse_policy(cpufreq_param_governor);+if(pol!=CPUFREQ_POLICY_UNKNOWN)+returnpol;++if(IS_BUILTIN(CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE))+returnCPUFREQ_POLICY_PERFORMANCE;++if(IS_BUILTIN(CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE))+returnCPUFREQ_POLICY_POWERSAVE;++returnCPUFREQ_POLICY_UNKNOWN;+}+/***cpufreq_parse_governor-parseagovernorstringonlyforhas_target()*@str_governor:Governorname.
@@ -1085,8 +1102,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)/* Use the default policy if there is no last_policy. */if(policy->last_policy){pol=policy->last_policy;-}elseif(default_governor){-pol=cpufreq_parse_policy(default_governor->name);+}else{+pol=cpufreq_default_policy();/**Incasethedefaultgovernorisneiter"performance"*nor"powersave",fallbacktotheinitialpolicy
On Friday 26 Jun 2020 at 08:23:46 (+0530), Viresh Kumar wrote:
On 23-06-20, 15:21, Quentin Perret wrote:
quoted
@@ -2789,7 +2796,13 @@ static int __init cpufreq_core_init(void) cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj); BUG_ON(!cpufreq_global_kobject);+ mutex_lock(&cpufreq_governor_mutex);+ if (!default_governor)
Also is this check really required ? The pointer will always be NULL
at this point, isn't it ?
Not necessarily in this implementation -- the governors are registered
at core_initcall time too, so I don't think we can assume any ordering
there.
But it looks like your new version has fixed that by design, so I'll go
look at it some more, and try it out.
Thanks for the help!
Quentin