Lines Matching defs:state
117 /* Map SKB connection state into the values used by flow definition. */
189 static void __ovs_ct_update_key(struct sw_flow_key *key, u8 state,
193 key->ct_state = state;
241 u8 state = 0;
245 state = ovs_ct_get_state(ctinfo);
248 state |= OVS_CS_F_NEW;
253 state |= OVS_CS_F_RELATED;
255 state |= key->ct_state & OVS_CS_F_NAT_MASK;
258 state |= OVS_CS_F_SRC_NAT;
260 state |= OVS_CS_F_DST_NAT;
264 state = OVS_CS_F_TRACKED | OVS_CS_F_INVALID;
268 __ovs_ct_update_key(key, state, zone, ct);
599 * re-attributing statistics or modifying the connection state. This allows an
785 * range is only used for new, uninitialized NAT state.
940 * not done already. Update key with new CT state after passing the packet
959 struct nf_hook_state state = {
975 err = nf_conntrack_in(skb, &state);
979 /* Clear CT state NAT flags to mark that we have not yet done
981 * the whole state, as it will be re-initialized below.
1061 u8 state;
1066 state = OVS_CS_F_TRACKED | OVS_CS_F_NEW | OVS_CS_F_RELATED;
1067 __ovs_ct_update_key(key, state, &info->zone, exp->master);