Lines Matching defs:sw_flow_key
75 struct sw_flow_key { struct
76 u8 tun_opts[IP_TUNNEL_OPTS_MAX];
77 u8 tun_opts_len;
78 struct ip_tunnel_key tun_key; /* Encapsulating tunnel key. */
79 struct {
83 } __packed phy; /* Safe when right after 'tun_key'. */
84 u8 mac_proto; /* MAC layer protocol (e.g. Ethernet). */
85 u8 tun_proto; /* Protocol of encapsulating tunnel. */
86 u32 ovs_flow_hash; /* Datapath computed hash value. */
87 u32 recirc_id; /* Recirculation ID. */
88 struct {
94 } eth;
96 u8 ct_state;
97 u8 ct_orig_proto; /* CT original direction tuple IP
100 union {
108 u16 ct_zone; /* Conntrack zone. */
109 struct {
113 } tp;
114 union {
169 static inline bool sw_flow_key_is_nd(const struct sw_flow_key *key) in sw_flow_key_is_nd() argument