Lines Matching refs:last
157 bool last, bool clone_flow_key);
1008 bool last) in sample() argument
1023 if (last) in sample()
1029 return clone_execute(dp, skb, key, 0, actions, rem, last, in sample()
1039 bool last) in clone() argument
1051 return clone_execute(dp, skb, key, 0, actions, rem, last, in clone()
1167 const struct nlattr *a, bool last) in execute_recirc() argument
1181 return clone_execute(dp, skb, key, recirc_id, NULL, 0, last, true); in execute_recirc()
1186 const struct nlattr *attr, bool last) in execute_check_pkt_len() argument
1220 nla_len(actions), last, clone_flow_key); in execute_check_pkt_len()
1293 bool last = nla_is_last(a, rem); in do_execute_actions() local
1295 err = execute_recirc(dp, skb, key, a, last); in do_execute_actions()
1296 if (last) { in do_execute_actions()
1316 bool last = nla_is_last(a, rem); in do_execute_actions() local
1318 err = sample(dp, skb, key, a, last); in do_execute_actions()
1319 if (last) in do_execute_actions()
1376 bool last = nla_is_last(a, rem); in do_execute_actions() local
1378 err = clone(dp, skb, key, a, last); in do_execute_actions()
1379 if (last) in do_execute_actions()
1386 bool last = nla_is_last(a, rem); in do_execute_actions() local
1388 err = execute_check_pkt_len(dp, skb, key, a, last); in do_execute_actions()
1389 if (last) in do_execute_actions()
1415 bool last, bool clone_flow_key) in clone_execute() argument
1420 skb = last ? skb : skb_clone(skb, GFP_ATOMIC); in clone_execute()