Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1382345

[PATCH v3 1/2] cpufreq: powernv: Remove flag use-case of policy->driver_data

From Akshay Adiga <akshay.adiga@linux.vnet.ibm.com>
Newsgroups linux.kernel
Subject [PATCH v3 1/2] cpufreq: powernv: Remove flag use-case of policy->driver_data
Date 2016-04-19 12:00 +0200
Message-ID <rpABQ-4Lu-15@gated-at.bofh.it> (permalink)
References <rpABQ-4Lu-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Shilpasri G Bhat <shilpa.bhat@linux.vnet.ibm.com>

commit 1b0289848d5d ("cpufreq: powernv: Add sysfs attributes to show
throttle stats") used policy->driver_data as a flag for one-time creation
of throttle sysfs files. Instead of this use 'kernfs_find_and_get()' to
check if the attribute already exists. This is required as
policy->driver_data is used for other purposes in the later patch.

Signed-off-by: Shilpasri G Bhat <shilpa.bhat@linux.vnet.ibm.com>
Signed-off-by: Akshay Adiga <akshay.adiga@linux.vnet.ibm.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
---
 drivers/cpufreq/powernv-cpufreq.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/cpufreq/powernv-cpufreq.c b/drivers/cpufreq/powernv-cpufreq.c
index 39ac78c..e2e2219 100644
--- a/drivers/cpufreq/powernv-cpufreq.c
+++ b/drivers/cpufreq/powernv-cpufreq.c
@@ -455,13 +455,15 @@ static int powernv_cpufreq_target_index(struct cpufreq_policy *policy,
 static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy)
 {
 	int base, i;
+	struct kernfs_node *kn;
 
 	base = cpu_first_thread_sibling(policy->cpu);
 
 	for (i = 0; i < threads_per_core; i++)
 		cpumask_set_cpu(base + i, policy->cpus);
 
-	if (!policy->driver_data) {
+	kn = kernfs_find_and_get(policy->kobj.sd, throttle_attr_grp.name);
+	if (!kn) {
 		int ret;
 
 		ret = sysfs_create_group(&policy->kobj, &throttle_attr_grp);
@@ -470,11 +472,8 @@ static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy)
 				policy->cpu);
 			return ret;
 		}
-		/*
-		 * policy->driver_data is used as a flag for one-time
-		 * creation of throttle sysfs files.
-		 */
-		policy->driver_data = policy;
+	} else {
+		kernfs_put(kn);
 	}
 	return cpufreq_table_validate_and_show(policy, powernv_freqs);
 }
-- 
2.5.5

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v3 0/2]  cpufreq: powernv: Ramp-down global pstate slower than local-pstate Akshay Adiga <akshay.adiga@linux.vnet.ibm.com> - 2016-04-19 12:00 +0200
  [PATCH v3 1/2] cpufreq: powernv: Remove flag use-case of policy->driver_data Akshay Adiga <akshay.adiga@linux.vnet.ibm.com> - 2016-04-19 12:00 +0200
  [PATCH v3 2/2] cpufreq: powernv: Ramp-down global pstate slower than local-pstate Akshay Adiga <akshay.adiga@linux.vnet.ibm.com> - 2016-04-19 12:00 +0200

csiph-web