vppinfra: deprecate vec numa macros
[vpp.git] / src / vppinfra / pool.c
index 0cd14d4..ff7278b 100644 (file)
@@ -48,9 +48,9 @@ _pool_init_fixed (void **pool_ptr, u32 elt_size, u32 max_elts)
   ASSERT (elt_size);
   ASSERT (max_elts);
 
-  v = vec_resize_allocate_memory (0, max_elts, elt_size * max_elts,
-                                 sizeof (pool_header_t),
-                                 CLIB_CACHE_LINE_BYTES, VEC_NUMA_UNSPECIFIED);
+  v =
+    vec_resize_allocate_memory (0, max_elts, elt_size * max_elts,
+                               sizeof (pool_header_t), CLIB_CACHE_LINE_BYTES);
 
   ph = pool_header (v);
   ph->max_elts = max_elts;