[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v9 20/20] x86/VPMU: Move VPMU files up from hvm/ directory
Since PMU is now not HVM specific we can move VPMU-related files up from arch/x86/hvm/ directory. Specifically: arch/x86/hvm/vpmu.c -> arch/x86/vpmu.c arch/x86/hvm/svm/vpmu.c -> arch/x86/vpmu_amd.c arch/x86/hvm/vmx/vpmu_core2.c -> arch/x86/vpmu_intel.c include/asm-x86/hvm/vpmu.h -> include/asm-x86/vpmu.h Signed-off-by: Boris Ostrovsky <boris.ostrovsky@xxxxxxxxxx> Acked-by: Kevin Tian <kevin.tian@xxxxxxxxx> Reviewed-by: Dietmar Hahn <dietmar.hahn@xxxxxxxxxxxxxx> Tested-by: Dietmar Hahn <dietmar.hahn@xxxxxxxxxxxxxx> --- xen/arch/x86/Makefile | 1 + xen/arch/x86/hvm/Makefile | 1 - xen/arch/x86/hvm/svm/Makefile | 1 - xen/arch/x86/hvm/vlapic.c | 2 +- xen/arch/x86/hvm/vmx/Makefile | 1 - xen/arch/x86/oprofile/op_model_ppro.c | 2 +- xen/arch/x86/traps.c | 2 +- xen/arch/x86/{hvm => }/vpmu.c | 4 ++-- xen/arch/x86/{hvm/svm/vpmu.c => vpmu_amd.c} | 2 +- xen/arch/x86/{hvm/vmx/vpmu_core2.c => vpmu_intel.c} | 2 +- xen/include/asm-x86/hvm/vmx/vmcs.h | 2 +- xen/include/asm-x86/{hvm => }/vpmu.h | 0 12 files changed, 9 insertions(+), 11 deletions(-) rename xen/arch/x86/{hvm => }/vpmu.c (99%) rename xen/arch/x86/{hvm/svm/vpmu.c => vpmu_amd.c} (99%) rename xen/arch/x86/{hvm/vmx/vpmu_core2.c => vpmu_intel.c} (99%) rename xen/include/asm-x86/{hvm => }/vpmu.h (100%) diff --git a/xen/arch/x86/Makefile b/xen/arch/x86/Makefile index c1e244d..e985cfc 100644 --- a/xen/arch/x86/Makefile +++ b/xen/arch/x86/Makefile @@ -59,6 +59,7 @@ obj-y += crash.o obj-y += tboot.o obj-y += hpet.o obj-y += xstate.o +obj-y += vpmu.o vpmu_amd.o vpmu_intel.o obj-$(crash_debug) += gdbstub.o diff --git a/xen/arch/x86/hvm/Makefile b/xen/arch/x86/hvm/Makefile index eea5555..742b83b 100644 --- a/xen/arch/x86/hvm/Makefile +++ b/xen/arch/x86/hvm/Makefile @@ -22,4 +22,3 @@ obj-y += vlapic.o obj-y += vmsi.o obj-y += vpic.o obj-y += vpt.o -obj-y += vpmu.o \ No newline at end of file diff --git a/xen/arch/x86/hvm/svm/Makefile b/xen/arch/x86/hvm/svm/Makefile index a10a55e..760d295 100644 --- a/xen/arch/x86/hvm/svm/Makefile +++ b/xen/arch/x86/hvm/svm/Makefile @@ -6,4 +6,3 @@ obj-y += nestedsvm.o obj-y += svm.o obj-y += svmdebug.o obj-y += vmcb.o -obj-y += vpmu.o diff --git a/xen/arch/x86/hvm/vlapic.c b/xen/arch/x86/hvm/vlapic.c index f1b543c..b3fe4d3 100644 --- a/xen/arch/x86/hvm/vlapic.c +++ b/xen/arch/x86/hvm/vlapic.c @@ -38,7 +38,7 @@ #include <asm/hvm/support.h> #include <asm/hvm/vmx/vmx.h> #include <asm/hvm/nestedhvm.h> -#include <asm/hvm/vpmu.h> +#include <asm/vpmu.h> #include <public/hvm/ioreq.h> #include <public/hvm/params.h> diff --git a/xen/arch/x86/hvm/vmx/Makefile b/xen/arch/x86/hvm/vmx/Makefile index 373b3d9..04a29ce 100644 --- a/xen/arch/x86/hvm/vmx/Makefile +++ b/xen/arch/x86/hvm/vmx/Makefile @@ -3,5 +3,4 @@ obj-y += intr.o obj-y += realmode.o obj-y += vmcs.o obj-y += vmx.o -obj-y += vpmu_core2.o obj-y += vvmx.o diff --git a/xen/arch/x86/oprofile/op_model_ppro.c b/xen/arch/x86/oprofile/op_model_ppro.c index 9e3510a..8f14d3e 100644 --- a/xen/arch/x86/oprofile/op_model_ppro.c +++ b/xen/arch/x86/oprofile/op_model_ppro.c @@ -19,7 +19,7 @@ #include <asm/processor.h> #include <asm/regs.h> #include <asm/current.h> -#include <asm/hvm/vpmu.h> +#include <asm/vpmu.h> #include "op_x86_model.h" #include "op_counter.h" diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c index c9b6ab8..4f36a55 100644 --- a/xen/arch/x86/traps.c +++ b/xen/arch/x86/traps.c @@ -72,7 +72,7 @@ #include <asm/apic.h> #include <asm/mc146818rtc.h> #include <asm/hpet.h> -#include <asm/hvm/vpmu.h> +#include <asm/vpmu.h> #include <public/arch-x86/cpuid.h> #include <xsm/xsm.h> diff --git a/xen/arch/x86/hvm/vpmu.c b/xen/arch/x86/vpmu.c similarity index 99% rename from xen/arch/x86/hvm/vpmu.c rename to xen/arch/x86/vpmu.c index 3d48a29..c84dada 100644 --- a/xen/arch/x86/hvm/vpmu.c +++ b/xen/arch/x86/vpmu.c @@ -32,7 +32,7 @@ #include <asm/hvm/support.h> #include <asm/hvm/vmx/vmx.h> #include <asm/hvm/vmx/vmcs.h> -#include <asm/hvm/vpmu.h> +#include <asm/vpmu.h> #include <asm/hvm/svm/svm.h> #include <asm/hvm/svm/vmcb.h> #include <asm/apic.h> @@ -587,7 +587,7 @@ static int pvpmu_init(struct domain *d, xen_pmu_params_t *params) else { spin_unlock(&init_lock); - printk(XENLOG_G_ERR "Failed to reserve PMU NMI\n"); + printk("XENLOG_G_ERR Failed to reserve PMU NMI\n"); put_page(page); return -EBUSY; } diff --git a/xen/arch/x86/hvm/svm/vpmu.c b/xen/arch/x86/vpmu_amd.c similarity index 99% rename from xen/arch/x86/hvm/svm/vpmu.c rename to xen/arch/x86/vpmu_amd.c index e2446a9..89943c8 100644 --- a/xen/arch/x86/hvm/svm/vpmu.c +++ b/xen/arch/x86/vpmu_amd.c @@ -29,7 +29,7 @@ #include <xen/irq.h> #include <asm/apic.h> #include <asm/hvm/vlapic.h> -#include <asm/hvm/vpmu.h> +#include <asm/vpmu.h> #include <public/pmu.h> #define MSR_F10H_EVNTSEL_GO_SHIFT 40 diff --git a/xen/arch/x86/hvm/vmx/vpmu_core2.c b/xen/arch/x86/vpmu_intel.c similarity index 99% rename from xen/arch/x86/hvm/vmx/vpmu_core2.c rename to xen/arch/x86/vpmu_intel.c index e8c91eb..cea0022 100644 --- a/xen/arch/x86/hvm/vmx/vpmu_core2.c +++ b/xen/arch/x86/vpmu_intel.c @@ -37,7 +37,7 @@ #include <public/sched.h> #include <public/hvm/save.h> #include <public/pmu.h> -#include <asm/hvm/vpmu.h> +#include <asm/vpmu.h> /* * See Intel SDM Vol 2a Instruction Set Reference chapter 3 for CPUID diff --git a/xen/include/asm-x86/hvm/vmx/vmcs.h b/xen/include/asm-x86/hvm/vmx/vmcs.h index 80bc998..15b37f6 100644 --- a/xen/include/asm-x86/hvm/vmx/vmcs.h +++ b/xen/include/asm-x86/hvm/vmx/vmcs.h @@ -20,7 +20,7 @@ #define __ASM_X86_HVM_VMX_VMCS_H__ #include <asm/hvm/io.h> -#include <asm/hvm/vpmu.h> +#include <asm/vpmu.h> #include <irq_vectors.h> extern void vmcs_dump_vcpu(struct vcpu *v); diff --git a/xen/include/asm-x86/hvm/vpmu.h b/xen/include/asm-x86/vpmu.h similarity index 100% rename from xen/include/asm-x86/hvm/vpmu.h rename to xen/include/asm-x86/vpmu.h -- 1.8.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |