X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Ftest_vec.c;h=9f336a0a0955d0d0c037efbd29f415ab04e1f451;hb=71fc1947033854cd57c362df69f7f2e578af7d1b;hp=4bfffd121a24cd67a690ec1878d51553587bbe1c;hpb=299571aca34d36e637e43cfbba6275662d0d7795;p=vpp.git diff --git a/src/vppinfra/test_vec.c b/src/vppinfra/test_vec.c index 4bfffd121a2..9f336a0a095 100644 --- a/src/vppinfra/test_vec.c +++ b/src/vppinfra/test_vec.c @@ -211,6 +211,8 @@ dump_call_stats (uword * stats) ({ \ elt_type *_v (v) = NULL; \ uword _v (l) = (len); \ + vec_attr_t _v (attr) = { .hdr_sz = (hdr_bytes), \ + .elt_sz = sizeof (elt_type) }; \ uword _v (h) = (hdr_bytes); \ u8 *_v (hdr); \ \ @@ -221,7 +223,7 @@ dump_call_stats (uword * stats) if (_v (l) == ~0) \ _v (l) = bounded_random_u32 (&(seed), 0, MAX_VEC_LEN); \ \ - _v (v) = _vec_realloc (NULL, _v (l), sizeof (elt_type), _v (h), 0, 0); \ + _v (v) = _vec_alloc_internal (_v (l), &_v (attr)); \ fill_with_random_data (_v (v), vec_bytes (_v (v)), (seed)); \ \ /* Fill header with random data as well. */ \ @@ -676,7 +678,7 @@ validate_vec_init_h (uword num_elts, uword hdr_bytes) uword len; elt_t *new; - new = vec_new_ha (elt_t, num_elts, hdr_bytes, 0); + new = vec_new_generic (elt_t, num_elts, hdr_bytes, 0, 0); len = vec_len (new); ASSERT (len == num_elts);