Displaying 1 result from an estimated 1 matches for "core2_ctrls_msr".
2012 Feb 29
0
[PATCH] vpmu: cleanup structures
...gt;
# HG changeset patch
# Parent a7bacdc5449a2f7bb9c35b2a1334b463fe9f29a9
diff -r a7bacdc5449a xen/arch/x86/hvm/vmx/vpmu_core2.c
--- a/xen/arch/x86/hvm/vmx/vpmu_core2.c Mon Feb 27 17:05:18 2012 +0000
+++ b/xen/arch/x86/hvm/vmx/vpmu_core2.c Wed Feb 29 10:42:56 2012 +0100
@@ -112,6 +112,11 @@ u32 core2_ctrls_msr[] = {
MSR_IA32_PEBS_ENABLE,
MSR_IA32_DS_AREA};
+struct pmumsr {
+ unsigned int num;
+ u32 *msr;
+};
+
struct pmumsr core2_counters = {
3,
core2_counters_msr
diff -r a7bacdc5449a xen/include/asm-x86/hvm/vpmu.h
--- a/xen/include/asm-x86/hvm/vpmu.h Mon Feb 27 17:05:18 2012...