Skip to content

Commit 557a701

Browse files
watologo1Dave Jones
authored andcommitted
[CPUFREQ] Fix use after free of struct powernow_k8_data
Easy fix for a regression introduced in 2.6.31. On managed CPUs the cpufreq.c core will call driver->exit(cpu) on the managed cpus and powernow_k8 will free the core's data. Later driver->get(cpu) function might get called trying to read out the current freq of a managed cpu and the NULL pointer check does not work on the freed object -> better set it to NULL. ->get() is unsigned and must return 0 as invalid frequency. Reference: http://bugzilla.kernel.org/show_bug.cgi?id=14391 Signed-off-by: Thomas Renninger <trenn@suse.de> Tested-by: Michal Schmidt <mschmidt@redhat.com> CC: stable@kernel.org Signed-off-by: Dave Jones <davej@redhat.com>
1 parent 292e004 commit 557a701

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arch/x86/kernel/cpu/cpufreq/powernow-k8.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1356,6 +1356,7 @@ static int __devexit powernowk8_cpu_exit(struct cpufreq_policy *pol)
13561356

13571357
kfree(data->powernow_table);
13581358
kfree(data);
1359+
per_cpu(powernow_data, pol->cpu) = NULL;
13591360

13601361
return 0;
13611362
}
@@ -1375,7 +1376,7 @@ static unsigned int powernowk8_get(unsigned int cpu)
13751376
int err;
13761377

13771378
if (!data)
1378-
return -EINVAL;
1379+
return 0;
13791380

13801381
smp_call_function_single(cpu, query_values_on_cpu, &err, true);
13811382
if (err)

0 commit comments

Comments
 (0)