public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: kvm <kvm@vger.kernel.org>,
	Nicolas Prochazka <prochazka.nicolas@gmail.com>
Subject: Re: KVM: MMU: update sp->gfns on pte update path
Date: Tue, 25 Jan 2011 19:36:02 +0200	[thread overview]
Message-ID: <4D3F0A02.3060902@redhat.com> (raw)
In-Reply-To: <20110125171236.GA10388@amt.cnet>

On 01/25/2011 07:12 PM, Marcelo Tosatti wrote:
> >
> >  Should be done by a call to kvm_mmu_page_set_gfn().  But I don't
> >  understand how it could become inconsistent in the first place.
> >
> >      if (is_rmap_spte(*sptep)) {
> >          /*
> >           * If we overwrite a PTE page pointer with a 2MB PMD, unlink
> >           * the parent of the now unreachable PTE.
> >           */
> >          if (level>  PT_PAGE_TABLE_LEVEL&&
> >              !is_large_pte(*sptep)) {
> >              struct kvm_mmu_page *child;
> >              u64 pte = *sptep;
> >
> >              child = page_header(pte&  PT64_BASE_ADDR_MASK);
> >              mmu_page_remove_parent_pte(child, sptep);
> >              __set_spte(sptep, shadow_trap_nonpresent_pte);
> >              kvm_flush_remote_tlbs(vcpu->kvm);
> >          } else if (pfn != spte_to_pfn(*sptep)) {
> >              pgprintk("hfn old %llx new %llx\n",
> >                   spte_to_pfn(*sptep), pfn);
> >              drop_spte(vcpu->kvm, sptep, shadow_trap_nonpresent_pte);
> >              kvm_flush_remote_tlbs(vcpu->kvm);
> >          } else
> >              was_rmapped = 1;
> >      }
> >
> >  If we set was_rmapped, that means rmap_add() was previously called
> >  for this spte/gfn/pfn pair, and all that changes is permissions, no?
>
> What if pfn is the same but gfn differs?

Could be.  Any way to verify if this was the case?

Isn't it nicer to have it detected by the test above and do the 
drop_spte()/kvm_flush_remote_tlbs() thing instead?

-- 
error compiling committee.c: too many arguments to function


  reply	other threads:[~2011-01-25 17:36 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-25 13:07 KVM: MMU: update sp->gfns on pte update path Marcelo Tosatti
2011-01-25 14:32 ` Avi Kivity
2011-01-25 17:12   ` Marcelo Tosatti
2011-01-25 17:36     ` Avi Kivity [this message]
2011-01-31 13:54       ` Marcelo Tosatti

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=4D3F0A02.3060902@redhat.com \
    --to=avi@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    --cc=prochazka.nicolas@gmail.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