From: Gleb Natapov <gleb@redhat.com>
To: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: Marcelo Tossati <mtosatti@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Cornelia Huck <cornelia.huck@de.ibm.com>,
Heiko Carstens <heiko.carstens@de.ibm.com>,
Martin Schwidefsky <schwidefsky@de.ibm.com>,
KVM <kvm@vger.kernel.org>,
linux-s390 <linux-s390@vger.kernel.org>
Subject: Re: [PATCH 0/8] s390/kvm fixes
Date: Sun, 19 May 2013 11:49:43 +0300 [thread overview]
Message-ID: <20130519084943.GB4725@redhat.com> (raw)
In-Reply-To: <1368794498-2051-1-git-send-email-borntraeger@de.ibm.com>
Hi Christian,
On Fri, May 17, 2013 at 02:41:30PM +0200, Christian Borntraeger wrote:
> Gleb, Paolo, Marcelo,
>
> here are some low level changes to kvm on s390 that we have been
> cooking for a while now.
>
> Patch "s390/pgtable: fix ipte notify bit" will go via Martins
> tree into 3.10, but is included to reduce the amount of merge
> conflicts.
>
> Patch "s390: fix gmap_ipte_notifier vs. software dirty pages"
> will also go via Martins tree into 3.10 and it fixes a hang with
> heavy host paging and KVM. This is optional for merging, but
> makes testing on kvm/next easier.
>
Can I add Martin's ACKs to those two then?
> This series addresses 2 problems:
> - paging of guest prefix page
> - RCU timeouts
>
> The first problem is basically that we must not have the host pte
> invalid or r/o for the guest prefix pages. (everything else has fully
> nested paging but the prefix page must not cause host faults).
> It is not enough to pin the page, also the pte has to be r/w all the
> time. Mlocking is not enough due to memory compaction, malicious
> unmapping etc.
> We use the existing callback mechanism of the s390 page table functions
> to kick guests out of SIE and hold them until this is done. We cant
> use the existing kick functions since we must hold a pgste lock while
> we wait for SIE to exit and IPIs might dead lock.
>
> The second problem is that with KVM on s390 we have seen very long
> RCU stalls due to SIE not exiting on interrupts. Instead of returning
> to SIE, we now force an exit into the kvm module, which then does the
> guest exit/enter magic, fixing rcu.
>
> The whole bunch is probably too complex for 3.10, so please queue for
> 3.11
>
> Christian Borntraeger (5):
> s390/pgtable: fix ipte notify bit
> s390/kvm: Mark if a cpu is in SIE
> s390/kvm: Provide a way to prevent reentering SIE
> s390/kvm: Kick guests out of sie if prefix page host pte is touched
> s390: fix gmap_ipte_notifier vs. software dirty pages
>
> Martin Schwidefsky (3):
> s390/kvm: fix psw rewinding in handle_skey
> s390/kvm: rename RCP_xxx defines to PGSTE_xxx
> s390/kvm: avoid automatic sie reentry
>
> arch/s390/include/asm/kvm_host.h | 8 +++-
> arch/s390/include/asm/pgtable.h | 83 +++++++++++++++++++---------------------
> arch/s390/kernel/asm-offsets.c | 3 ++
> arch/s390/kernel/entry64.S | 80 ++++++++++++++++++--------------------
> arch/s390/kvm/intercept.c | 39 +------------------
> arch/s390/kvm/kvm-s390.c | 81 ++++++++++++++++++++++++++++++++++++++-
> arch/s390/kvm/kvm-s390.h | 5 +++
> arch/s390/kvm/priv.c | 3 +-
> arch/s390/mm/pgtable.c | 5 +--
> 9 files changed, 179 insertions(+), 128 deletions(-)
>
> --
> 1.8.1.4
--
Gleb.
next prev parent reply other threads:[~2013-05-19 8:49 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-17 12:41 [PATCH 0/8] s390/kvm fixes Christian Borntraeger
2013-05-17 12:41 ` [PATCH 1/8] s390/pgtable: fix ipte notify bit Christian Borntraeger
2013-05-17 12:41 ` [PATCH 2/8] s390/kvm: fix psw rewinding in handle_skey Christian Borntraeger
2013-05-17 12:41 ` [PATCH 3/8] s390/kvm: rename RCP_xxx defines to PGSTE_xxx Christian Borntraeger
2013-05-17 12:41 ` [PATCH 4/8] s390/kvm: Mark if a cpu is in SIE Christian Borntraeger
2013-05-17 12:41 ` [PATCH 5/8] s390/kvm: Provide a way to prevent reentering SIE Christian Borntraeger
2013-05-17 12:41 ` [PATCH 6/8] s390/kvm: Kick guests out of sie if prefix page host pte is touched Christian Borntraeger
2013-05-17 12:41 ` [PATCH 7/8] s390/kvm: avoid automatic sie reentry Christian Borntraeger
2013-05-17 12:41 ` [PATCH 8/8] s390: fix gmap_ipte_notifier vs. software dirty pages Christian Borntraeger
2013-05-19 8:49 ` Gleb Natapov [this message]
2013-05-21 6:57 ` [PATCH 0/8] s390/kvm fixes Martin Schwidefsky
2013-05-21 8:56 ` Gleb Natapov
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=20130519084943.GB4725@redhat.com \
--to=gleb@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=cornelia.huck@de.ibm.com \
--cc=heiko.carstens@de.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=linux-s390@vger.kernel.org \
--cc=mtosatti@redhat.com \
--cc=pbonzini@redhat.com \
--cc=schwidefsky@de.ibm.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