Lines Matching full:acts
558 struct sw_flow_actions *acts; in ovs_packet_cmd_execute() local
611 &flow->key, &acts, log); in ovs_packet_cmd_execute()
615 rcu_assign_pointer(flow->sf_acts, acts); in ovs_packet_cmd_execute()
732 static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts, in ovs_flow_cmd_msg_size() argument
756 len += nla_total_size(acts->orig_len); in ovs_flow_cmd_msg_size()
883 static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts, in ovs_flow_cmd_alloc_info() argument
895 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags); in ovs_flow_cmd_alloc_info()
936 struct sw_flow_actions *acts; in ovs_flow_cmd_new() local
983 &new_flow->key, &acts, log); in ovs_flow_cmd_new()
989 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false, in ovs_flow_cmd_new()
1009 rcu_assign_pointer(new_flow->sf_acts, acts); in ovs_flow_cmd_new()
1014 acts = NULL; in ovs_flow_cmd_new()
1058 rcu_assign_pointer(flow->sf_acts, acts); in ovs_flow_cmd_new()
1083 ovs_nla_free_flow_actions(acts); in ovs_flow_cmd_new()
1098 struct sw_flow_actions *acts; in get_flow_actions() local
1103 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log); in get_flow_actions()
1110 return acts; in get_flow_actions()
1121 * actions and save them to *acts. Before returning from
1131 struct sw_flow_actions **acts, in ovs_nla_init_match_and_action() argument
1153 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key, in ovs_nla_init_match_and_action()
1155 if (IS_ERR(*acts)) { in ovs_nla_init_match_and_action()
1156 error = PTR_ERR(*acts); in ovs_nla_init_match_and_action()
1176 struct sw_flow_actions *old_acts = NULL, *acts = NULL; in ovs_flow_cmd_set() local
1192 &acts, log); in ovs_flow_cmd_set()
1196 if (acts) { in ovs_flow_cmd_set()
1197 /* Can allocate before locking if have acts. */ in ovs_flow_cmd_set()
1198 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false, in ovs_flow_cmd_set()
1223 if (likely(acts)) { in ovs_flow_cmd_set()
1225 rcu_assign_pointer(flow->sf_acts, acts); in ovs_flow_cmd_set()
1237 /* Could not alloc without acts before locking. */ in ovs_flow_cmd_set()
1264 ovs_nla_free_flow_actions(acts); in ovs_flow_cmd_set()