Discussion of the implementations of VIRTIO specification
 help / color / mirror / Atom feed
* [virtio-dev] Fwd: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support multiple interrupt vectors
       [not found]   ` <CA+=e4K5rn7-avNT3e07dfXkh=ZO2+RvthjqW15gZv-uFYrCs3A@mail.gmail.com>
@ 2019-07-22  5:10     ` 李菲
  2019-07-22  8:39     ` [virtio-dev] " Michael S. Tsirkin
  1 sibling, 0 replies; 5+ messages in thread
From: 李菲 @ 2019-07-22  5:10 UTC (permalink / raw)
  To: virtio-dev, Xiongchun Duan

---------- Forwarded message ---------
From: 李菲 <lifei.shirley@bytedance.com>
Date: Mon, Jul 22, 2019 at 11:22 AM
Subject: Re: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support
multiple interrupt vectors
To: Michael S. Tsirkin <mst@redhat.com>, <virtio-dev@lists.oasis-open.org>
Cc: <linux-kernel@vger.kernel.org>, Jason Wang <jasowang@redhat.com>,
Pawel Moll <pawel.moll@arm.com>, Suzuki K Poulose
<suzuki.poulose@arm.com>, Fam Zheng <zhengfeiran@bytedance.com>


On Fri, Jul 19, 2019 at 11:14 PM Michael S. Tsirkin <mst@redhat.com> wrote:
>
> On Fri, Jul 19, 2019 at 09:31:33PM +0800, Fei Li wrote:
> > Hi,
> >
> > This patch series implements multiple interrupt vectors support for
> > virtio-mmio device. This is especially useful for multiqueue vhost-net
> > device when using firecracker micro-vms as the guest.
> >
> > Test result:
> > With 8 vcpus & 8 net queues set, one vhost-net device with 8 irqs can
> > receive 9 times more pps comparing with only one irq:
> > - 564830.38 rxpck/s for 8 irqs on
> > - 67665.06 rxpck/s for 1 irq on
> >
> > Please help to review, thanks!
> >
> > Have a nice day
> > Fei
>
>
> Interesting. The spec says though:
>
>         4.2.3.4
>         Notifications From The Device
>         The memory mapped virtio device is using a single, dedicated interrupt signal, which is asserted when at
>         least one of the bits described in the description of InterruptStatus is set. This is how the device sends a
>         used buffer notification or a configuration change notification to the device.
>
Yes, the spec needs to be updated if we want to use mult-irqs.
>
> So I'm guessing we need to change the host/guest interface?
Just to confirm, does the "the host/guest interface" you mentioned mean how to
pass the irq information from the user space tool to guest kernel?
In this patch, we do this by passing the [irq_start, irq_end]
interface via setting guest
kernel command line, that is done in vm_cmdline_set().
Also there is another way to do this: add two new registers describing irq info
(irq_start & irq_end OR irq_start & irq_numbers) to the virtio config space.

Which one do you prefer?

> If true pls cc virtio-dev.
Sure.
>
> Also, do we need to update dt bindings documentation?
You mean the following doc? Sure. :)
https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/virtio/mmio.txt

Thanks for the review!

Have a nice day
Fei


>
> >
> > Fam Zheng (1):
> >   virtio-mmio: Process vrings more proactively
> >
> > Fei Li (1):
> >   virtio-mmio: support multiple interrupt vectors
> >
> >  drivers/virtio/virtio_mmio.c | 238 +++++++++++++++++++++++++++++++++++--------
> >  1 file changed, 196 insertions(+), 42 deletions(-)
> >
> > --
> > 2.11.0

---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [virtio-dev] Re: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support multiple interrupt vectors
       [not found]   ` <CA+=e4K5rn7-avNT3e07dfXkh=ZO2+RvthjqW15gZv-uFYrCs3A@mail.gmail.com>
  2019-07-22  5:10     ` [virtio-dev] Fwd: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support multiple interrupt vectors 李菲
@ 2019-07-22  8:39     ` Michael S. Tsirkin
  2019-07-22 13:43       ` 李菲
  1 sibling, 1 reply; 5+ messages in thread
From: Michael S. Tsirkin @ 2019-07-22  8:39 UTC (permalink / raw)
  To: 李菲
  Cc: virtio-dev, linux-kernel, Jason Wang, Pawel Moll,
	Suzuki K Poulose, Fam Zheng

On Mon, Jul 22, 2019 at 11:22:02AM +0800, 李菲 wrote:
> On Fri, Jul 19, 2019 at 11:14 PM Michael S. Tsirkin <mst@redhat.com> wrote:
> >
> > On Fri, Jul 19, 2019 at 09:31:33PM +0800, Fei Li wrote:
> > > Hi,
> > >
> > > This patch series implements multiple interrupt vectors support for
> > > virtio-mmio device. This is especially useful for multiqueue vhost-net
> > > device when using firecracker micro-vms as the guest.
> > >
> > > Test result:
> > > With 8 vcpus & 8 net queues set, one vhost-net device with 8 irqs can
> > > receive 9 times more pps comparing with only one irq:
> > > - 564830.38 rxpck/s for 8 irqs on
> > > - 67665.06 rxpck/s for 1 irq on
> > >
> > > Please help to review, thanks!
> > >
> > > Have a nice day
> > > Fei
> >
> >
> > Interesting. The spec says though:
> >
> >         4.2.3.4
> >         Notifications From The Device
> >         The memory mapped virtio device is using a single, dedicated interrupt signal, which is asserted when at
> >         least one of the bits described in the description of InterruptStatus is set. This is how the device sends a
> >         used buffer notification or a configuration change notification to the device.
> >
> Yes, the spec needs to be updated if we want to use mult-irqs.
> >
> > So I'm guessing we need to change the host/guest interface?
> Just to confirm, does the "the host/guest interface" you mentioned mean how to
> pass the irq information from the user space tool to guest kernel?
> In this patch, we do this by passing the [irq_start, irq_end]
> interface via setting guest
> kernel command line, that is done in vm_cmdline_set().
> Also there is another way to do this: add two new registers describing irq info
> (irq_start & irq_end OR irq_start & irq_numbers) to the virtio config space.
> 
> Which one do you prefer?

I'm not sure - so far irq was passed on the command line, right?

The first step in implementing any spec change would be to update qemu
code to virtio 1. Which is not a huge project but so far no one
bothered.


> > If true pls cc virtio-dev.
> Sure.
> >
> > Also, do we need to update dt bindings documentation?
> You mean the following doc? Sure. :)
> https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/virtio/mmio.txt
> 
> Thanks for the review!
> 
> Have a nice day
> Fei
> 
> 
> >
> > >
> > > Fam Zheng (1):
> > >   virtio-mmio: Process vrings more proactively
> > >
> > > Fei Li (1):
> > >   virtio-mmio: support multiple interrupt vectors
> > >
> > >  drivers/virtio/virtio_mmio.c | 238 +++++++++++++++++++++++++++++++++++--------
> > >  1 file changed, 196 insertions(+), 42 deletions(-)
> > >
> > > --
> > > 2.11.0

---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [virtio-dev] Re: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support multiple interrupt vectors
  2019-07-22  8:39     ` [virtio-dev] " Michael S. Tsirkin
