[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.9] x86: Introduce a common cpuid_policy_updated()
commit 9aaa2088863d63168986f9e69c0f482839a24d80 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Thu Feb 8 12:11:22 2018 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Feb 8 12:11:22 2018 +0100 x86: Introduce a common cpuid_policy_updated() No practical change at the moment, but future changes will need to react irrespective of guest type. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Reviewed-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> master commit: b357546b43ab87dfb10d740ae637a685134d5e32 master date: 2018-01-05 19:57:07 +0000 --- xen/arch/x86/domain.c | 14 ++++++++++++++ xen/arch/x86/domctl.c | 4 ++-- xen/arch/x86/hvm/hvm.c | 2 -- xen/include/asm-x86/domain.h | 2 ++ 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c index 069c314..75c64e2 100644 --- a/xen/arch/x86/domain.c +++ b/xen/arch/x86/domain.c @@ -466,8 +466,12 @@ int vcpu_initialise(struct vcpu *v) xfree(v->arch.pv_vcpu.trap_ctxt); } else if ( !is_idle_domain(v->domain) ) + { vpmu_initialise(v); + cpuid_policy_updated(v); + } + return rc; } @@ -2452,6 +2456,16 @@ int domain_relinquish_resources(struct domain *d) return 0; } +/* + * Called during vcpu construction, and each time the toolstack changes the + * CPUID configuration for the domain. + */ +void cpuid_policy_updated(struct vcpu *v) +{ + if ( is_hvm_vcpu(v) ) + hvm_cpuid_policy_changed(v); +} + void arch_dump_domain_info(struct domain *d) { paging_dump_domain_info(d); diff --git a/xen/arch/x86/domctl.c b/xen/arch/x86/domctl.c index afa676f..d6b2063 100644 --- a/xen/arch/x86/domctl.c +++ b/xen/arch/x86/domctl.c @@ -294,12 +294,12 @@ static int update_domain_cpuid_info(struct domain *d, break; } - if ( is_hvm_domain(d) && call_policy_changed ) + if ( call_policy_changed ) { struct vcpu *v; for_each_vcpu( d, v ) - hvm_cpuid_policy_changed(v); + cpuid_policy_updated(v); } return 0; diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index bd39e6b..b19299e 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -1509,8 +1509,6 @@ int hvm_vcpu_initialise(struct vcpu *v) hvm_set_guest_tsc(v, 0); } - hvm_cpuid_policy_changed(v); - return 0; fail6: diff --git a/xen/include/asm-x86/domain.h b/xen/include/asm-x86/domain.h index 5f73220..ad52eb2 100644 --- a/xen/include/asm-x86/domain.h +++ b/xen/include/asm-x86/domain.h @@ -79,6 +79,8 @@ void toggle_guest_mode(struct vcpu *); /* x86/64: toggle guest page tables between kernel and user modes. */ void toggle_guest_pt(struct vcpu *); +void cpuid_policy_updated(struct vcpu *v); + /* * Initialise a hypercall-transfer page. The given pointer must be mapped * in Xen virtual address space (accesses are not validated or checked). -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.9 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |