summaryrefslogtreecommitdiff
path: root/sys/dev/hwpmc
diff options
context:
space:
mode:
authorJoseph Koshy <jkoshy@FreeBSD.org>2006-03-28 14:09:21 +0000
committerJoseph Koshy <jkoshy@FreeBSD.org>2006-03-28 14:09:21 +0000
commit9282fe9cdbaeb1547112c8da13d6314620f194d4 (patch)
tree52f8ee06ed33e60e13442e94a1b1404a58ee9b74 /sys/dev/hwpmc
parentfe12457335fb9a42d3bef24f9eade62d108d9ec3 (diff)
Notes
Diffstat (limited to 'sys/dev/hwpmc')
-rw-r--r--sys/dev/hwpmc/hwpmc_piv.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/hwpmc/hwpmc_piv.c b/sys/dev/hwpmc/hwpmc_piv.c
index f0701c8e7c357..1a98a3d338b08 100644
--- a/sys/dev/hwpmc/hwpmc_piv.c
+++ b/sys/dev/hwpmc/hwpmc_piv.c
@@ -674,6 +674,7 @@ p4_init(int cpu)
static int
p4_cleanup(int cpu)
{
+ int i;
struct p4_cpu *pcs;
PMCDBG(MDP,INI,0, "p4-cleanup cpu=%d", cpu);
@@ -681,6 +682,11 @@ p4_cleanup(int cpu)
if ((pcs = (struct p4_cpu *) pmc_pcpu[cpu]) == NULL)
return 0;
+ /* Turn off all PMCs on this CPU */
+ for (i = 0; i < P4_NPMCS - 1; i++)
+ wrmsr(P4_CCCR_MSR_FIRST + i,
+ rdmsr(P4_CCCR_MSR_FIRST + i) & ~P4_CCCR_ENABLE);
+
/*
* If the CPU is physical we need to teardown the
* full MD state.