From: Gleb Natapov <gleb@redhat.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Takuya Yoshikawa <yoshikawa_takuya_b1@lab.ntt.co.jp>,
Alex Williamson <alex.williamson@redhat.com>,
Takuya Yoshikawa <takuya.yoshikawa@gmail.com>,
kvm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/7] KVM: Alleviate mmu_lock hold time when we start dirty logging
Date: Thu, 20 Dec 2012 15:22:55 +0200 [thread overview]
Message-ID: <20121220132255.GH17584@redhat.com> (raw)
In-Reply-To: <20121220125946.GB7750@amt.cnet>
On Thu, Dec 20, 2012 at 10:59:46AM -0200, Marcelo Tosatti wrote:
> On Thu, Dec 20, 2012 at 02:02:32PM +0900, Takuya Yoshikawa wrote:
> > On Wed, 19 Dec 2012 08:42:57 -0700
> > Alex Williamson <alex.williamson@redhat.com> wrote:
> >
> > > Please let me know if you can identify one of these as the culprit.
> > > They're all very simple, but there's always a chance I've missed a hard
> > > coding of slot numbers somewhere. Thanks,
> >
> > I identified the one:
> > commit b7f69c555ca430129b6cde81e9f0927531420c5c
> > KVM: Minor memory slot optimization
> >
> > IIUC, the problem was that you did not care about the generation of
> > slots which was updated by update_memslots():
> >
> > Your patch reused the old memory slots which was there before
> > doing the update for invalidating the slot, and badly, we did flush
> > shadow pages after that before doing the second update for finally
> > installing the new slot. As a result, the generation did not change
> > from that of the invalidated one, although the ghc(gfn to hva cache)
> > might be stale.
> >
> > After that, kvm_write_guest_cached() checked if ghc should be
> > initialized by comparing ghc's generation with that old one,
> > resulting mark_page_dirty_in_slot() was called with the invalid
> > cache contents.
> >
> > Although we can do something to correct the generation alone, I do not
> > think such a trick is worth it because this is not a hot path. Let's
> > just revert the patch.
>
> Agreed. No dependencies by the following patches on it?
Heh, this generation management looks subtle. Would be easy to break by
other changes to the code. I wounder can we make it less subtle somehow.
--
Gleb.
next prev parent reply other threads:[~2012-12-20 13:22 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-18 7:25 [PATCH 0/7] KVM: Alleviate mmu_lock hold time when we start dirty logging Takuya Yoshikawa
2012-12-18 7:26 ` [PATCH 1/7] KVM: Write protect the updated slot only " Takuya Yoshikawa
2012-12-24 13:27 ` Gleb Natapov
2012-12-25 4:08 ` Takuya Yoshikawa
2012-12-25 5:05 ` Gleb Natapov
2012-12-25 5:26 ` Takuya Yoshikawa
2013-01-07 20:11 ` Marcelo Tosatti
2013-01-08 11:50 ` Gleb Natapov
2012-12-18 7:27 ` [PATCH 2/7] KVM: MMU: Remove unused parameter level from __rmap_write_protect() Takuya Yoshikawa
2012-12-18 7:28 ` [PATCH 3/7] KVM: MMU: Make kvm_mmu_slot_remove_write_access() rmap based Takuya Yoshikawa
2012-12-18 7:28 ` [PATCH 4/7] KVM: x86: Remove unused slot_bitmap from kvm_mmu_page Takuya Yoshikawa
2012-12-18 7:29 ` [PATCH 5/7] KVM: Make kvm_mmu_change_mmu_pages() take mmu_lock by itself Takuya Yoshikawa
2012-12-18 7:30 ` [PATCH 6/7] KVM: Make kvm_mmu_slot_remove_write_access() " Takuya Yoshikawa
2012-12-18 7:30 ` [PATCH 7/7] KVM: Conditionally reschedule when kvm_mmu_slot_remove_write_access() takes a long time Takuya Yoshikawa
2012-12-19 12:30 ` [PATCH 0/7] KVM: Alleviate mmu_lock hold time when we start dirty logging Takuya Yoshikawa
2012-12-19 15:42 ` Alex Williamson
2012-12-20 5:02 ` Takuya Yoshikawa
2012-12-20 12:59 ` Marcelo Tosatti
2012-12-20 13:22 ` Gleb Natapov [this message]
2012-12-20 13:41 ` Alex Williamson
2012-12-20 14:35 ` Takuya Yoshikawa
2012-12-20 14:55 ` Alex Williamson
2012-12-21 8:02 ` Takuya Yoshikawa
2012-12-21 8:54 ` Gleb Natapov
2012-12-21 13:24 ` Alex Williamson
2012-12-21 8:05 ` Takuya Yoshikawa
2013-01-07 20:36 ` Marcelo Tosatti
2013-01-08 10:40 ` Takuya Yoshikawa
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=20121220132255.GH17584@redhat.com \
--to=gleb@redhat.com \
--cc=alex.williamson@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mtosatti@redhat.com \
--cc=takuya.yoshikawa@gmail.com \
--cc=yoshikawa_takuya_b1@lab.ntt.co.jp \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.