From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pravin B Shelar Subject: [PATCH net-next v6 0/8] openvswitch: VXLAN tunneling. Date: Thu, 1 Aug 2013 11:44:34 -0700 Message-ID: <1375382674-3095-1-git-send-email-pshelar@nicira.com> Cc: stephen@networkplumber.org, Pravin B Shelar To: netdev@vger.kernel.org Return-path: Received: from na3sys009aog107.obsmtp.com ([74.125.149.197]:60490 "HELO na3sys009aog107.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752563Ab3HASoj (ORCPT ); Thu, 1 Aug 2013 14:44:39 -0400 Received: by mail-pb0-f51.google.com with SMTP id jt11so2429507pbb.10 for ; Thu, 01 Aug 2013 11:44:38 -0700 (PDT) Sender: netdev-owner@vger.kernel.org List-ID: First four vxlan patches extends vxlan so that openvswitch can share vxlan recv code. Rest of patches refactors vxlan data plane so that ovs can share that code with vxlan module. Last patch adds vxlan-vport to openvswitch. v6 series splits second patch into two and has few style fixes. v5 series disallow any udp port sharing between kernel-vxlan and ovs-vxlan as suggested by Stephen Hemminger. Pravin B Shelar (8): vxlan: Restructure vxlan socket apis. vxlan: Restructure vxlan receive. vxlan: Add vxlan recv demux. vxlan: Extend vxlan handlers for openvswitch. vxlan: Factor out vxlan send api. vxlan: Improve vxlan headroom calculation. vxlan: Add tx-vlan offload support. openvswitch: Add vxlan tunneling support. drivers/net/vxlan.c | 341 ++++++++++++++++++++++---------------- include/net/vxlan.h | 39 +++++ include/uapi/linux/openvswitch.h | 11 ++ net/openvswitch/Kconfig | 13 ++ net/openvswitch/Makefile | 4 + net/openvswitch/vport-vxlan.c | 204 +++++++++++++++++++++++ net/openvswitch/vport.c | 3 + net/openvswitch/vport.h | 1 + 8 files changed, 477 insertions(+), 139 deletions(-) create mode 100644 include/net/vxlan.h create mode 100644 net/openvswitch/vport-vxlan.c