Lines Matching refs:actions

37 	const struct nlattr *actions;  member
125 const struct nlattr *actions, in add_deferred_actions() argument
135 da->actions = actions; in add_deferred_actions()
156 const struct nlattr *actions, int len,
944 const struct nlattr *actions, int actions_len, in output_userspace() argument
990 upcall.actions = actions; in output_userspace()
1006 struct nlattr *actions = nla_data(attr); in dec_ttl_exception_handler() local
1008 if (nla_len(actions)) in dec_ttl_exception_handler()
1009 return clone_execute(dp, skb, key, 0, nla_data(actions), in dec_ttl_exception_handler()
1010 nla_len(actions), true, false); in dec_ttl_exception_handler()
1024 struct nlattr *actions; in sample() local
1033 actions = nla_next(sample_arg, &rem); in sample()
1043 return clone_execute(dp, skb, key, 0, actions, rem, last, in sample()
1055 struct nlattr *actions; in clone() local
1063 actions = nla_next(clone_arg, &rem); in clone()
1065 return clone_execute(dp, skb, key, 0, actions, rem, last, in clone()
1203 const struct nlattr *actions, *cpl_arg; in execute_check_pkt_len() local
1222 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1228 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1229 actions = nla_next(actions, &rem); in execute_check_pkt_len()
1233 return clone_execute(dp, skb, key, 0, nla_data(actions), in execute_check_pkt_len()
1234 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1491 const struct nlattr *actions, int len, in clone_execute() argument
1514 if (actions) { /* Sample action */ in clone_execute()
1519 actions, len); in clone_execute()
1531 da = add_deferred_actions(skb, key, actions, len); in clone_execute()
1533 if (!actions) { /* Recirc action */ in clone_execute()
1544 if (actions) { /* Sample action */ in clone_execute()
1569 const struct nlattr *actions = da->actions; in process_deferred_actions() local
1572 if (actions) in process_deferred_actions()
1573 do_execute_actions(dp, skb, key, actions, actions_len); in process_deferred_actions()
1600 acts->actions, acts->actions_len); in ovs_execute_actions()