From: "Michael S. Tsirkin" <mst@redhat.com>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: Avi Kivity <avi@redhat.com>,
Marcelo Tosatti <mtosatti@redhat.com>, kvm <kvm@vger.kernel.org>
Subject: Re: [RFC][PATCH] KVM: Introduce direct MSI message injection for in-kernel irqchips
Date: Mon, 24 Oct 2011 18:05:26 +0200 [thread overview]
Message-ID: <20111024160526.GA30385@redhat.com> (raw)
In-Reply-To: <4EA57D8B.7020905@siemens.com>
On Mon, Oct 24, 2011 at 05:00:27PM +0200, Jan Kiszka wrote:
> On 2011-10-24 16:40, Michael S. Tsirkin wrote:
> > On Mon, Oct 24, 2011 at 03:43:53PM +0200, Jan Kiszka wrote:
> >> On 2011-10-24 15:11, Jan Kiszka wrote:
> >>> On 2011-10-24 14:43, Michael S. Tsirkin wrote:
> >>>> On Mon, Oct 24, 2011 at 02:06:08PM +0200, Jan Kiszka wrote:
> >>>>> On 2011-10-24 13:09, Avi Kivity wrote:
> >>>>>> On 10/24/2011 12:19 PM, Jan Kiszka wrote:
> >>>>>>>>
> >>>>>>>> With the new feature it may be worthwhile, but I'd like to see the whole
> >>>>>>>> thing, with numbers attached.
> >>>>>>>
> >>>>>>> It's not a performance issue, it's a resource limitation issue: With the
> >>>>>>> new API we can stop worrying about user space device models consuming
> >>>>>>> limited IRQ routes of the KVM subsystem.
> >>>>>>>
> >>>>>>
> >>>>>> Only if those devices are in the same process (or have access to the
> >>>>>> vmfd). Interrupt routing together with irqfd allows you to disaggregate
> >>>>>> the device model. Instead of providing a competing implementation with
> >>>>>> new limitations, we need to remove the limitations of the old
> >>>>>> implementation.
> >>>>>
> >>>>> That depends on where we do the cut. Currently we let the IRQ source
> >>>>> signal an abstract edge on a pre-allocated pseudo IRQ line. But we
> >>>>> cannot build correct MSI-X on top of the current irqfd model as we lack
> >>>>> the level information (for PBA emulation). *)
> >>>>
> >>>>
> >>>> I don't agree here. IMO PBA emulation would need to
> >>>> clear pending bits on interrupt status register read.
> >>>> So clearing pending bits could be done by ioctl from qemu
> >>>> while setting them would be done from irqfd.
> >>>
> >>> How should QEMU know if the reason for "pending" has been cleared at
> >>> device level if the device is outside the scope of QEMU? This model only
> >>> works for PV devices when you agree that spurious IRQs are OK.
> >>>
> >>>>
> >>>>> So we either need to
> >>>>> extend the existing model anyway -- or push per-vector masking back to
> >>>>> the IRQ source. In the latter case, it would be a very good chance to
> >>>>> give up on limited pseudo GSIs with static routes and do MSI messaging
> >>>>> from external IRQ sources to KVM directly.
> >>>>> But all those considerations affect different APIs than what I'm
> >>>>> proposing here. We will always need a way to inject MSIs in the context
> >>>>> of the VM as there will always be scenarios where devices are better run
> >>>>> in that very same context, for performance or simplicity or whatever
> >>>>> reasons. E.g., I could imagine that one would like to execute an
> >>>>> emulated IRQ remapper rather in the hypervisor context than
> >>>>> "over-microkernelized" in a separate process.
> >>>>>
> >>>>> Jan
> >>>>>
> >>>>> *) Realized this while trying to generalize the proposed MSI-X MMIO
> >>>>> acceleration for assigned devices to arbitrary device models, vhost-net,
> >>>>
> >>>> I'm actually working on a qemu patch to get pba emulation working correctly.
> >>>> I think it's doable with existing irqfd.
> >>>
> >>> irqfd has no notion of level. You can only communicate a rising edge and
> >>> then need a side channel for the state of the edge reason.
> >>>
> >>>>
> >>>>> and specifically vfio.
> >>>>
> >>>> Interesting. How would you clear the pseudo interrupt level?
> >>>
> >>> Ideally: not at all (for MSI). If we manage the mask at device level, we
> >>> only need to send the message if there is actually something to deliver
> >>> to the interrupt controller and masked input events would be lost on
> >>> real HW as well.
> >>
> >> This wouldn't work out nicely as well. We rather need a combined model:
> >>
> >> Devices need to maintain the PBA actively, i.e. set & clear them
> >> themselves and do not rely on the core here (with the core being either
> >> QEMU user space or an in-kernel MSI-X MMIO accelerator). The core only
> >> checks the PBA if it is about to deliver some message and refrains from
> >> doing so if the bit became 0 in the meantime (specifically during the
> >> masked period).
> >>
> >> For QEMU device models, that means no additional IOCTLs,
> >> just memory sharing of the PBA which is required anyway.
> >
> > Sorry, I don't understand the above two paragraphs. Maybe I am
> > confused by terminology here. We really only need to check PBA when it's
> > read. Whether the message is delivered only depends on the mask bit.
>
> This is what I have in mind:
> - devices set PBA bit if MSI message cannot be sent due to mask (*)
> - core checks&clears PBA bit on unmask, injects message if bit was set
> - devices clear PBA bit if message reason is resolved before unmask (*)
OK, but practically, when exactly does the device clear PBA?
> The marked (*) lines differ from the current user space model where only
> the core does PBA manipulation (including clearance via a special
> function). Basically, the PBA becomes a communication channel also
> between device and MSI core. And this model also works if core and
> device run in different processes provided they set up the PBA as shared
> memory.
>
> Jan
>
> --
> Siemens AG, Corporate Technology, CT T DE IT 1
> Corporate Competence Center Embedded Linux
next prev parent reply other threads:[~2011-10-24 16:04 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-21 9:19 [RFC][PATCH] KVM: Introduce direct MSI message injection for in-kernel irqchips Jan Kiszka
2011-10-21 9:42 ` Sasha Levin
2011-10-21 11:06 ` Michael S. Tsirkin
2011-10-21 11:51 ` Jan Kiszka
2011-10-21 12:04 ` Michael S. Tsirkin
2011-10-21 13:00 ` Jan Kiszka
2011-10-24 9:45 ` Avi Kivity
2011-10-24 10:19 ` Jan Kiszka
2011-10-24 11:09 ` Avi Kivity
2011-10-24 12:06 ` Jan Kiszka
2011-10-24 12:43 ` Michael S. Tsirkin
2011-10-24 13:11 ` Jan Kiszka
2011-10-24 13:43 ` Jan Kiszka
2011-10-24 14:40 ` Michael S. Tsirkin
2011-10-24 15:00 ` Jan Kiszka
2011-10-24 16:05 ` Michael S. Tsirkin [this message]
2011-10-24 16:10 ` Jan Kiszka
2011-10-24 17:05 ` Michael S. Tsirkin
2011-10-24 17:23 ` Michael S. Tsirkin
2011-10-25 7:24 ` Jan Kiszka
2011-10-25 11:20 ` Michael S. Tsirkin
2011-10-25 11:41 ` Jan Kiszka
2011-10-25 12:05 ` Michael S. Tsirkin
2011-10-25 12:21 ` Jan Kiszka
2011-10-25 13:29 ` Michael S. Tsirkin
2011-10-24 14:25 ` Michael S. Tsirkin
2011-10-25 7:56 ` Avi Kivity
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=20111024160526.GA30385@redhat.com \
--to=mst@redhat.com \
--cc=avi@redhat.com \
--cc=jan.kiszka@siemens.com \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@redhat.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;
as well as URLs for NNTP newsgroup(s).