@ 2019-07-22 13:43       ` 李菲
  2019-07-30 20:26         ` Michael S. Tsirkin
  0 siblings, 1 reply; 5+ messages in thread
From: 李菲 @ 2019-07-22 13:43 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: virtio-dev, linux-kernel, Jason Wang, Pawel Moll,
	Suzuki K Poulose, Fam Zheng

On Mon, Jul 22, 2019 at 4:39 PM Michael S. Tsirkin <mst@redhat.com> wrote:
>
> On Mon, Jul 22, 2019 at 11:22:02AM +0800, 李菲 wrote:
> > On Fri, Jul 19, 2019 at 11:14 PM Michael S. Tsirkin <mst@redhat.com> wrote:
> > >
> > > On Fri, Jul 19, 2019 at 09:31:33PM +0800, Fei Li wrote:
> > > > Hi,
> > > >
> > > > This patch series implements multiple interrupt vectors support for
> > > > virtio-mmio device. This is especially useful for multiqueue vhost-net
> > > > device when using firecracker micro-vms as the guest.
> > > >
> > > > Test result:
> > > > With 8 vcpus & 8 net queues set, one vhost-net device with 8 irqs can
> > > > receive 9 times more pps comparing with only one irq:
> > > > - 564830.38 rxpck/s for 8 irqs on
> > > > - 67665.06 rxpck/s for 1 irq on
> > > >
> > > > Please help to review, thanks!
> > > >
> > > > Have a nice day
> > > > Fei
> > >
> > >
> > > Interesting. The spec says though:
> > >
> > >         4.2.3.4
> > >         Notifications From The Device
> > >         The memory mapped virtio device is using a single, dedicated interrupt signal, which is asserted when at
> > >         least one of the bits described in the description of InterruptStatus is set. This is how the device sends a
> > >         used buffer notification or a configuration change notification to the device.
> > >
> > Yes, the spec needs to be updated if we want to use mult-irqs.
> > >
> > > So I'm guessing we need to change the host/guest interface?
> > Just to confirm, does the "the host/guest interface" you mentioned mean how to
> > pass the irq information from the user space tool to guest kernel?
> > In this patch, we do this by passing the [irq_start, irq_end]
> > interface via setting guest
> > kernel command line, that is done in vm_cmdline_set().
> > Also there is another way to do this: add two new registers describing irq info
> > (irq_start & irq_end OR irq_start & irq_numbers) to the virtio config space.
> >
> > Which one do you prefer?
>
> I'm not sure - so far irq was passed on the command line, right?
Yes.
>
> The first step in implementing any spec change would be to update qemu
> code to virtio 1. Which is not a huge project but so far no one
> bothered.
Emm, actually I only did the test with using firecracker to start a
micro-vm, but without qemu.
To be honest, the reason why implementing multi-irq on virtio-mmio is
mainly because the
current firecracker using virtio-mmio device and it has no pci thing,
thus no msi/msix to
handle the interruptions.
On the other hand, considering pci is well supported in qemu, I am
wondering whether we
still need this. If needed, we would like to do this. :)

