Use the correct thread stack alignment constraint, VPP-401

Change-Id: Ia7837dfaa9ed200145aeea19177fe549ab4bd087
Signed-off-by: Dave Barach <dave@barachs.net>
This commit is contained in:
Dave Barach
2016-09-12 16:44:08 -04:00
committed by Dave Wallace
parent 4802501f4d
commit 01e3caa095

View File

@ -465,10 +465,14 @@ vlib_unix_main (int argc, char *argv[])
}
unformat_free (&input);
/* allocate N x 1mb stacks, aligned e.g. to a 16mb boundary */
/*
* allocate n x VLIB_THREAD_STACK_SIZE stacks, aligned to a
* VLIB_THREAD_STACK_SIZE boundary
* See also: os_get_cpu_number() in vlib/vlib/threads.c
*/
thread_stacks = clib_mem_alloc_aligned
((uword) tm->n_thread_stacks * VLIB_THREAD_STACK_SIZE,
(VLIB_MAX_CPUS << VLIB_LOG2_THREAD_STACK_SIZE));
VLIB_THREAD_STACK_SIZE);
vec_validate (vlib_thread_stacks, tm->n_thread_stacks - 1);
for (i = 0; i < vec_len (vlib_thread_stacks); i++)