[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [VPID] Invalidate VPID mapping on INVLPG? [PATCH]
Hello,In processors supporting VPID I think we should invalidate the VPID mapping in the TLB after a shadow invlpg (in case EPT is turned off). Signed-off-by: Gianluca Guida <gianluca.guida@xxxxxxxxxxxxx> Gianluca diff -r 483d006cc607 xen/arch/x86/hvm/vmx/vmx.c --- a/xen/arch/x86/hvm/vmx/vmx.c Fri Apr 25 13:46:27 2008 +0100 +++ b/xen/arch/x86/hvm/vmx/vmx.c Wed Apr 30 15:07:48 2008 +0100 @@ -1368,7 +1368,8 @@ static void vmx_invlpg_intercept(unsigne { struct vcpu *curr = current; HVMTRACE_2D(INVLPG, curr, /*invlpga=*/ 0, vaddr); - paging_invlpg(curr, vaddr); + if ( paging_invlpg(curr, vaddr) ) + vpid_sync_vcpu_gva(curr, vaddr); } #define CASE_SET_REG(REG, reg) \ diff -r 483d006cc607 xen/include/asm-x86/hvm/vmx/vmx.h --- a/xen/include/asm-x86/hvm/vmx/vmx.h Fri Apr 25 13:46:27 2008 +0100 +++ b/xen/include/asm-x86/hvm/vmx/vmx.h Wed Apr 30 15:07:48 2008 +0100 @@ -301,6 +301,12 @@ static inline void ept_sync_all(void) void ept_sync_domain(struct domain *d); +static inline void vpid_sync_vcpu_gva(struct vcpu *v, unsigned long gva) +{ + if ( cpu_has_vmx_vpid ) + __invvpid(0, v->arch.hvm_vmx.vpid, (u64)gva); +} + static inline void vpid_sync_vcpu_all(struct vcpu *v) { if ( cpu_has_vmx_vpid ) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |