Lines Matching refs:actions

44 	const struct nlattr *actions;  member
132 const struct nlattr *actions, in add_deferred_actions() argument
142 da->actions = actions; in add_deferred_actions()
163 const struct nlattr *actions, int len,
971 const struct nlattr *actions, int actions_len, in output_userspace() argument
1017 upcall.actions = actions; in output_userspace()
1033 struct nlattr *actions = nla_data(attr); in dec_ttl_exception_handler() local
1035 if (nla_len(actions)) in dec_ttl_exception_handler()
1036 return clone_execute(dp, skb, key, 0, nla_data(actions), in dec_ttl_exception_handler()
1037 nla_len(actions), true, false); in dec_ttl_exception_handler()
1051 struct nlattr *actions; in sample() local
1062 actions = nla_next(sample_arg, &rem); in sample()
1075 err = clone_execute(dp, skb, key, 0, actions, rem, last, in sample()
1092 struct nlattr *actions; in clone() local
1100 actions = nla_next(clone_arg, &rem); in clone()
1102 return clone_execute(dp, skb, key, 0, actions, rem, last, in clone()
1248 const struct nlattr *actions, *cpl_arg; in execute_check_pkt_len() local
1267 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1273 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1274 actions = nla_next(actions, &rem); in execute_check_pkt_len()
1278 return clone_execute(dp, skb, key, 0, nla_data(actions), in execute_check_pkt_len()
1279 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1591 const struct nlattr *actions, int len, in clone_execute() argument
1614 if (actions) { /* Sample action */ in clone_execute()
1619 actions, len); in clone_execute()
1631 da = add_deferred_actions(skb, key, actions, len); in clone_execute()
1633 if (!actions) { /* Recirc action */ in clone_execute()
1644 if (actions) { /* Sample action */ in clone_execute()
1669 const struct nlattr *actions = da->actions; in process_deferred_actions() local
1672 if (actions) in process_deferred_actions()
1673 do_execute_actions(dp, skb, key, actions, actions_len); in process_deferred_actions()
1700 acts->actions, acts->actions_len); in ovs_execute_actions()