Have a nice day, thanks
Fei
>
>
> > > If true pls cc virtio-dev.
> > Sure.
> > >
> > > Also, do we need to update dt bindings documentation?
> > You mean the following doc? Sure. :)
> > https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/virtio/mmio.txt
> >
> > Thanks for the review!
> >
> > Have a nice day
> > Fei
> >
> >
> > >
> > > >
> > > > Fam Zheng (1):
> > > >   virtio-mmio: Process vrings more proactively
> > > >
> > > > Fei Li (1):
> > > >   virtio-mmio: support multiple interrupt vectors
> > > >
> > > >  drivers/virtio/virtio_mmio.c | 238 +++++++++++++++++++++++++++++++++++--------
> > > >  1 file changed, 196 insertions(+), 42 deletions(-)
> > > >
> > > > --
> > > > 2.11.0

---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [virtio-dev] Re: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support multiple interrupt vectors
  2019-07-22 13:43       ` 李菲
@ 2019-07-30 20:26         ` Michael S. Tsirkin
  2019-07-31  4:04           ` 李菲
  0 siblings, 1 reply; 5+ messages in thread
From: Michael S. Tsirkin @ 2019-07-30 20:26 UTC (permalink / raw)
  To: 李菲
  Cc: virtio-dev, linux-kernel, Jason Wang, Pawel Moll,
	Suzuki K Poulose, Fam Zheng

On Mon, Jul 22, 2019 at 09:43:18PM +0800, 李菲 wrote:
> On Mon, Jul 22, 2019 at 4:39 PM Michael S. Tsirkin <mst@redhat.com> wrote:
> >
> > On Mon, Jul 22, 2019 at 11:22:02AM +0800, 李菲 wrote:
> > > On Fri, Jul 19, 2019 at 11:14 PM Michael S. Tsirkin <mst@redhat.com> wrote:
> > > >
> > > > On Fri, Jul 19, 2019 at 09:31:33PM +0800, Fei Li wrote:
> > > > > Hi,
> > > > >
> > > > > This patch series implements multiple interrupt vectors support for
> > > > > virtio-mmio device. This is especially useful for multiqueue vhost-net
> > > > > device when using firecracker micro-vms as the guest.
> > > > >
> > > > > Test result:
> > > > > With 8 vcpus & 8 net queues set, one vhost-net device with 8 irqs can
> > > > > receive 9 times more pps comparing with only one irq:
> > > > > - 564830.38 rxpck/s for 8 irqs on
> > > > > - 67665.06 rxpck/s for 1 irq on
> > > > >
> > > > > Please help to review, thanks!
> > > > >
> > > > > Have a nice day
> > > > > Fei
> > > >
> > > >
> > > > Interesting. The spec says though:
> > > >
> > > >         4.2.3.4
> > > >         Notifications From The Device
> > > >         The memory mapped virtio device is using a single, dedicated interrupt signal, which is asserted when at
> > > >         least one of the bits described in the description of InterruptStatus is set. This is how the device sends a
> > > >         used buffer notification or a configuration change notification to the device.
> > > >
> > > Yes, the spec needs to be updated if we want to use mult-irqs.
> > > >
> > > > So I'm guessing we need to change the host/guest interface?
> > > Just to confirm, does the "the host/guest interface" you mentioned mean how to
> > > pass the irq information from the user space tool to guest kernel?
> > > In this patch, we do this by passing the [irq_start, irq_end]
> > > interface via setting guest
> > > kernel command line, that is done in vm_cmdline_set().
> > > Also there is another way to do this: add two new registers describing irq info
> > > (irq_start & irq_end OR irq_start & irq_numbers) to the virtio config space.
> > >
> > > Which one do you prefer?
> >
> > I'm not sure - so far irq was passed on the command line, right?
> Yes.
> >
> > The first step in implementing any spec change would be to update qemu
> > code to virtio 1. Which is not a huge project but so far no one
> > bothered.
> Emm, actually I only did the test with using firecracker to start a
> micro-vm, but without qemu.
> To be honest, the reason why implementing multi-irq on virtio-mmio is
> mainly because the
> current firecracker using virtio-mmio device and it has no pci thing,
> thus no msi/msix to
> handle the interruptions.
> On the other hand, considering pci is well supported in qemu, I am
> wondering whether we
> still need this. If needed, we would like to do this. :)
> 
> Have a nice day, thanks
> Fei


Sergio Lopez is now working on updating mmio to v1 support in qemu.
Maybe get in touch with him on how he looks at this extension.

Not asking you to work on qemu, but it makes sense
to get an ack for guest bits from another popular hypervisor.



> >
> >
> > > > If true pls cc virtio-dev.
> > > Sure.
> > > >
> > > > Also, do we need to update dt bindings documentation?
> > > You mean the following doc? Sure. :)
> > > https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/virtio/mmio.txt
> > >
> > > Thanks for the review!
> > >
> > > Have a nice day
> > > Fei
> > >
> > >
> > > >
> > > > >
> > > > > Fam Zheng (1):
> > > > >   virtio-mmio: Process vrings more proactively
> > > > >
> > > > > Fei Li (1):
> > > > >   virtio-mmio: support multiple interrupt vectors
> > > > >
> > > > >  drivers/virtio/virtio_mmio.c | 238 +++++++++++++++++++++++++++++++++++--------
> > > > >  1 file changed, 196 insertions(+), 42 deletions(-)
> > > > >
> > > > > --
> > > > > 2.11.0

---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [virtio-dev] Re: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support multiple interrupt vectors
  2019-07-30 20:26         ` Michael S. Tsirkin
