Commit 62de1161 authored by Viresh Kumar's avatar Viresh Kumar Committed by Greg Kroah-Hartman

arch_topology: Localize cap_parsing_failed to topology_parse_cpu_capacity()

cap_parsing_failed is only required in topology_parse_cpu_capacity() to
know if we have already tried to allocate raw_capacity and failed, or if
at least one of the cpu_node didn't had the required
"capacity-dmips-mhz" property.

All other users can use raw_capacity instead of cap_parsing_failed.

Make sure we set raw_capacity to NULL after we free it.
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: default avatarJuri Lelli <juri.lelli@arm.com>
Tested-by: default avatarJuri Lelli <juri.lelli@arm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 805df296
...@@ -95,14 +95,21 @@ subsys_initcall(register_cpu_capacity_sysctl); ...@@ -95,14 +95,21 @@ subsys_initcall(register_cpu_capacity_sysctl);
static u32 capacity_scale; static u32 capacity_scale;
static u32 *raw_capacity; static u32 *raw_capacity;
static bool cap_parsing_failed;
static int __init free_raw_capacity(void)
{
kfree(raw_capacity);
raw_capacity = NULL;
return 0;
}
void topology_normalize_cpu_scale(void) void topology_normalize_cpu_scale(void)
{ {
u64 capacity; u64 capacity;
int cpu; int cpu;
if (!raw_capacity || cap_parsing_failed) if (!raw_capacity)
return; return;
pr_debug("cpu_capacity: capacity_scale=%u\n", capacity_scale); pr_debug("cpu_capacity: capacity_scale=%u\n", capacity_scale);
...@@ -121,6 +128,7 @@ void topology_normalize_cpu_scale(void) ...@@ -121,6 +128,7 @@ void topology_normalize_cpu_scale(void)
bool __init topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu) bool __init topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu)
{ {
static bool cap_parsing_failed;
int ret; int ret;
u32 cpu_capacity; u32 cpu_capacity;
...@@ -151,7 +159,7 @@ bool __init topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu) ...@@ -151,7 +159,7 @@ bool __init topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu)
pr_err("cpu_capacity: partial information: fallback to 1024 for all CPUs\n"); pr_err("cpu_capacity: partial information: fallback to 1024 for all CPUs\n");
} }
cap_parsing_failed = true; cap_parsing_failed = true;
kfree(raw_capacity); free_raw_capacity();
} }
return !ret; return !ret;
...@@ -171,7 +179,7 @@ init_cpu_capacity_callback(struct notifier_block *nb, ...@@ -171,7 +179,7 @@ init_cpu_capacity_callback(struct notifier_block *nb,
struct cpufreq_policy *policy = data; struct cpufreq_policy *policy = data;
int cpu; int cpu;
if (cap_parsing_failed || cap_parsing_done) if (!raw_capacity || cap_parsing_done)
return 0; return 0;
if (val != CPUFREQ_NOTIFY) if (val != CPUFREQ_NOTIFY)
...@@ -191,7 +199,7 @@ init_cpu_capacity_callback(struct notifier_block *nb, ...@@ -191,7 +199,7 @@ init_cpu_capacity_callback(struct notifier_block *nb,
if (cpumask_empty(cpus_to_visit)) { if (cpumask_empty(cpus_to_visit)) {
topology_normalize_cpu_scale(); topology_normalize_cpu_scale();
kfree(raw_capacity); free_raw_capacity();
pr_debug("cpu_capacity: parsing done\n"); pr_debug("cpu_capacity: parsing done\n");
cap_parsing_done = true; cap_parsing_done = true;
schedule_work(&parsing_done_work); schedule_work(&parsing_done_work);
...@@ -233,11 +241,5 @@ static void parsing_done_workfn(struct work_struct *work) ...@@ -233,11 +241,5 @@ static void parsing_done_workfn(struct work_struct *work)
} }
#else #else
static int __init free_raw_capacity(void)
{
kfree(raw_capacity);
return 0;
}
core_initcall(free_raw_capacity); core_initcall(free_raw_capacity);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment