From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=37811 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OrBub-0004z8-35 for qemu-devel@nongnu.org; Thu, 02 Sep 2010 11:41:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OrBuZ-0001gp-Rx for qemu-devel@nongnu.org; Thu, 02 Sep 2010 11:41:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:18861) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OrBuZ-0001gc-KW for qemu-devel@nongnu.org; Thu, 02 Sep 2010 11:41:11 -0400 Date: Thu, 2 Sep 2010 18:35:16 +0300 From: "Michael S. Tsirkin" Message-ID: <20100902153516.GD18182@redhat.com> References: <20100902150041.11862.65901.stgit@s20.home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100902150041.11862.65901.stgit@s20.home> Subject: [Qemu-devel] Re: [PATCH v2 0/4] virtio-net: More configurability and bh handling for tx List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alex Williamson Cc: chrisw@redhat.com, kvm@vger.kernel.org, quintela@redhat.com, jes.sorensen@redhat.com, qemu-devel@nongnu.org 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(-)