public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: "Yang, Sheng" <sheng.yang@intel.com>
Cc: kvm-devel@lists.sourceforge.net
Subject: Re: [PATCH 3/6] KVM: MMU: Add EPT support
Date: Fri, 18 Apr 2008 08:30:14 -0500	[thread overview]
Message-ID: <4808A266.2000701@codemonkey.ws> (raw)
In-Reply-To: <200804181729.21164.sheng.yang@intel.com>

Yang, Sheng wrote:
> @@ -1048,17 +1071,18 @@ static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 
> *shadow_pte,
>  	 * whether the guest actually used the pte (in order to detect
>  	 * demand paging).
>  	 */
> -	spte = PT_PRESENT_MASK | PT_DIRTY_MASK;
> +	spte = shadow_base_present_pte | shadow_dirty_mask;
>  	if (!speculative)
>  		pte_access |= PT_ACCESSED_MASK;
>  	if (!dirty)
>  		pte_access &= ~ACC_WRITE_MASK;
> -	if (!(pte_access & ACC_EXEC_MASK))
> -		spte |= PT64_NX_MASK;
> -
> -	spte |= PT_PRESENT_MASK;
> +	if (pte_access & ACC_EXEC_MASK) {
> +		if (shadow_x_mask)
> +			spte |= shadow_x_mask;
> +	} else if (shadow_nx_mask)
> +		spte |= shadow_nx_mask;
>   

This looks like it may be a bug.  The old behavior sets NX if 
(pte_access & ACC_EXEC_MASK).  The new behavior unconditionally sets NX 
and never sets PRESENT.  Also, the if (shadow_x_mask) checks are 
unnecessary.  spte |= 0 is a nop.

>  	if (pte_access & ACC_USER_MASK)
> -		spte |= PT_USER_MASK;
> +		spte |= shadow_user_mask;
>  	if (largepage)
>  		spte |= PT_PAGE_SIZE_MASK;
>   

Regards,

Anthony Liguori

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

  reply	other threads:[~2008-04-18 13:30 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-18  9:29 [PATCH 3/6] KVM: MMU: Add EPT support Yang, Sheng
2008-04-18 13:30 ` Anthony Liguori [this message]
2008-04-18 15:16   ` Yang, Sheng
2008-04-18 15:54     ` Anthony Liguori
2008-04-20 13:51       ` Yang, Sheng

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=4808A266.2000701@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=kvm-devel@lists.sourceforge.net \
    --cc=sheng.yang@intel.com \
    /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