Lines Matching defs:sw_flow_key
62 struct sw_flow_key { struct
63 u8 tun_opts[IP_TUNNEL_OPTS_MAX];
64 u8 tun_opts_len;
65 struct ip_tunnel_key tun_key; /* Encapsulating tunnel key. */
66 struct {
70 } __packed phy; /* Safe when right after 'tun_key'. */
71 u8 mac_proto; /* MAC layer protocol (e.g. Ethernet). */
72 u8 tun_proto; /* Protocol of encapsulating tunnel. */
73 u32 ovs_flow_hash; /* Datapath computed hash value. */
74 u32 recirc_id; /* Recirculation ID. */
75 struct {
81 } eth;
83 u8 ct_state;
84 u8 ct_orig_proto; /* CT original direction tuple IP
87 union {
95 u16 ct_zone; /* Conntrack zone. */
96 struct {
100 } tp;
101 union {
155 static inline bool sw_flow_key_is_nd(const struct sw_flow_key *key) in sw_flow_key_is_nd() argument