Lines Matching refs:acts

572 	struct sw_flow_actions *acts;  in ovs_packet_cmd_execute()  local
625 &flow->key, &acts, log); in ovs_packet_cmd_execute()
629 rcu_assign_pointer(flow->sf_acts, acts); in ovs_packet_cmd_execute()
747 static size_t ovs_flow_cmd_msg_size(const struct sw_flow_actions *acts, in ovs_flow_cmd_msg_size() argument
771 len += nla_total_size(acts->orig_len); in ovs_flow_cmd_msg_size()
898 static struct sk_buff *ovs_flow_cmd_alloc_info(const struct sw_flow_actions *acts, in ovs_flow_cmd_alloc_info() argument
910 len = ovs_flow_cmd_msg_size(acts, sfid, ufid_flags); in ovs_flow_cmd_alloc_info()
951 struct sw_flow_actions *acts; in ovs_flow_cmd_new() local
998 &new_flow->key, &acts, log); in ovs_flow_cmd_new()
1004 reply = ovs_flow_cmd_alloc_info(acts, &new_flow->id, info, false, in ovs_flow_cmd_new()
1024 rcu_assign_pointer(new_flow->sf_acts, acts); in ovs_flow_cmd_new()
1029 acts = NULL; in ovs_flow_cmd_new()
1073 rcu_assign_pointer(flow->sf_acts, acts); in ovs_flow_cmd_new()
1098 ovs_nla_free_flow_actions(acts); in ovs_flow_cmd_new()
1113 struct sw_flow_actions *acts; in get_flow_actions() local
1118 error = ovs_nla_copy_actions(net, a, &masked_key, &acts, log); in get_flow_actions()
1125 return acts; in get_flow_actions()
1146 struct sw_flow_actions **acts, in ovs_nla_init_match_and_action() argument
1168 *acts = get_flow_actions(net, a[OVS_FLOW_ATTR_ACTIONS], key, in ovs_nla_init_match_and_action()
1170 if (IS_ERR(*acts)) { in ovs_nla_init_match_and_action()
1171 error = PTR_ERR(*acts); in ovs_nla_init_match_and_action()
1191 struct sw_flow_actions *old_acts = NULL, *acts = NULL; in ovs_flow_cmd_set() local
1207 &acts, log); in ovs_flow_cmd_set()
1211 if (acts) { in ovs_flow_cmd_set()
1213 reply = ovs_flow_cmd_alloc_info(acts, &sfid, info, false, in ovs_flow_cmd_set()
1238 if (likely(acts)) { in ovs_flow_cmd_set()
1240 rcu_assign_pointer(flow->sf_acts, acts); in ovs_flow_cmd_set()
1279 ovs_nla_free_flow_actions(acts); in ovs_flow_cmd_set()