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,
908 const struct nlattr *actions, int actions_len, in output_userspace() argument
954 upcall.actions = actions; in output_userspace()
970 struct nlattr *actions = nla_data(attr); in dec_ttl_exception_handler() local
972 if (nla_len(actions)) in dec_ttl_exception_handler()
973 return clone_execute(dp, skb, key, 0, nla_data(actions), in dec_ttl_exception_handler()
974 nla_len(actions), true, false); in dec_ttl_exception_handler()
988 struct nlattr *actions; in sample() local
997 actions = nla_next(sample_arg, &rem); in sample()
1007 return clone_execute(dp, skb, key, 0, actions, rem, last, in sample()
1019 struct nlattr *actions; in clone() local
1027 actions = nla_next(clone_arg, &rem); in clone()
1029 return clone_execute(dp, skb, key, 0, actions, rem, last, in clone()
1167 const struct nlattr *actions, *cpl_arg; in execute_check_pkt_len() local
1186 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1192 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1193 actions = nla_next(actions, &rem); in execute_check_pkt_len()
1197 return clone_execute(dp, skb, key, 0, nla_data(actions), in execute_check_pkt_len()
1198 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1455 const struct nlattr *actions, int len, in clone_execute() argument
1478 if (actions) { /* Sample action */ in clone_execute()
1483 actions, len); in clone_execute()
1495 da = add_deferred_actions(skb, key, actions, len); in clone_execute()
1497 if (!actions) { /* Recirc action */ in clone_execute()
1508 if (actions) { /* Sample action */ in clone_execute()
1533 const struct nlattr *actions = da->actions; in process_deferred_actions() local
1536 if (actions) in process_deferred_actions()
1537 do_execute_actions(dp, skb, key, actions, actions_len); in process_deferred_actions()
1564 acts->actions, acts->actions_len); in ovs_execute_actions()