Lines Matching refs:actions
92 const struct nlattr *actions, in add_deferred_actions() argument
101 da->actions = actions; in add_deferred_actions()
122 const struct nlattr *actions, int len,
926 const struct nlattr *actions, int actions_len, in output_userspace() argument
973 upcall.actions = actions; in output_userspace()
989 struct nlattr *actions = nla_data(attr); in dec_ttl_exception_handler() local
991 if (nla_len(actions)) in dec_ttl_exception_handler()
992 return clone_execute(dp, skb, key, 0, nla_data(actions), in dec_ttl_exception_handler()
993 nla_len(actions), true, false); in dec_ttl_exception_handler()
1007 struct nlattr *actions; in sample() local
1018 actions = nla_next(sample_arg, &rem); in sample()
1031 err = 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()
1204 const struct nlattr *actions, *cpl_arg; in execute_check_pkt_len() local
1223 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1229 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1230 actions = nla_next(actions, &rem); in execute_check_pkt_len()
1234 return clone_execute(dp, skb, key, 0, nla_data(actions), in execute_check_pkt_len()
1235 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1547 const struct nlattr *actions, int len, in clone_execute() argument
1569 if (actions) { /* Sample action */ in clone_execute()
1574 actions, len); in clone_execute()
1586 da = add_deferred_actions(skb, key, actions, len); in clone_execute()
1588 if (!actions) { /* Recirc action */ in clone_execute()
1599 if (actions) { /* Sample action */ in clone_execute()
1624 const struct nlattr *actions = da->actions; in process_deferred_actions() local
1627 if (actions) in process_deferred_actions()
1628 do_execute_actions(dp, skb, key, actions, actions_len); in process_deferred_actions()
1655 acts->actions, acts->actions_len); in ovs_execute_actions()