Searched refs:sf_acts (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/net/openvswitch/ |
D | datapath.c | 234 struct sw_flow_actions *sf_acts; in ovs_dp_process_packet() local 261 sf_acts = rcu_dereference(flow->sf_acts); in ovs_dp_process_packet() 262 ovs_execute_actions(dp, skb, sf_acts, key); in ovs_dp_process_packet() 535 struct sw_flow_actions *sf_acts; in ovs_packet_cmd_execute() local 580 rcu_assign_pointer(flow->sf_acts, acts); in ovs_packet_cmd_execute() 599 sf_acts = rcu_dereference(flow->sf_acts); in ovs_packet_cmd_execute() 602 err = ovs_execute_actions(dp, packet, sf_acts, &flow->key); in ovs_packet_cmd_execute() 769 const struct sw_flow_actions *sf_acts; in ovs_flow_cmd_fill_actions() local 771 sf_acts = rcu_dereference_ovsl(flow->sf_acts); in ovs_flow_cmd_fill_actions() 772 err = ovs_nla_put_actions(sf_acts->actions, in ovs_flow_cmd_fill_actions() [all …]
|
D | flow.h | 232 struct sw_flow_actions __rcu *sf_acts; member
|
D | flow_table.c | 143 if (flow->sf_acts) in flow_free() 144 ovs_nla_free_flow_actions((struct sw_flow_actions __force *)flow->sf_acts); in flow_free()
|
D | flow_netlink.c | 2269 void ovs_nla_free_flow_actions(struct sw_flow_actions *sf_acts) in ovs_nla_free_flow_actions() argument 2274 if (!sf_acts) in ovs_nla_free_flow_actions() 2277 nla_for_each_attr(a, sf_acts->actions, sf_acts->actions_len, rem) { in ovs_nla_free_flow_actions() 2288 kfree(sf_acts); in ovs_nla_free_flow_actions() 2298 void ovs_nla_free_flow_actions_rcu(struct sw_flow_actions *sf_acts) in ovs_nla_free_flow_actions_rcu() argument 2300 call_rcu(&sf_acts->rcu, __ovs_nla_free_flow_actions); in ovs_nla_free_flow_actions_rcu()
|