[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1421785536-19793-1-git-send-email-pshelar@nicira.com>
Date: Tue, 20 Jan 2015 12:25:36 -0800
From: Pravin B Shelar <pshelar@...ira.com>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org, Pravin B Shelar <pshelar@...ira.com>
Subject: [PATCH net-next 0/3] openvswitch: Add STT support.
Following patch series adds support for Stateless Transport
Tunneling protocol.
STT uses TCP segmentation offload available in most of NIC. On
packet xmit STT driver appends STT header along with TCP header
to the packet. For GSO packet GSO parameters are set according
to tunnel configuration and packet is handed over to networking
stack. This allows use of segmentation offload available in NICs
Netperf unidirectional test gives ~9.4 Gbits/s performance on 10Gbit
NIC with 1500 byte MTU with two TCP streams.
The protocol is documented at
http://www.ietf.org/archive/id/draft-davie-stt-06.txt
I will send out OVS userspace patch on ovs-dev mailing list.
Pravin B Shelar (3):
skbuff: Add skb_list_linearize()
net: Add STT tunneling protocol.
openvswitch: Add support for STT tunneling.
include/linux/skbuff.h | 2 +
include/net/stt.h | 55 ++
include/uapi/linux/openvswitch.h | 1 +
net/core/skbuff.c | 35 +
net/ipv4/Kconfig | 11 +
net/ipv4/Makefile | 1 +
net/ipv4/stt.c | 1386 ++++++++++++++++++++++++++++++++++++++
net/openvswitch/Kconfig | 10 +
net/openvswitch/Makefile | 1 +
net/openvswitch/vport-stt.c | 214 ++++++
10 files changed, 1716 insertions(+)
create mode 100644 include/net/stt.h
create mode 100644 net/ipv4/stt.c
create mode 100644 net/openvswitch/vport-stt.c
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists