Lines Matching refs:start
96 size_t start = rounddown(offset, sizeof(long)); in update_range() local
104 if (range->start == range->end) { in update_range()
105 range->start = start; in update_range()
110 if (range->start > start) in update_range()
111 range->start = start; in update_range()
1963 struct nlattr *start; in nsh_key_to_nlattr() local
1965 start = nla_nest_start_noflag(skb, OVS_KEY_ATTR_NSH); in nsh_key_to_nlattr()
1966 if (!start) in nsh_key_to_nlattr()
1980 nla_nest_end(skb, start); in nsh_key_to_nlattr()
2531 int rem, start, err; in validate_and_copy_sample() local
2553 start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SAMPLE, log); in validate_and_copy_sample()
2554 if (start < 0) in validate_and_copy_sample()
2555 return start; in validate_and_copy_sample()
2583 add_nested_action_end(*sfa, start); in validate_and_copy_sample()
2597 int start, action_start, err, rem; in validate_and_copy_dec_ttl() local
2628 start = add_nested_action_start(sfa, OVS_ACTION_ATTR_DEC_TTL, log); in validate_and_copy_dec_ttl()
2629 if (start < 0) in validate_and_copy_dec_ttl()
2630 return start; in validate_and_copy_dec_ttl()
2643 add_nested_action_end(*sfa, start); in validate_and_copy_dec_ttl()
2655 int start, err; in validate_and_copy_clone() local
2661 start = add_nested_action_start(sfa, OVS_ACTION_ATTR_CLONE, log); in validate_and_copy_clone()
2662 if (start < 0) in validate_and_copy_clone()
2663 return start; in validate_and_copy_clone()
2678 add_nested_action_end(*sfa, start); in validate_and_copy_clone()
2697 mask->range.start = mask->range.end = 0; in ovs_match_init()
2738 int err = 0, start, opts_type; in validate_and_copy_set_tun() local
2764 start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SET, log); in validate_and_copy_set_tun()
2765 if (start < 0) in validate_and_copy_set_tun()
2766 return start; in validate_and_copy_set_tun()
2805 add_nested_action_end(*sfa, start); in validate_and_copy_set_tun()
2980 int start, len = key_len * 2; in validate_set() local
2985 start = add_nested_action_start(sfa, in validate_set()
2988 if (start < 0) in validate_set()
2989 return start; in validate_set()
3003 add_nested_action_end(*sfa, start); in validate_set()
3049 int start, err; in validate_and_copy_check_pkt_len() local
3069 start = add_nested_action_start(sfa, OVS_ACTION_ATTR_CHECK_PKT_LEN, in validate_and_copy_check_pkt_len()
3071 if (start < 0) in validate_and_copy_check_pkt_len()
3072 return start; in validate_and_copy_check_pkt_len()
3112 add_nested_action_end(*sfa, start); in validate_and_copy_check_pkt_len()
3486 struct nlattr *start, *ac_start = NULL, *sample_arg; in sample_action_to_attr() local
3491 start = nla_nest_start_noflag(skb, OVS_ACTION_ATTR_SAMPLE); in sample_action_to_attr()
3492 if (!start) in sample_action_to_attr()
3515 nla_nest_cancel(skb, start); in sample_action_to_attr()
3518 nla_nest_end(skb, start); in sample_action_to_attr()
3527 struct nlattr *start; in clone_action_to_attr() local
3530 start = nla_nest_start_noflag(skb, OVS_ACTION_ATTR_CLONE); in clone_action_to_attr()
3531 if (!start) in clone_action_to_attr()
3539 nla_nest_cancel(skb, start); in clone_action_to_attr()
3541 nla_nest_end(skb, start); in clone_action_to_attr()
3549 struct nlattr *start, *ac_start = NULL; in check_pkt_len_action_to_attr() local
3554 start = nla_nest_start_noflag(skb, OVS_ACTION_ATTR_CHECK_PKT_LEN); in check_pkt_len_action_to_attr()
3555 if (!start) in check_pkt_len_action_to_attr()
3607 nla_nest_end(skb, start); in check_pkt_len_action_to_attr()
3611 nla_nest_cancel(skb, start); in check_pkt_len_action_to_attr()
3618 struct nlattr *start, *action_start; in dec_ttl_action_to_attr() local
3622 start = nla_nest_start_noflag(skb, OVS_ACTION_ATTR_DEC_TTL); in dec_ttl_action_to_attr()
3623 if (!start) in dec_ttl_action_to_attr()
3649 nla_nest_end(skb, start); in dec_ttl_action_to_attr()
3653 nla_nest_cancel(skb, start); in dec_ttl_action_to_attr()
3661 struct nlattr *start; in set_action_to_attr() local
3669 start = nla_nest_start_noflag(skb, OVS_ACTION_ATTR_SET); in set_action_to_attr()
3670 if (!start) in set_action_to_attr()
3679 nla_nest_end(skb, start); in set_action_to_attr()