plugins/dpdk: align memory to avoid potential segfault and false sharing
VPP-1025 Change-Id: I87bb8f38974a7be274c1b1d205f5513e7d068e48 Signed-off-by: Georgina <georgina.sheehan@intel.com>
This commit is contained in:

committed by
Damjan Marion

parent
5e62e58e4e
commit
abc914b7da
@@ -188,7 +188,7 @@ fill_free_list (vlib_main_t * vm,
|
|||||||
/* Always allocate new buffers in reasonably large sized chunks. */
|
/* Always allocate new buffers in reasonably large sized chunks. */
|
||||||
n = clib_max (n, fl->min_n_buffers_each_physmem_alloc);
|
n = clib_max (n, fl->min_n_buffers_each_physmem_alloc);
|
||||||
|
|
||||||
vec_validate (vm->mbuf_alloc_list, n - 1);
|
vec_validate_aligned (vm->mbuf_alloc_list, n - 1, CLIB_CACHE_LINE_BYTES);
|
||||||
|
|
||||||
if (rte_mempool_get_bulk (rmp, vm->mbuf_alloc_list, n) < 0)
|
if (rte_mempool_get_bulk (rmp, vm->mbuf_alloc_list, n) < 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user