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,
907 const struct nlattr *actions, int actions_len, in output_userspace() argument
947 upcall.actions = actions; in output_userspace()
966 struct nlattr *actions = nla_data(dec_ttl_arg); in dec_ttl_exception_handler() local
968 if (actions) in dec_ttl_exception_handler()
969 return clone_execute(dp, skb, key, 0, nla_data(actions), in dec_ttl_exception_handler()
970 nla_len(actions), last, false); in dec_ttl_exception_handler()
984 struct nlattr *actions; in sample() local
993 actions = nla_next(sample_arg, &rem); in sample()
1003 return clone_execute(dp, skb, key, 0, actions, rem, last, in sample()
1015 struct nlattr *actions; in clone() local
1023 actions = nla_next(clone_arg, &rem); in clone()
1025 return clone_execute(dp, skb, key, 0, actions, rem, last, in clone()
1163 const struct nlattr *actions, *cpl_arg; in execute_check_pkt_len() local
1182 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1188 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1189 actions = nla_next(actions, &rem); in execute_check_pkt_len()
1193 return clone_execute(dp, skb, key, 0, nla_data(actions), in execute_check_pkt_len()
1194 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1450 const struct nlattr *actions, int len, in clone_execute() argument
1473 if (actions) { /* Sample action */ in clone_execute()
1478 actions, len); in clone_execute()
1490 da = add_deferred_actions(skb, key, actions, len); in clone_execute()
1492 if (!actions) { /* Recirc action */ in clone_execute()
1503 if (actions) { /* Sample action */ in clone_execute()
1528 const struct nlattr *actions = da->actions; in process_deferred_actions() local
1531 if (actions) in process_deferred_actions()
1532 do_execute_actions(dp, skb, key, actions, actions_len); in process_deferred_actions()
1559 acts->actions, acts->actions_len); in ovs_execute_actions()