aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq/cpufreq_governor.c
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-02-18 12:40:14 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-03-09 08:41:08 -0500
commit7d5a9956af4ccf7d5cc0cd1f8d27d1691321bfc6 (patch)
treeb88c44858b80d9d9e4f0ad67f639b5ab9589afa1 /drivers/cpufreq/cpufreq_governor.c
parentd1db75fffc22504c586c3fae8d602384ea899340 (diff)
cpufreq: governor: Make governor private data per-policy
Some fields in struct od_cpu_dbs_info_s and struct cs_cpu_dbs_info_s are only used for a limited set of CPUs. Namely, if a policy is shared between multiple CPUs, those fields will only be used for one of them (policy->cpu). This means that they really are per-policy rather than per-CPU and holding room for them in per-CPU data structures is generally wasteful. Also moving those fields into per-policy data structures will allow some significant simplifications to be made going forward. For this reason, introduce struct cs_policy_dbs_info and struct od_policy_dbs_info to hold those fields. Define each of the new structures as an extension of struct policy_dbs_info (such that struct policy_dbs_info is embedded in each of them) and introduce new ->alloc and ->free governor callbacks to allocate and free those structures, respectively, such that ->alloc() will return a pointer to the struct policy_dbs_info embedded in the allocated data structure and ->free() will take that pointer as its argument. With that, modify the code accessing the data fields in question in per-CPU data objects to look for them in the new structures via the struct policy_dbs_info pointer available to it and drop them from struct od_cpu_dbs_info_s and struct cs_cpu_dbs_info_s. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/cpufreq/cpufreq_governor.c')
-rw-r--r--drivers/cpufreq/cpufreq_governor.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/cpufreq/cpufreq_governor.c b/drivers/cpufreq/cpufreq_governor.c
index 4b14f04daa41..6cbc846e3981 100644
--- a/drivers/cpufreq/cpufreq_governor.c
+++ b/drivers/cpufreq/cpufreq_governor.c
@@ -385,8 +385,8 @@ static struct policy_dbs_info *alloc_policy_dbs_info(struct cpufreq_policy *poli
385 struct policy_dbs_info *policy_dbs; 385 struct policy_dbs_info *policy_dbs;
386 int j; 386 int j;
387 387
388 /* Allocate memory for the common information for policy->cpus */ 388 /* Allocate memory for per-policy governor data. */
389 policy_dbs = kzalloc(sizeof(*policy_dbs), GFP_KERNEL); 389 policy_dbs = gov->alloc();
390 if (!policy_dbs) 390 if (!policy_dbs)
391 return NULL; 391 return NULL;
392 392
@@ -421,7 +421,7 @@ static void free_policy_dbs_info(struct cpufreq_policy *policy,
421 j_cdbs->policy_dbs = NULL; 421 j_cdbs->policy_dbs = NULL;
422 j_cdbs->update_util.func = NULL; 422 j_cdbs->update_util.func = NULL;
423 } 423 }
424 kfree(policy_dbs); 424 gov->free(policy_dbs);
425} 425}
426 426
427static int cpufreq_governor_init(struct cpufreq_policy *policy) 427static int cpufreq_governor_init(struct cpufreq_policy *policy)
@@ -582,7 +582,6 @@ static int cpufreq_governor_start(struct cpufreq_policy *policy)
582static int cpufreq_governor_stop(struct cpufreq_policy *policy) 582static int cpufreq_governor_stop(struct cpufreq_policy *policy)
583{ 583{
584 gov_cancel_work(policy); 584 gov_cancel_work(policy);
585
586 return 0; 585 return 0;
587} 586}
588 587