All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org,
	anthony@codemonkey.ws, chrisw@redhat.com, quintela@redhat.com,
	jes.sorensen@redhat.com
Subject: Re: [PATCH v2 0/4] virtio-net: More configurability and bh handling for tx
Date: Thu, 2 Sep 2010 18:35:16 +0300	[thread overview]
Message-ID: <20100902153516.GD18182@redhat.com> (raw)
In-Reply-To: <20100902150041.11862.65901.stgit@s20.home>

On Thu, Sep 02, 2010 at 09:00:42AM -0600, Alex Williamson wrote:
> Incorporated feedback.  txburst= and txtimer= are now "x-" prefixed
> developer options.  I added a tx= option, because I do want there to
> be a supported way to switch between TX strategies.  This also drops
> the magic value of txtimer= 1 or 0 (setting default timeout or switching
> modes).  I also dropped the trickiness around only enabling the bottom
> half for the iothread since Anthony indicates we don't care about
> performance for the non-iothread case.
> 
> New performance data against both qemu.git and qemu-kvm.git:
> 
> https://spreadsheets.google.com/pub?key=0AoEm50Bac2U7dGdlREhrWUpPVEdMcTJaX0RjSEgtc3c&hl=en&single=true&gid=0&output=html
> 
> This shows the base performance versus patched with new default for
> various packet sizes and netperf test loads.  The guest is a 2-way
> SMP, connected directly to the host via a tap (no bridge).  Thanks,
> 
> Alex

ACK the series.

Please remember to clone bugzilla into libvirt and ask them
to support the new option on zstream/0day, so that we do have
a working backup plan.

> ---
> 
> Alex Williamson (4):
>       virtio-net: Introduce a new bottom half packet TX
>       virtio-net: Rename tx_timer_active to tx_waiting
>       virtio-net: Limit number of packets sent per TX flush
>       virtio-net: Make tx_timer timeout configurable
> 
> 
>  hw/s390-virtio-bus.c |    8 +++
>  hw/s390-virtio-bus.h |    1 
>  hw/syborg_virtio.c   |    8 +++
>  hw/virtio-net.c      |  129 +++++++++++++++++++++++++++++++++++++++++---------
>  hw/virtio-net.h      |   14 +++++
>  hw/virtio-pci.c      |    8 +++
>  hw/virtio.h          |    4 +-
>  7 files changed, 144 insertions(+), 28 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: chrisw@redhat.com, kvm@vger.kernel.org, quintela@redhat.com,
	jes.sorensen@redhat.com, qemu-devel@nongnu.org
Subject: [Qemu-devel] Re: [PATCH v2 0/4] virtio-net: More configurability and bh handling for tx
Date: Thu, 2 Sep 2010 18:35:16 +0300	[thread overview]
Message-ID: <20100902153516.GD18182@redhat.com> (raw)
In-Reply-To: <20100902150041.11862.65901.stgit@s20.home>

On Thu, Sep 02, 2010 at 09:00:42AM -0600, Alex Williamson wrote:
> Incorporated feedback.  txburst= and txtimer= are now "x-" prefixed
> developer options.  I added a tx= option, because I do want there to
> be a supported way to switch between TX strategies.  This also drops
> the magic value of txtimer= 1 or 0 (setting default timeout or switching
> modes).  I also dropped the trickiness around only enabling the bottom
> half for the iothread since Anthony indicates we don't care about
> performance for the non-iothread case.
> 
> New performance data against both qemu.git and qemu-kvm.git:
> 
> https://spreadsheets.google.com/pub?key=0AoEm50Bac2U7dGdlREhrWUpPVEdMcTJaX0RjSEgtc3c&hl=en&single=true&gid=0&output=html
> 
> This shows the base performance versus patched with new default for
> various packet sizes and netperf test loads.  The guest is a 2-way
> SMP, connected directly to the host via a tap (no bridge).  Thanks,
> 
> Alex

ACK the series.

Please remember to clone bugzilla into libvirt and ask them
to support the new option on zstream/0day, so that we do have
a working backup plan.

> ---
> 
> Alex Williamson (4):
>       virtio-net: Introduce a new bottom half packet TX
>       virtio-net: Rename tx_timer_active to tx_waiting
>       virtio-net: Limit number of packets sent per TX flush
>       virtio-net: Make tx_timer timeout configurable
> 
> 
>  hw/s390-virtio-bus.c |    8 +++
>  hw/s390-virtio-bus.h |    1 
>  hw/syborg_virtio.c   |    8 +++
>  hw/virtio-net.c      |  129 +++++++++++++++++++++++++++++++++++++++++---------
>  hw/virtio-net.h      |   14 +++++
>  hw/virtio-pci.c      |    8 +++
>  hw/virtio.h          |    4 +-
>  7 files changed, 144 insertions(+), 28 deletions(-)

  parent reply	other threads:[~2010-09-02 15:41 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-02 15:00 [PATCH v2 0/4] virtio-net: More configurability and bh handling for tx Alex Williamson
2010-09-02 15:00 ` [Qemu-devel] " Alex Williamson
2010-09-02 15:00 ` [PATCH v2 1/4] virtio-net: Make tx_timer timeout configurable Alex Williamson
2010-09-02 15:00   ` [Qemu-devel] " Alex Williamson
2010-09-02 15:00 ` [PATCH v2 2/4] virtio-net: Limit number of packets sent per TX flush Alex Williamson
2010-09-02 15:00   ` [Qemu-devel] " Alex Williamson
2010-09-02 15:01 ` [PATCH v2 3/4] virtio-net: Rename tx_timer_active to tx_waiting Alex Williamson
2010-09-02 15:01   ` [Qemu-devel] " Alex Williamson
2010-09-02 15:01 ` [PATCH v2 4/4] virtio-net: Introduce a new bottom half packet TX Alex Williamson
2010-09-02 15:01   ` [Qemu-devel] " Alex Williamson
2010-09-02 15:35 ` Michael S. Tsirkin [this message]
2010-09-02 15:35   ` [Qemu-devel] Re: [PATCH v2 0/4] virtio-net: More configurability and bh handling for tx Michael S. Tsirkin
2010-09-03 13:11 ` Juan Quintela
2010-09-03 13:11   ` [Qemu-devel] " Juan Quintela

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=20100902153516.GD18182@redhat.com \
    --to=mst@redhat.com \
    --cc=alex.williamson@redhat.com \
    --cc=anthony@codemonkey.ws \
    --cc=chrisw@redhat.com \
    --cc=jes.sorensen@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@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 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.