From: Xiantao Zhang <xiantao.zhang@intel.com>
To: xen-devel@lists.xen.org
Cc: keir@xen.org, jun.nakajima@intel.com, tim@xen.org,
eddie.dong@intel.com, JBeulich@suse.com,
Zhang Xiantao <xiantao.zhang@intel.com>
Subject: [PATCH v4 06/10] nEPT: Sync PDPTR fields if L2 guest in PAE paging mode
Date: Mon, 24 Dec 2012 22:26:30 +0800 [thread overview]
Message-ID: <1356359194-5321-7-git-send-email-xiantao.zhang@intel.com> (raw)
In-Reply-To: <1356359194-5321-1-git-send-email-xiantao.zhang@intel.com>
From: Zhang Xiantao <xiantao.zhang@intel.com>
For PAE L2 guest, GUEST_DPPTR registers needs to be synced for each virtual
vmentry.
Signed-off-by: Zhang Xiantao <xiantao.zhang@intel.com>
Acked-by: Tim Deegan <tim@xen.org>
---
xen/arch/x86/hvm/vmx/vvmx.c | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/xen/arch/x86/hvm/vmx/vvmx.c b/xen/arch/x86/hvm/vmx/vvmx.c
index f9699dc..7b48436 100644
--- a/xen/arch/x86/hvm/vmx/vvmx.c
+++ b/xen/arch/x86/hvm/vmx/vvmx.c
@@ -859,7 +859,15 @@ static void load_shadow_guest_state(struct vcpu *v)
vvmcs_to_shadow(vvmcs, CR0_GUEST_HOST_MASK);
vvmcs_to_shadow(vvmcs, CR4_GUEST_HOST_MASK);
- /* TODO: PDPTRs for nested ept */
+ if ( nvmx_ept_enabled(v) && hvm_pae_enabled(v) &&
+ (v->arch.hvm_vcpu.guest_efer & EFER_LMA) )
+ {
+ vvmcs_to_shadow(vvmcs, GUEST_PDPTR0);
+ vvmcs_to_shadow(vvmcs, GUEST_PDPTR1);
+ vvmcs_to_shadow(vvmcs, GUEST_PDPTR2);
+ vvmcs_to_shadow(vvmcs, GUEST_PDPTR3);
+ }
+
/* TODO: CR3 target control */
}
--
1.7.1
next prev parent reply other threads:[~2012-12-24 14:26 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-24 14:26 [PATCH v4 00/10] Nested VMX: Add virtual EPT & VPID support to L1 VMM Xiantao Zhang
2012-12-24 14:26 ` [PATCH v4 01/10] nestedhap: Change hostcr3 and p2m->cr3 to meaningful words Xiantao Zhang
2012-12-24 14:26 ` [PATCH v4 02/10] nestedhap: Change nested p2m's walker to vendor-specific Xiantao Zhang
2012-12-24 14:26 ` [PATCH v4 03/10] nested_ept: Implement guest ept's walker Xiantao Zhang
2012-12-24 14:26 ` [PATCH v4 04/10] EPT: Make ept data structure or operations neutral Xiantao Zhang
2012-12-24 14:26 ` [PATCH v4 05/10] nEPT: Try to enable EPT paging for L2 guest Xiantao Zhang
2012-12-24 14:26 ` Xiantao Zhang [this message]
2012-12-24 14:26 ` [PATCH v4 07/10] nEPT: Use minimal permission for nested p2m Xiantao Zhang
2012-12-24 14:26 ` [PATCH v4 08/10] nEPT: handle invept instruction from L1 VMM Xiantao Zhang
2013-01-03 12:03 ` Jan Beulich
2013-01-04 0:57 ` Zhang, Xiantao
2013-01-04 8:24 ` Jan Beulich
2013-01-05 3:19 ` Zhang, Xiantao
2012-12-24 14:26 ` [PATCH v4 09/10] nVMX: virutalize VPID capability to nested VMM Xiantao Zhang
2013-01-03 12:05 ` Jan Beulich
2012-12-24 14:26 ` [PATCH v4 10/10] nEPT: Expose EPT & VPID capablities to L1 VMM Xiantao Zhang
2013-02-12 16:22 ` [PATCH v4 00/10] Nested VMX: Add virtual EPT & VPID support " Ian Jackson
2013-02-12 17:54 ` Nakajima, Jun
2013-02-12 17:56 ` Ian Jackson
2013-02-12 18:20 ` Nakajima, Jun
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1356359194-5321-7-git-send-email-xiantao.zhang@intel.com \
--to=xiantao.zhang@intel.com \
--cc=JBeulich@suse.com \
--cc=eddie.dong@intel.com \
--cc=jun.nakajima@intel.com \
--cc=keir@xen.org \
--cc=tim@xen.org \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).