From: Ben Pfaff Date: Thu, 11 Feb 2010 21:45:03 +0000 (-0800) Subject: datapath: Add ODPP_NORMAL constant. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de6a71659a2a7d36610110962307feb4af9c4cdc;p=openvswitch datapath: Add ODPP_NORMAL constant. Some (out-of-tree) datapaths want to pass OFPP_NORMAL up to the datapath. For now add ODPP_NORMAL. In the long run we may want to use OFPP_ port numbers in the datapath interface. Reported-by: Jean Tourrilhes --- diff --git a/include/openvswitch/datapath-protocol.h b/include/openvswitch/datapath-protocol.h index b079f529..e7b5e5e8 100644 --- a/include/openvswitch/datapath-protocol.h +++ b/include/openvswitch/datapath-protocol.h @@ -107,6 +107,7 @@ struct odp_stats { /* Logical ports. */ #define ODPP_LOCAL ((__u16)0) #define ODPP_NONE ((__u16)-1) +#define ODPP_NORMAL ((__u16)-2) /* Listening channels. */ #define _ODPL_MISS_NR 0 /* Packet missed in flow table. */