Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147244
b: refs/heads/master
c: 184fe4a
h: refs/heads/master
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Mar 8, 2009
1 parent a87699f commit 85ba76b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 880860e392d92c457e8116cdee39ec4d109174ee
refs/heads/master: 184fe4ab1f2e4dfa45584889bb3820031648386b
8 changes: 4 additions & 4 deletions trunk/arch/x86/kernel/cpu/perf_counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct cpu_hw_counters {
unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
unsigned long interrupts;
u64 throttle_ctrl;
u64 active_mask;
unsigned long active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
int enabled;
};

Expand Down Expand Up @@ -291,7 +291,7 @@ static void pmc_amd_restore_all(u64 ctrl)
return;

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;

rdmsrl(MSR_K7_EVNTSEL0 + idx, val);
Expand Down Expand Up @@ -377,7 +377,7 @@ static void pmc_amd_enable(int idx, u64 config)
{
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)
config |= ARCH_PERFMON_EVENTSEL0_ENABLE;

Expand All @@ -401,7 +401,7 @@ static void pmc_amd_disable(int idx, u64 config)
{
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);

}
Expand Down

0 comments on commit 85ba76b

Please sign in to comment.