diff options
Diffstat (limited to 'net/openvswitch/flow.h')
| -rw-r--r-- | net/openvswitch/flow.h | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/net/openvswitch/flow.h b/net/openvswitch/flow.h index 14a324eb017..a7bb60ff3b5 100644 --- a/net/openvswitch/flow.h +++ b/net/openvswitch/flow.h @@ -43,6 +43,7 @@ struct sw_flow_actions {  struct sw_flow_key {  	struct {  		u32	priority;	/* Packet QoS priority. */ +		u32	skb_mark;	/* SKB mark. */  		u16	in_port;	/* Input switch port (or DP_MAX_PORTS). */  	} phy;  	struct { @@ -144,6 +145,7 @@ u64 ovs_flow_used_time(unsigned long flow_jiffies);   *                         ------  ---  ------  -----   *  OVS_KEY_ATTR_PRIORITY      4    --     4      8   *  OVS_KEY_ATTR_IN_PORT       4    --     4      8 + *  OVS_KEY_ATTR_SKB_MARK      4    --     4      8   *  OVS_KEY_ATTR_ETHERNET     12    --     4     16   *  OVS_KEY_ATTR_ETHERTYPE     2     2     4      8  (outer VLAN ethertype)   *  OVS_KEY_ATTR_8021Q         4    --     4      8 @@ -153,14 +155,14 @@ u64 ovs_flow_used_time(unsigned long flow_jiffies);   *  OVS_KEY_ATTR_ICMPV6        2     2     4      8   *  OVS_KEY_ATTR_ND           28    --     4     32   *  ------------------------------------------------- - *  total                                       144 + *  total                                       152   */ -#define FLOW_BUFSIZE 144 +#define FLOW_BUFSIZE 152  int ovs_flow_to_nlattrs(const struct sw_flow_key *, struct sk_buff *);  int ovs_flow_from_nlattrs(struct sw_flow_key *swkey, int *key_lenp,  		      const struct nlattr *); -int ovs_flow_metadata_from_nlattrs(u32 *priority, u16 *in_port, +int ovs_flow_metadata_from_nlattrs(u32 *priority, u32 *mark, u16 *in_port,  			       const struct nlattr *);  #define MAX_ACTIONS_BUFSIZE    (16 * 1024)  |