From: Scott Wood <scottwood@freescale.com>
To: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: kvm@vger.kernel.org, Alexander Graf <agraf@suse.de>,
kvm-ppc@vger.kernel.org,
Mihai Caraman <mihai.caraman@freescale.com>,
Paul Mackerras <paulus@au1.ibm.com>,
linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH] kvm/ppc/booke64: Hard disable interrupts when entering the guest
Date: Mon, 06 May 2013 23:53:38 +0000 [thread overview]
Message-ID: <1367884418.3398.10@snotra> (raw)
In-Reply-To: <1367787788.11982.58.camel@pasglop> (from benh@kernel.crashing.org on Sun May 5 16:03:08 2013)
On 05/05/2013 04:03:08 PM, Benjamin Herrenschmidt wrote:
> On Fri, 2013-05-03 at 18:45 -0500, Scott Wood wrote:
> > kvmppc_lazy_ee_enable() was causing interrupts to be soft-enabled
> > (albeit hard-disabled) in kvmppc_restart_interrupt(). This led to
> > warnings, and possibly breakage if the interrupt state was later
> saved
> > and then restored (leading to interrupts being hard-and-soft enabled
> > when they should be at least soft-disabled).
> >
> > Simply removing kvmppc_lazy_ee_enable() leaves interrupts only
> > soft-disabled when we enter the guest, but they will be
> hard-disabled
> > when we exit the guest -- without PACA_IRQ_HARD_DIS ever being set,
> so
> > the local_irq_enable() fails to hard-enable.
> >
> > While we could just set PACA_IRQ_HARD_DIS after an exit to
> compensate,
> > instead hard-disable interrupts before entering the guest. This
> way,
> > we won't have to worry about interactions if we take an interrupt
> > during the guest entry code. While I don't see any obvious
> > interactions, it could change in the future (e.g. it would be bad if
> > the non-hv code were used on 64-bit or if 32-bit guest lazy
> interrupt
> > disabling, since the non-hv code changes IVPR among other things).
>
> Shouldn't the interrupts be marked soft-enabled (even if hard
> disabled)
> when entering the guest ?
>
> Ie. The last stage of entry will hard enable, so they should be
> soft-enabled too... if not, latency trackers will consider the whole
> guest periods as "interrupt disabled"...
OK... I guess we already have that problem on 32-bit as well?
> Now, kvmppc_lazy_ee_enable() seems to be clearly bogus to me. It will
> unconditionally set soft_enabled and clear irq_happened from a
> soft-disabled state, thus potentially losing a pending event.
>
> Book3S "HV" seems to be keeping interrupts fully enabled all the way
> until the asm hard disables, which would be fine except that I'm
> worried
> we are racy vs. need_resched & signals.
>
> One thing you may be able to do is call prep_irq_for_idle(). This will
> tell you if something happened, giving you a chance to abort/re-enable
> before you go the guest.
As long as we go straight from IRQs fully enabled to hard-disabled,
before we check for signals and such, I don't think we need that (and
using it would raise the question of what to do on 32-bit).
What if we just take this patch, and add trace_hardirqs_on() just
before entering the guest? This would be similar to what the 32-bit
non-KVM exception return code does (except it would be in C code).
Perhaps we could set soft_enabled as well, but then we'd have to clear
it again before calling kvmppc_restart_interrupt() -- since the KVM
exception handlers don't actually care about soft_enabled (it would
just be for consistency), I'd rather just leave soft_enabled off.
We also don't want PACA_IRQ_HARD_DIS to be cleared the way
prep_irq_for_idle() does, because that's what lets the
local_irq_enable() do the hard-enabling after we exit the guest.
-Scott
WARNING: multiple messages have this Message-ID (diff)
From: Scott Wood <scottwood@freescale.com>
To: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: kvm@vger.kernel.org, Alexander Graf <agraf@suse.de>,
kvm-ppc@vger.kernel.org,
Mihai Caraman <mihai.caraman@freescale.com>,
Paul Mackerras <paulus@au1.ibm.com>,
linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH] kvm/ppc/booke64: Hard disable interrupts when entering the guest
Date: Mon, 6 May 2013 18:53:38 -0500 [thread overview]
Message-ID: <1367884418.3398.10@snotra> (raw)
In-Reply-To: <1367787788.11982.58.camel@pasglop> (from benh@kernel.crashing.org on Sun May 5 16:03:08 2013)
On 05/05/2013 04:03:08 PM, Benjamin Herrenschmidt wrote:
> On Fri, 2013-05-03 at 18:45 -0500, Scott Wood wrote:
> > kvmppc_lazy_ee_enable() was causing interrupts to be soft-enabled
> > (albeit hard-disabled) in kvmppc_restart_interrupt(). This led to
> > warnings, and possibly breakage if the interrupt state was later =20
> saved
> > and then restored (leading to interrupts being hard-and-soft enabled
> > when they should be at least soft-disabled).
> >
> > Simply removing kvmppc_lazy_ee_enable() leaves interrupts only
> > soft-disabled when we enter the guest, but they will be =20
> hard-disabled
> > when we exit the guest -- without PACA_IRQ_HARD_DIS ever being set, =20
> so
> > the local_irq_enable() fails to hard-enable.
> >
> > While we could just set PACA_IRQ_HARD_DIS after an exit to =20
> compensate,
> > instead hard-disable interrupts before entering the guest. This =20
> way,
> > we won't have to worry about interactions if we take an interrupt
> > during the guest entry code. While I don't see any obvious
> > interactions, it could change in the future (e.g. it would be bad if
> > the non-hv code were used on 64-bit or if 32-bit guest lazy =20
> interrupt
> > disabling, since the non-hv code changes IVPR among other things).
>=20
> Shouldn't the interrupts be marked soft-enabled (even if hard =20
> disabled)
> when entering the guest ?
>=20
> Ie. The last stage of entry will hard enable, so they should be
> soft-enabled too... if not, latency trackers will consider the whole
> guest periods as "interrupt disabled"...
OK... I guess we already have that problem on 32-bit as well?
> Now, kvmppc_lazy_ee_enable() seems to be clearly bogus to me. It will
> unconditionally set soft_enabled and clear irq_happened from a
> soft-disabled state, thus potentially losing a pending event.
>=20
> Book3S "HV" seems to be keeping interrupts fully enabled all the way
> until the asm hard disables, which would be fine except that I'm =20
> worried
> we are racy vs. need_resched & signals.
>=20
> One thing you may be able to do is call prep_irq_for_idle(). This will
> tell you if something happened, giving you a chance to abort/re-enable
> before you go the guest.
As long as we go straight from IRQs fully enabled to hard-disabled, =20
before we check for signals and such, I don't think we need that (and =20
using it would raise the question of what to do on 32-bit).
What if we just take this patch, and add trace_hardirqs_on() just =20
before entering the guest? This would be similar to what the 32-bit =20
non-KVM exception return code does (except it would be in C code). =20
Perhaps we could set soft_enabled as well, but then we'd have to clear =20
it again before calling kvmppc_restart_interrupt() -- since the KVM =20
exception handlers don't actually care about soft_enabled (it would =20
just be for consistency), I'd rather just leave soft_enabled off.
We also don't want PACA_IRQ_HARD_DIS to be cleared the way =20
prep_irq_for_idle() does, because that's what lets the =20
local_irq_enable() do the hard-enabling after we exit the guest.
-Scott=
WARNING: multiple messages have this Message-ID (diff)
From: Scott Wood <scottwood@freescale.com>
To: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: kvm@vger.kernel.org, Alexander Graf <agraf@suse.de>,
kvm-ppc@vger.kernel.org,
Mihai Caraman <mihai.caraman@freescale.com>,
Paul Mackerras <paulus@au1.ibm.com>,
linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH] kvm/ppc/booke64: Hard disable interrupts when entering the guest
Date: Mon, 6 May 2013 18:53:38 -0500 [thread overview]
Message-ID: <1367884418.3398.10@snotra> (raw)
In-Reply-To: <1367787788.11982.58.camel@pasglop> (from benh@kernel.crashing.org on Sun May 5 16:03:08 2013)
On 05/05/2013 04:03:08 PM, Benjamin Herrenschmidt wrote:
> On Fri, 2013-05-03 at 18:45 -0500, Scott Wood wrote:
> > kvmppc_lazy_ee_enable() was causing interrupts to be soft-enabled
> > (albeit hard-disabled) in kvmppc_restart_interrupt(). This led to
> > warnings, and possibly breakage if the interrupt state was later
> saved
> > and then restored (leading to interrupts being hard-and-soft enabled
> > when they should be at least soft-disabled).
> >
> > Simply removing kvmppc_lazy_ee_enable() leaves interrupts only
> > soft-disabled when we enter the guest, but they will be
> hard-disabled
> > when we exit the guest -- without PACA_IRQ_HARD_DIS ever being set,
> so
> > the local_irq_enable() fails to hard-enable.
> >
> > While we could just set PACA_IRQ_HARD_DIS after an exit to
> compensate,
> > instead hard-disable interrupts before entering the guest. This
> way,
> > we won't have to worry about interactions if we take an interrupt
> > during the guest entry code. While I don't see any obvious
> > interactions, it could change in the future (e.g. it would be bad if
> > the non-hv code were used on 64-bit or if 32-bit guest lazy
> interrupt
> > disabling, since the non-hv code changes IVPR among other things).
>
> Shouldn't the interrupts be marked soft-enabled (even if hard
> disabled)
> when entering the guest ?
>
> Ie. The last stage of entry will hard enable, so they should be
> soft-enabled too... if not, latency trackers will consider the whole
> guest periods as "interrupt disabled"...
OK... I guess we already have that problem on 32-bit as well?
> Now, kvmppc_lazy_ee_enable() seems to be clearly bogus to me. It will
> unconditionally set soft_enabled and clear irq_happened from a
> soft-disabled state, thus potentially losing a pending event.
>
> Book3S "HV" seems to be keeping interrupts fully enabled all the way
> until the asm hard disables, which would be fine except that I'm
> worried
> we are racy vs. need_resched & signals.
>
> One thing you may be able to do is call prep_irq_for_idle(). This will
> tell you if something happened, giving you a chance to abort/re-enable
> before you go the guest.
As long as we go straight from IRQs fully enabled to hard-disabled,
before we check for signals and such, I don't think we need that (and
using it would raise the question of what to do on 32-bit).
What if we just take this patch, and add trace_hardirqs_on() just
before entering the guest? This would be similar to what the 32-bit
non-KVM exception return code does (except it would be in C code).
Perhaps we could set soft_enabled as well, but then we'd have to clear
it again before calling kvmppc_restart_interrupt() -- since the KVM
exception handlers don't actually care about soft_enabled (it would
just be for consistency), I'd rather just leave soft_enabled off.
We also don't want PACA_IRQ_HARD_DIS to be cleared the way
prep_irq_for_idle() does, because that's what lets the
local_irq_enable() do the hard-enabling after we exit the guest.
-Scott
next prev parent reply other threads:[~2013-05-06 23:53 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-03 23:45 [PATCH] kvm/ppc/booke64: Hard disable interrupts when entering the guest Scott Wood
2013-05-03 23:45 ` Scott Wood
2013-05-03 23:45 ` Scott Wood
2013-05-03 23:53 ` Scott Wood
2013-05-03 23:53 ` Scott Wood
2013-05-03 23:53 ` Scott Wood
2013-05-04 7:11 ` Caraman Mihai Claudiu-B02008
2013-05-04 7:11 ` Caraman Mihai Claudiu-B02008
2013-05-04 7:11 ` Caraman Mihai Claudiu-B02008
2013-05-05 21:03 ` Benjamin Herrenschmidt
2013-05-05 21:03 ` Benjamin Herrenschmidt
2013-05-05 21:03 ` Benjamin Herrenschmidt
2013-05-06 23:53 ` Scott Wood [this message]
2013-05-06 23:53 ` Scott Wood
2013-05-06 23:53 ` Scott Wood
2013-05-07 0:03 ` Benjamin Herrenschmidt
2013-05-07 0:03 ` Benjamin Herrenschmidt
2013-05-07 0:03 ` Benjamin Herrenschmidt
2013-05-07 3:05 ` Scott Wood
2013-05-07 3:05 ` Scott Wood
2013-05-07 3:05 ` Scott Wood
2013-05-07 3:53 ` Benjamin Herrenschmidt
2013-05-07 3:53 ` Benjamin Herrenschmidt
2013-05-07 3:53 ` Benjamin Herrenschmidt
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=1367884418.3398.10@snotra \
--to=scottwood@freescale.com \
--cc=agraf@suse.de \
--cc=benh@kernel.crashing.org \
--cc=kvm-ppc@vger.kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mihai.caraman@freescale.com \
--cc=paulus@au1.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 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.