* [PATCH] cpufreq: Rename cpufreq_can_do_remote_dvfs()
@ 2018-05-22 10:01 Viresh Kumar
2018-05-24 9:38 ` Rafael J. Wysocki
0 siblings, 1 reply; 2+ messages in thread
From: Viresh Kumar @ 2018-05-22 10:01 UTC (permalink / raw)
To: Rafael Wysocki, Ingo Molnar, Peter Zijlstra
Cc: Viresh Kumar, linux-pm, Vincent Guittot, Rafael J. Wysocki,
linux-kernel
This routine checks if the CPU running this code belongs to the policy
of the target CPU or if not, can it do remote DVFS for it remotely. But
the current name of it implies as if it is only about doing remote
updates.
Rename it to make it more relevant.
Reported-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
drivers/cpufreq/cpufreq_governor.c | 2 +-
include/linux/cpufreq.h | 2 +-
kernel/sched/cpufreq_schedutil.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/cpufreq/cpufreq_governor.c b/drivers/cpufreq/cpufreq_governor.c
index ca38229b045a..871bf9cf55cf 100644
--- a/drivers/cpufreq/cpufreq_governor.c
+++ b/drivers/cpufreq/cpufreq_governor.c
@@ -278,7 +278,7 @@ static void dbs_update_util_handler(struct update_util_data *data, u64 time,
struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
u64 delta_ns, lst;
- if (!cpufreq_can_do_remote_dvfs(policy_dbs->policy))
+ if (!cpufreq_this_cpu_can_update(policy_dbs->policy))
return;
/*
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h
index 87f48dd932eb..882a9b9e34bc 100644
--- a/include/linux/cpufreq.h
+++ b/include/linux/cpufreq.h
@@ -571,7 +571,7 @@ struct governor_attr {
size_t count);
};
-static inline bool cpufreq_can_do_remote_dvfs(struct cpufreq_policy *policy)
+static inline bool cpufreq_this_cpu_can_update(struct cpufreq_policy *policy)
{
/*
* Allow remote callbacks if:
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
index 2442decbfec7..2145655dbd9e 100644
--- a/kernel/sched/cpufreq_schedutil.c
+++ b/kernel/sched/cpufreq_schedutil.c
@@ -89,7 +89,7 @@ static bool sugov_should_update_freq(struct sugov_policy *sg_policy, u64 time)
* schedule the kthread.
*/
if (sg_policy->policy->fast_switch_enabled &&
- !cpufreq_can_do_remote_dvfs(sg_policy->policy))
+ !cpufreq_this_cpu_can_update(sg_policy->policy))
return false;
if (sg_policy->work_in_progress)
--
2.15.0.194.g9af6a3dea062
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] cpufreq: Rename cpufreq_can_do_remote_dvfs()
2018-05-22 10:01 [PATCH] cpufreq: Rename cpufreq_can_do_remote_dvfs() Viresh Kumar
@ 2018-05-24 9:38 ` Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2018-05-24 9:38 UTC (permalink / raw)
To: Viresh Kumar
Cc: Ingo Molnar, Peter Zijlstra, linux-pm, Vincent Guittot,
Rafael J. Wysocki, linux-kernel
On Tuesday, May 22, 2018 12:01:30 PM CEST Viresh Kumar wrote:
> This routine checks if the CPU running this code belongs to the policy
> of the target CPU or if not, can it do remote DVFS for it remotely. But
> the current name of it implies as if it is only about doing remote
> updates.
>
> Rename it to make it more relevant.
>
> Reported-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
> ---
> drivers/cpufreq/cpufreq_governor.c | 2 +-
> include/linux/cpufreq.h | 2 +-
> kernel/sched/cpufreq_schedutil.c | 2 +-
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/cpufreq/cpufreq_governor.c b/drivers/cpufreq/cpufreq_governor.c
> index ca38229b045a..871bf9cf55cf 100644
> --- a/drivers/cpufreq/cpufreq_governor.c
> +++ b/drivers/cpufreq/cpufreq_governor.c
> @@ -278,7 +278,7 @@ static void dbs_update_util_handler(struct update_util_data *data, u64 time,
> struct policy_dbs_info *policy_dbs = cdbs->policy_dbs;
> u64 delta_ns, lst;
>
> - if (!cpufreq_can_do_remote_dvfs(policy_dbs->policy))
> + if (!cpufreq_this_cpu_can_update(policy_dbs->policy))
> return;
>
> /*
> diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h
> index 87f48dd932eb..882a9b9e34bc 100644
> --- a/include/linux/cpufreq.h
> +++ b/include/linux/cpufreq.h
> @@ -571,7 +571,7 @@ struct governor_attr {
> size_t count);
> };
>
> -static inline bool cpufreq_can_do_remote_dvfs(struct cpufreq_policy *policy)
> +static inline bool cpufreq_this_cpu_can_update(struct cpufreq_policy *policy)
> {
> /*
> * Allow remote callbacks if:
> diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
> index 2442decbfec7..2145655dbd9e 100644
> --- a/kernel/sched/cpufreq_schedutil.c
> +++ b/kernel/sched/cpufreq_schedutil.c
> @@ -89,7 +89,7 @@ static bool sugov_should_update_freq(struct sugov_policy *sg_policy, u64 time)
> * schedule the kthread.
> */
> if (sg_policy->policy->fast_switch_enabled &&
> - !cpufreq_can_do_remote_dvfs(sg_policy->policy))
> + !cpufreq_this_cpu_can_update(sg_policy->policy))
> return false;
>
> if (sg_policy->work_in_progress)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-05-24 9:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-22 10:01 [PATCH] cpufreq: Rename cpufreq_can_do_remote_dvfs() Viresh Kumar
2018-05-24 9:38 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).