提交 184fe4ab 编写于 作者: P Peter Zijlstra 提交者: Ingo Molnar

x86: perf_counter cleanup

Use and actual unsigned long bitmap instead of casting our way around.
Signed-off-by: NPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Jaswinder Singh Rajput <jaswinder@kernel.org>
LKML-Reference: <1236508459.22914.3645.camel@twins>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 880860e3
...@@ -37,7 +37,7 @@ struct cpu_hw_counters { ...@@ -37,7 +37,7 @@ struct cpu_hw_counters {
unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)]; unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
unsigned long interrupts; unsigned long interrupts;
u64 throttle_ctrl; u64 throttle_ctrl;
u64 active_mask; unsigned long active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
int enabled; int enabled;
}; };
...@@ -291,7 +291,7 @@ static void pmc_amd_restore_all(u64 ctrl) ...@@ -291,7 +291,7 @@ static void pmc_amd_restore_all(u64 ctrl)
return; return;
for (idx = 0; idx < nr_counters_generic; idx++) { for (idx = 0; idx < nr_counters_generic; idx++) {
if (test_bit(idx, (unsigned long *)&cpuc->active_mask)) { if (test_bit(idx, cpuc->active_mask)) {
u64 val; u64 val;
rdmsrl(MSR_K7_EVNTSEL0 + idx, val); rdmsrl(MSR_K7_EVNTSEL0 + idx, val);
...@@ -377,7 +377,7 @@ static void pmc_amd_enable(int idx, u64 config) ...@@ -377,7 +377,7 @@ static void pmc_amd_enable(int idx, u64 config)
{ {
struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters); struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
set_bit(idx, (unsigned long *)&cpuc->active_mask); set_bit(idx, cpuc->active_mask);
if (cpuc->enabled) if (cpuc->enabled)
config |= ARCH_PERFMON_EVENTSEL0_ENABLE; config |= ARCH_PERFMON_EVENTSEL0_ENABLE;
...@@ -401,7 +401,7 @@ static void pmc_amd_disable(int idx, u64 config) ...@@ -401,7 +401,7 @@ static void pmc_amd_disable(int idx, u64 config)
{ {
struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters); struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
clear_bit(idx, (unsigned long *)&cpuc->active_mask); clear_bit(idx, cpuc->active_mask);
wrmsrl(MSR_K7_EVNTSEL0 + idx, config); wrmsrl(MSR_K7_EVNTSEL0 + idx, config);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册