mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
datapath: Add support for Geneve tunneling.
This adds support for Geneve - Generic Network Virtualization Encapsulation. The protocol is documented at http://tools.ietf.org/html/draft-gross-geneve-00 The kernel implementation is completely agnostic to the options that are in use and can handle newly defined options without further work. It does this by simply matching on a byte array of options and allowing userspace to setup flows on this array. Userspace currently implements only support for basic version of Geneve. It can work with the base header (including the VNI) and is capable of parsing options but does not currently support any particular option definitions. Over time, the intention is to allow options to be matched through OpenFlow without requiring explicit support in OVS userspace. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Thomas Graf <tgraf@suug.ch> Acked-by: Pravin B Shelar <pshelar@nicira.com>
This commit is contained in:
@@ -105,6 +105,7 @@ void odp_portno_names_destroy(struct hmap *portno_names);
|
||||
* - OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT 0 -- 4 4
|
||||
* - OVS_TUNNEL_KEY_ATTR_CSUM 0 -- 4 4
|
||||
* - OVS_TUNNEL_KEY_ATTR_OAM 0 -- 4 4
|
||||
* - OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS 256 -- 4 260
|
||||
* OVS_KEY_ATTR_IN_PORT 4 -- 4 8
|
||||
* OVS_KEY_ATTR_SKB_MARK 4 -- 4 8
|
||||
* OVS_KEY_ATTR_DP_HASH 4 -- 4 8
|
||||
@@ -118,12 +119,12 @@ void odp_portno_names_destroy(struct hmap *portno_names);
|
||||
* OVS_KEY_ATTR_ICMPV6 2 2 4 8
|
||||
* OVS_KEY_ATTR_ND 28 -- 4 32
|
||||
* ----------------------------------------------------------
|
||||
* total 228
|
||||
* total 488
|
||||
*
|
||||
* We include some slack space in case the calculation isn't quite right or we
|
||||
* add another field and forget to adjust this value.
|
||||
*/
|
||||
#define ODPUTIL_FLOW_KEY_BYTES 256
|
||||
#define ODPUTIL_FLOW_KEY_BYTES 512
|
||||
BUILD_ASSERT_DECL(FLOW_WC_SEQ == 26);
|
||||
|
||||
/* A buffer with sufficient size and alignment to hold an nlattr-formatted flow
|
||||
|
Reference in New Issue
Block a user