aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/oprofile/op_model_amd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/oprofile/op_model_amd.c b/arch/x86/oprofile/op_model_amd.c
index fdbed3a0c877..dcfd4505cacc 100644
--- a/arch/x86/oprofile/op_model_amd.c
+++ b/arch/x86/oprofile/op_model_amd.c
@@ -99,7 +99,7 @@ static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
99 99
100#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX 100#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
101 for (i = 0; i < NUM_VIRT_COUNTERS; i++) { 101 for (i = 0; i < NUM_VIRT_COUNTERS; i++) {
102 int hw_counter = i % NUM_CONTROLS; 102 int hw_counter = i % NUM_COUNTERS;
103 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i)) 103 if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
104 msrs->multiplex[i].addr = MSR_K7_PERFCTR0 + hw_counter; 104 msrs->multiplex[i].addr = MSR_K7_PERFCTR0 + hw_counter;
105 else 105 else
@@ -366,7 +366,7 @@ static void op_amd_shutdown(struct op_msrs const * const msrs)
366 if (msrs->counters[i].addr) 366 if (msrs->counters[i].addr)
367 release_perfctr_nmi(MSR_K7_PERFCTR0 + i); 367 release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
368 } 368 }
369 for (i = 0; i < NUM_COUNTERS; ++i) { 369 for (i = 0; i < NUM_CONTROLS; ++i) {
370 if (msrs->controls[i].addr) 370 if (msrs->controls[i].addr)
371 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i); 371 release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
372 } 372 }