[ovs-dev] [PATCH v2 0/5] userspace: enable VXLAN TSO, GSO and GRO

yang_y_yi at 163.com yang_y_yi at 163.com
Wed Jul 1 09:15:28 UTC 2020


From: Yi Yang <yangyi01 at inspur.com>

Many NICs can support VXLAN TSO, this can improve
VM-to-VM TCP performance, but for UDP, most of NICs
can offload UFO, so GSO is very necessary for UDP
when userspace TSO is enabled, GSO also can do
VXLAN TSO if NIC can't support it. GRO is necessary
if TSO and UFO are enabled, it can avoid plenty of
overhead.

This patch series fix all the aforementioned issues.
By the way, GSO and GRO needs DPDK to apply two patches
I have sent out to dev at dpdk.org:

[1] https://patches.dpdk.org/patch/72508/
[2] https://patches.dpdk.org/patch/72509/

Yi Yang (5):
  Fix dp_packet_set_size error for multi-seg mbuf
  Enable VXLAN TSO for DPDK datapath
  Add GSO support for DPDK data path
  Add VXLAN TCP and UDP GRO support for DPDK data path
  Update Documentation/topics/userspace-tso.rst

 Documentation/topics/userspace-tso.rst |  13 +-
 lib/dp-packet.h                        | 112 ++++++-
 lib/netdev-dpdk.c                      | 549 +++++++++++++++++++++++++++++++--
 lib/netdev-linux.c                     |  37 ++-
 lib/netdev.c                           |  14 +-
 5 files changed, 680 insertions(+), 45 deletions(-)

-- 
2.7.4



More information about the dev mailing list