Skip to content

Commit

Permalink
[CPUFREQ] add missing __percpu markup in pcc-cpufreq.c
Browse files Browse the repository at this point in the history
pcc_cpu_info is a percpu pointer but was missing __percpu markup.
Add it.

Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Dave Jones <davej@redhat.com>
  • Loading branch information
Namhyung Kim authored and Dave Jones committed Aug 12, 2010
1 parent 5af568c commit a3da323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/cpu/cpufreq/pcc-cpufreq.c
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ struct pcc_cpu {
u32 output_offset;
};

static struct pcc_cpu *pcc_cpu_info;
static struct pcc_cpu __percpu *pcc_cpu_info;

static int pcc_cpufreq_verify(struct cpufreq_policy *policy)
{

0 comments on commit a3da323

Please sign in to comment.