From: Stefan Hajnoczi <stefanha@redhat.com>
To: Vincenzo Maffione <v.maffione@gmail.com>
Cc: marcel.a@redhat.com, jasowang@redhat.com, qemu-devel@nongnu.org,
lcapitulino@redhat.com, aliguori@amazon.com, dmitry@daynix.com,
pbonzini@redhat.com, g.lettieri@iet.unipi.it, rizzo@iet.unipi.it
Subject: Re: [Qemu-devel] [PATCH v3 0/5] Add netmap backend offloadings support
Date: Thu, 6 Feb 2014 15:25:21 +0100 [thread overview]
Message-ID: <20140206142521.GC29457@stefanha-thinkpad.brq.redhat.com> (raw)
In-Reply-To: <1390237625-29304-1-git-send-email-v.maffione@gmail.com>
On Mon, Jan 20, 2014 at 06:07:00PM +0100, Vincenzo Maffione wrote:
> The purpose of this patch series is to add offloadings support
> (TSO/UFO/CSUM) to the netmap network backend, and make it possible
> for the paravirtual network frontends (virtio-net and vmxnet3) to
> use it.
> In order to achieve this, these patches extend the existing
> net.h interface to add abstract operations through which a network
> frontend can manipulate backend offloading features, instead of
> directly calling TAP-specific functions.
>
> Guest-to-guest performance before this patches for virtio-net + netmap:
>
> TCP_STREAM 5.0 Gbps
> TCP_RR 12.7 Gbps
> UDP_STREAM (64-bytes) 790 Kpps
>
> Guest-to-guest performance after this patches for virtio-net + netmap:
>
> TCP_STREAM 21.4 Gbps
> TCP_RR 12.7 Gbps
> UDP_STREAM (64-bytes) 790 Kpps
>
> Experiment details:
> - Processor: Intel i7-3770K CPU @ 3.50GHz (8 cores)
> - Memory @ 1333 MHz
> - Host O.S.: Archlinux with Linux 3.11
> - Guest O.S.: Archlinux with Linux 3.11
>
> - QEMU command line:
> qemu-system-x86_64 archdisk.qcow -snapshot -enable-kvm -device virtio-net-pci,ioeventfd=on,mac=00:AA:BB:CC:DD:01,netdev=mynet -netdev netmap,ifname=vale0:01,id=mynet -smp 2 -vga std -m 3G
>
>
> ******** Changes against the previous version ***********
> NOTE: Now the VALE switch supports the offloadings, meaning that TCP/UDP will work
> even between a virtio-net guest with offloadings enabled and another
> guest with offloadings disabled. This has been achieved without performance loss
> on the "fast" case (e.g. two virtio-net-guest communicating with offloadings on).
>
> (1) removed the second commit of the previous version, which was
> intended to remove tap_using_vnet_hdr()
> (2) the last commit has been revised: NETMAP_BDG_OFFSET becomes
> NETMAP_BDG_VNET_HDR, netmap_set_offload() implemented and
> netmap_has_vnet_hdr_len() rewritten.
>
>
> Vincenzo Maffione (5):
> net: change vnet-hdr TAP prototypes
> net: extend NetClientInfo for offloading
> net: TAP uses NetClientInfo offloading callbacks
> net: virtio-net and vmxnet3 use offloading API
> net: add offloading support to netmap backend
>
> hw/net/virtio-net.c | 16 +++++--------
> hw/net/vmxnet3.c | 12 ++++------
> include/net/net.h | 19 +++++++++++++++
> include/net/tap.h | 4 ++--
> net/net.c | 55 +++++++++++++++++++++++++++++++++++++++++++
> net/netmap.c | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
> net/tap-win32.c | 8 +++----
> net/tap.c | 12 +++++++---
> 8 files changed, 167 insertions(+), 27 deletions(-)
Look good but we should finish by making tap_*() static and adding the
missing function pointer assignments in tap-win32.c.
prev parent reply other threads:[~2014-02-06 14:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-20 17:07 [Qemu-devel] [PATCH v3 0/5] Add netmap backend offloadings support Vincenzo Maffione
2014-01-20 17:07 ` [Qemu-devel] [PATCH v3 1/5] net: change vnet-hdr TAP prototypes Vincenzo Maffione
2014-01-20 17:07 ` [Qemu-devel] [PATCH v3 2/5] net: extend NetClientInfo for offloading Vincenzo Maffione
2014-01-20 17:07 ` [Qemu-devel] [PATCH v3 3/5] net: TAP uses NetClientInfo offloading callbacks Vincenzo Maffione
2014-02-06 14:18 ` Stefan Hajnoczi
2014-02-06 14:23 ` Stefan Hajnoczi
2014-02-06 14:31 ` Vincenzo Maffione
2014-01-20 17:07 ` [Qemu-devel] [PATCH v3 4/5] net: virtio-net and vmxnet3 use offloading API Vincenzo Maffione
2014-01-20 17:07 ` [Qemu-devel] [PATCH v3 5/5] net: add offloading support to netmap backend Vincenzo Maffione
2014-02-06 9:30 ` [Qemu-devel] [PATCH v3 0/5] Add netmap backend offloadings support Vincenzo Maffione
2014-02-06 14:25 ` Stefan Hajnoczi [this message]
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=20140206142521.GC29457@stefanha-thinkpad.brq.redhat.com \
--to=stefanha@redhat.com \
--cc=aliguori@amazon.com \
--cc=dmitry@daynix.com \
--cc=g.lettieri@iet.unipi.it \
--cc=jasowang@redhat.com \
--cc=lcapitulino@redhat.com \
--cc=marcel.a@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rizzo@iet.unipi.it \
--cc=v.maffione@gmail.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).