[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] vpmu: Rename PASSIVE_DOMAIN_ALLOCATED
# HG changeset patch # User Dietmar Hahn <dietmar.hahn@xxxxxxxxxxxxxx> # Date 1328796557 28800 # Node ID 593deed8f62d73dc617f6dd0a95abd05755d002e # Parent 1817738de02198c4bfe31c6e030c6c3924ee1335 vpmu: Rename PASSIVE_DOMAIN_ALLOCATED This patch renames the define PASSIVE_DOMAIN_ALLOCATED to follow the same scheme of the other defines. Signed-off-by: Dietmar Hahn <dietmar.hahn@xxxxxxxxxxxxxx> Committed-by: Keir Fraser <keir@xxxxxxx> --- diff -r 1817738de021 -r 593deed8f62d xen/arch/x86/oprofile/nmi_int.c --- a/xen/arch/x86/oprofile/nmi_int.c Thu Feb 09 06:08:41 2012 -0800 +++ b/xen/arch/x86/oprofile/nmi_int.c Thu Feb 09 06:09:17 2012 -0800 @@ -47,7 +47,7 @@ if ( !model->is_arch_pmu_msr(msr, typep, indexp) ) return 0; - if ( !vpmu_is_set(vpmu, PASSIVE_DOMAIN_ALLOCATED) ) + if ( !vpmu_is_set(vpmu, VPMU_PASSIVE_DOMAIN_ALLOCATED) ) if ( ! model->allocated_msr(current) ) return 0; return 1; @@ -78,7 +78,7 @@ void passive_domain_destroy(struct vcpu *v) { struct vpmu_struct *vpmu = vcpu_vpmu(v); - if ( vpmu_is_set(vpmu, PASSIVE_DOMAIN_ALLOCATED) ) + if ( vpmu_is_set(vpmu, VPMU_PASSIVE_DOMAIN_ALLOCATED) ) model->free_msr(v); } diff -r 1817738de021 -r 593deed8f62d xen/arch/x86/oprofile/op_model_ppro.c --- a/xen/arch/x86/oprofile/op_model_ppro.c Thu Feb 09 06:08:41 2012 -0800 +++ b/xen/arch/x86/oprofile/op_model_ppro.c Thu Feb 09 06:09:17 2012 -0800 @@ -143,7 +143,8 @@ xenoprof_log_event(current, regs, eip, mode, i); wrmsrl(msrs->counters[i].addr, -reset_value[i]); if ( is_passive(current->domain) && (mode != 2) && - vpmu_is_set(vcpu_vpmu(current), PASSIVE_DOMAIN_ALLOCATED) ) + vpmu_is_set(vcpu_vpmu(current), + VPMU_PASSIVE_DOMAIN_ALLOCATED) ) { if ( IS_ACTIVE(msrs_content[i].control) ) { @@ -231,7 +232,7 @@ goto out; vpmu->context = (void *)msr_content; vpmu_clear(vpmu); - vpmu_set(vpmu, PASSIVE_DOMAIN_ALLOCATED); + vpmu_set(vpmu, VPMU_PASSIVE_DOMAIN_ALLOCATED); return 1; out: gdprintk(XENLOG_WARNING, "Insufficient memory for oprofile, oprofile is " @@ -244,10 +245,10 @@ { struct vpmu_struct *vpmu = vcpu_vpmu(v); - if ( !vpmu_is_set(vpmu, PASSIVE_DOMAIN_ALLOCATED) ) + if ( !vpmu_is_set(vpmu, VPMU_PASSIVE_DOMAIN_ALLOCATED) ) return; xfree(vpmu->context); - vpmu_reset(vpmu, PASSIVE_DOMAIN_ALLOCATED); + vpmu_reset(vpmu, VPMU_PASSIVE_DOMAIN_ALLOCATED); } static void ppro_load_msr(struct vcpu *v, int type, int index, u64 *msr_content) diff -r 1817738de021 -r 593deed8f62d xen/include/asm-x86/hvm/vpmu.h --- a/xen/include/asm-x86/hvm/vpmu.h Thu Feb 09 06:08:41 2012 -0800 +++ b/xen/include/asm-x86/hvm/vpmu.h Thu Feb 09 06:09:17 2012 -0800 @@ -68,7 +68,7 @@ #define VPMU_CONTEXT_ALLOCATED 0x1 #define VPMU_CONTEXT_LOADED 0x2 #define VPMU_RUNNING 0x4 -#define PASSIVE_DOMAIN_ALLOCATED 0x8 +#define VPMU_PASSIVE_DOMAIN_ALLOCATED 0x8 #define vpmu_set(_vpmu, _x) ((_vpmu)->flags |= (_x)) #define vpmu_reset(_vpmu, _x) ((_vpmu)->flags &= ~(_x)) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |