Lines Matching refs:actions

36 	const struct nlattr *actions;  member
124 const struct nlattr *actions, in add_deferred_actions() argument
134 da->actions = actions; in add_deferred_actions()
155 const struct nlattr *actions, int len,
943 const struct nlattr *actions, int actions_len, in output_userspace() argument
983 upcall.actions = actions; in output_userspace()
999 struct nlattr *actions = nla_data(attr); in dec_ttl_exception_handler() local
1001 if (nla_len(actions)) in dec_ttl_exception_handler()
1002 return clone_execute(dp, skb, key, 0, nla_data(actions), in dec_ttl_exception_handler()
1003 nla_len(actions), last, false); in dec_ttl_exception_handler()
1017 struct nlattr *actions; in sample() local
1026 actions = nla_next(sample_arg, &rem); in sample()
1036 return clone_execute(dp, skb, key, 0, actions, rem, last, in sample()
1048 struct nlattr *actions; in clone() local
1056 actions = nla_next(clone_arg, &rem); in clone()
1058 return clone_execute(dp, skb, key, 0, actions, rem, last, in clone()
1196 const struct nlattr *actions, *cpl_arg; in execute_check_pkt_len() local
1215 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1221 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1222 actions = nla_next(actions, &rem); in execute_check_pkt_len()
1226 return clone_execute(dp, skb, key, 0, nla_data(actions), in execute_check_pkt_len()
1227 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1483 const struct nlattr *actions, int len, in clone_execute() argument
1506 if (actions) { /* Sample action */ in clone_execute()
1511 actions, len); in clone_execute()
1523 da = add_deferred_actions(skb, key, actions, len); in clone_execute()
1525 if (!actions) { /* Recirc action */ in clone_execute()
1536 if (actions) { /* Sample action */ in clone_execute()
1561 const struct nlattr *actions = da->actions; in process_deferred_actions() local
1564 if (actions) in process_deferred_actions()
1565 do_execute_actions(dp, skb, key, actions, actions_len); in process_deferred_actions()
1592 acts->actions, acts->actions_len); in ovs_execute_actions()