[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1400195227-21265-1-git-send-email-horms@verge.net.au>
Date: Fri, 16 May 2014 08:07:06 +0900
From: Simon Horman <horms@...ge.net.au>
To: dev@...nvswitch.org, netdev@...r.kernel.org,
Jesse Gross <jesse@...ira.com>,
Pravin B Shelar <pshelar@...ira.com>
Cc: Ben Pfaff <blp@...ira.com>, Ravi K <rkerur@...il.com>,
Joe Stringer <joe@...d.net.nz>
Subject: [PATCH v2.57] datapath: Add basic MPLS support to kernel
Hi Jesse, Hi Pravin, Hi All,
This patchset makes use of a whitelist to only allow mpls_push actions to
be applied to packets with an ethertype where the tag order is well defined
and implemented. This avoids the problem of where an MPLS LSE should be
added in relation to a VLAN or similar tag.
The list of allowed ethertypes is currently:
- ETH_P_IP (0x0800)
- ETH_P_ARP (0x0806)
- ETH_P_RARP (0x0835)
- ETH_P_IPV6 (0x86DD)
- ETH_P_MPLS_UC (0x8847)
- ETH_P_MPLS_MC (0x8847)
I have updated this patch since v2.56 to account for the new
sample action which does not have side effects. This has allowed
complex verification code in this patch to be replaced with something
significantly simpler and smaller.
Simon Horman (1):
datapath: Add basic MPLS support to kernel
OPENFLOW-1.1+ | 4 -
datapath/Modules.mk | 1 +
datapath/actions.c | 118 ++++++++++++++++++++++-
datapath/datapath.c | 6 +-
datapath/flow.c | 29 ++++++
datapath/flow.h | 17 ++--
datapath/flow_netlink.c | 119 ++++++++++++++++++++----
datapath/flow_netlink.h | 2 +-
datapath/linux/compat/gso.c | 70 +++++++++++---
datapath/linux/compat/gso.h | 41 +++++++-
datapath/linux/compat/include/linux/netdevice.h | 6 +-
datapath/linux/compat/netdevice.c | 10 +-
datapath/mpls.h | 15 +++
include/linux/openvswitch.h | 9 +-
14 files changed, 394 insertions(+), 53 deletions(-)
create mode 100644 datapath/mpls.h
--
1.8.5.2
--
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