@ 2019-07-31  4:04           ` 李菲
  0 siblings, 0 replies; 5+ messages in thread
From: 李菲 @ 2019-07-31  4:04 UTC (permalink / raw)
  To: Michael S. Tsirkin, Sergio Lopez
  Cc: virtio-dev, linux-kernel, Jason Wang, Pawel Moll,
	Suzuki K Poulose, Fam Zheng, Xiongchun Duan

On Wed, Jul 31, 2019 at 4:26 AM Michael S. Tsirkin <mst@redhat.com> wrote:
>
> On Mon, Jul 22, 2019 at 09:43:18PM +0800, 李菲 wrote:
> > On Mon, Jul 22, 2019 at 4:39 PM Michael S. Tsirkin <mst@redhat.com> wrote:
> > >
> > > On Mon, Jul 22, 2019 at 11:22:02AM +0800, 李菲 wrote:
> > > > On Fri, Jul 19, 2019 at 11:14 PM Michael S. Tsirkin <mst@redhat.com> wrote:
> > > > >
> > > > > On Fri, Jul 19, 2019 at 09:31:33PM +0800, Fei Li wrote:
> > > > > > Hi,
> > > > > >
> > > > > > This patch series implements multiple interrupt vectors support for
> > > > > > virtio-mmio device. This is especially useful for multiqueue vhost-net
> > > > > > device when using firecracker micro-vms as the guest.
> > > > > >
> > > > > > Test result:
> > > > > > With 8 vcpus & 8 net queues set, one vhost-net device with 8 irqs can
> > > > > > receive 9 times more pps comparing with only one irq:
> > > > > > - 564830.38 rxpck/s for 8 irqs on
> > > > > > - 67665.06 rxpck/s for 1 irq on
> > > > > >
> > > > > > Please help to review, thanks!
> > > > > >
> > > > > > Have a nice day
> > > > > > Fei
> > > > >
> > > > >
> > > > > Interesting. The spec says though:
> > > > >
> > > > >         4.2.3.4
> > > > >         Notifications From The Device
> > > > >         The memory mapped virtio device is using a single, dedicated interrupt signal, which is asserted when at
> > > > >         least one of the bits described in the description of InterruptStatus is set. This is how the device sends a
> > > > >         used buffer notification or a configuration change notification to the device.
> > > > >
> > > > Yes, the spec needs to be updated if we want to use mult-irqs.
> > > > >
> > > > > So I'm guessing we need to change the host/guest interface?
> > > > Just to confirm, does the "the host/guest interface" you mentioned mean how to
> > > > pass the irq information from the user space tool to guest kernel?
> > > > In this patch, we do this by passing the [irq_start, irq_end]
> > > > interface via setting guest
> > > > kernel command line, that is done in vm_cmdline_set().
> > > > Also there is another way to do this: add two new registers describing irq info
> > > > (irq_start & irq_end OR irq_start & irq_numbers) to the virtio config space.
> > > >
> > > > Which one do you prefer?
> > >
> > > I'm not sure - so far irq was passed on the command line, right?
> > Yes.
> > >
> > > The first step in implementing any spec change would be to update qemu
> > > code to virtio 1. Which is not a huge project but so far no one
> > > bothered.
> > Emm, actually I only did the test with using firecracker to start a
> > micro-vm, but without qemu.
> > To be honest, the reason why implementing multi-irq on virtio-mmio is
> > mainly because the
> > current firecracker using virtio-mmio device and it has no pci thing,
> > thus no msi/msix to
> > handle the interruptions.
> > On the other hand, considering pci is well supported in qemu, I am
> > wondering whether we
> > still need this. If needed, we would like to do this. :)
> >
> > Have a nice day, thanks
> > Fei
>
>
> Sergio Lopez is now working on updating mmio to v1 support in qemu.
> Maybe get in touch with him on how he looks at this extension.
Thanks for the info! :)

Hi Sergio Lopez,
I saw your [virtio-mmio: modern (v2)] patch series in Qemu mailing
list, thanks for moving this on.
And long Story Short, these two kernel patches is to add the multi-irq
support for virtio-mmio driver.
As this involves the spec change and you are now implementing
virtio-mmio v2, could you help to
give some suggestions on this extension?
I will cc you the original patch soon, thanks.

> Not asking you to work on qemu, but it makes sense
> to get an ack for guest bits from another popular hypervisor.
I agree, absolutely right. And I once work on Qemu development, hope
the combined
background could help to move this multi-irq feature forward. :)


Have a nice day, many thanks
Fei
>
>
> > >
> > >
> > > > > If true pls cc virtio-dev.
> > > > Sure.
> > > > >
> > > > > Also, do we need to update dt bindings documentation?
> > > > You mean the following doc? Sure. :)
> > > > https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/virtio/mmio.txt
> > > >
> > > > Thanks for the review!
> > > >
> > > > Have a nice day
> > > > Fei
> > > >
> > > >
> > > > >
> > > > > >
> > > > > > Fam Zheng (1):
> > > > > >   virtio-mmio: Process vrings more proactively
> > > > > >
> > > > > > Fei Li (1):
> > > > > >   virtio-mmio: support multiple interrupt vectors
> > > > > >
> > > > > >  drivers/virtio/virtio_mmio.c | 238 +++++++++++++++++++++++++++++++++++--------
> > > > > >  1 file changed, 196 insertions(+), 42 deletions(-)
> > > > > >
> > > > > > --
> > > > > > 2.11.0

---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-07-31  4:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20190719133135.32418-1-lifei.shirley@bytedance.com>
     [not found] ` <20190719110852-mutt-send-email-mst@kernel.org>
     [not found]   ` <CA+=e4K5rn7-avNT3e07dfXkh=ZO2+RvthjqW15gZv-uFYrCs3A@mail.gmail.com>
2019-07-22  5:10     ` [virtio-dev] Fwd: [External Email] Re: [PATCH v1 0/2] virtio-mmio: support multiple interrupt vectors 李菲
2019-07-22  8:39     ` [virtio-dev] " Michael S. Tsirkin
2019-07-22 13:43       ` 李菲
2019-07-30 20:26         ` Michael S. Tsirkin
2019-07-31  4:04           ` 李菲

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox