Lines Matching refs:actions

39 	const struct nlattr *actions;  member
127 const struct nlattr *actions, in add_deferred_actions() argument
137 da->actions = actions; in add_deferred_actions()
158 const struct nlattr *actions, int len,
949 const struct nlattr *actions, int actions_len, in output_userspace() argument
995 upcall.actions = actions; in output_userspace()
1011 struct nlattr *actions = nla_data(attr); in dec_ttl_exception_handler() local
1013 if (nla_len(actions)) in dec_ttl_exception_handler()
1014 return clone_execute(dp, skb, key, 0, nla_data(actions), in dec_ttl_exception_handler()
1015 nla_len(actions), true, false); in dec_ttl_exception_handler()
1029 struct nlattr *actions; in sample() local
1038 actions = nla_next(sample_arg, &rem); in sample()
1048 return clone_execute(dp, skb, key, 0, actions, rem, last, in sample()
1060 struct nlattr *actions; in clone() local
1068 actions = nla_next(clone_arg, &rem); in clone()
1070 return clone_execute(dp, skb, key, 0, actions, rem, last, in clone()
1216 const struct nlattr *actions, *cpl_arg; in execute_check_pkt_len() local
1235 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1241 actions = nla_next(cpl_arg, &rem); in execute_check_pkt_len()
1242 actions = nla_next(actions, &rem); in execute_check_pkt_len()
1246 return clone_execute(dp, skb, key, 0, nla_data(actions), in execute_check_pkt_len()
1247 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1520 const struct nlattr *actions, int len, in clone_execute() argument
1543 if (actions) { /* Sample action */ in clone_execute()
1548 actions, len); in clone_execute()
1560 da = add_deferred_actions(skb, key, actions, len); in clone_execute()
1562 if (!actions) { /* Recirc action */ in clone_execute()
1573 if (actions) { /* Sample action */ in clone_execute()
1598 const struct nlattr *actions = da->actions; in process_deferred_actions() local
1601 if (actions) in process_deferred_actions()
1602 do_execute_actions(dp, skb, key, actions, actions_len); in process_deferred_actions()
1629 acts->actions, acts->actions_len); in ovs_execute_actions()