[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Nested VMX: Add APIs to switch n1/n2 VMCS.
# HG changeset patch # User Eddie Dong <eddie.dong@xxxxxxxxx> # Date 1307607849 -28800 # Node ID 4dba6bd0dfadcfe165877cfc9b193cf5592050b7 # Parent e1633a3071a9d5e4d49f87a6e4f3ec8a529dbb1e Nested VMX: Add APIs to switch n1/n2 VMCS. Signed-off-by: Qing He <qing.he@xxxxxxxxx> Signed-off-by: Eddie Dong <eddie.dong@xxxxxxxxx> Signed-off-by: Tim Deegan <Tim.Deegan@xxxxxxxxxx> Committed-by: Tim Deegan <Tim.Deegan@xxxxxxxxxx> --- diff -r e1633a3071a9 -r 4dba6bd0dfad xen/arch/x86/hvm/vmx/vmcs.c --- a/xen/arch/x86/hvm/vmx/vmcs.c Thu Jun 09 16:24:09 2011 +0800 +++ b/xen/arch/x86/hvm/vmx/vmcs.c Thu Jun 09 16:24:09 2011 +0800 @@ -670,6 +670,30 @@ } } +/* + * Switch VMCS between layer 1 & 2 guest + */ +void vmx_vmcs_switch(struct vmcs_struct *from, struct vmcs_struct *to) +{ + struct arch_vmx_struct *vmx = ¤t->arch.hvm_vmx; + spin_lock(&vmx->vmcs_lock); + + __vmpclear(virt_to_maddr(from)); + __vmptrld(virt_to_maddr(to)); + + vmx->vmcs = to; + vmx->launched = 0; + this_cpu(current_vmcs) = to; + + if ( vmx->hostenv_migrated ) + { + vmx->hostenv_migrated = 0; + vmx_set_host_env(current); + } + + spin_unlock(&vmx->vmcs_lock); +} + static int construct_vmcs(struct vcpu *v) { struct domain *d = v->domain; @@ -1079,6 +1103,13 @@ hvm_migrate_timers(v); hvm_migrate_pirqs(v); vmx_set_host_env(v); + /* + * Both n1 VMCS and n2 VMCS need to update the host environment after + * VCPU migration. The environment of current VMCS is updated in place, + * but the action of another VMCS is deferred till it is switched in. + */ + v->arch.hvm_vmx.hostenv_migrated = 1; + hvm_asid_flush_vcpu(v); } diff -r e1633a3071a9 -r 4dba6bd0dfad xen/include/asm-x86/hvm/vmx/vmcs.h --- a/xen/include/asm-x86/hvm/vmx/vmcs.h Thu Jun 09 16:24:09 2011 +0800 +++ b/xen/include/asm-x86/hvm/vmx/vmcs.h Thu Jun 09 16:24:09 2011 +0800 @@ -123,6 +123,7 @@ struct segment_register vm86_saved_seg[x86_seg_tr + 1]; /* Remember EFLAGS while in virtual 8086 mode */ uint32_t vm86_saved_eflags; + int hostenv_migrated; }; int vmx_create_vmcs(struct vcpu *v); @@ -392,6 +393,7 @@ int vmx_write_guest_msr(u32 msr, u64 val); int vmx_add_guest_msr(u32 msr); int vmx_add_host_load_msr(u32 msr); +void vmx_vmcs_switch(struct vmcs_struct *from, struct vmcs_struct *to); #endif /* ASM_X86_HVM_VMX_VMCS_H__ */ _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |