From: Benoît Ganne Date: Wed, 1 May 2019 08:10:48 +0000 (+0200) Subject: vlib: align stack on OS page size X-Git-Tag: v20.01-rc0~692 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=3a95003d65bd2381c51b1054a6417d79eaad6172;p=vpp.git vlib: align stack on OS page size Change-Id: I6d7589c967c5801a6a21a213723e2a895269e105 Signed-off-by: Benoît Ganne --- diff --git a/src/vlib/unix/main.c b/src/vlib/unix/main.c index 24ae416dbf4..ed909b65feb 100755 --- a/src/vlib/unix/main.c +++ b/src/vlib/unix/main.c @@ -632,7 +632,7 @@ vlib_thread_stack_init (uword thread_index) { vec_validate (vlib_thread_stacks, thread_index); vlib_thread_stacks[thread_index] = clib_mem_alloc_aligned - (VLIB_THREAD_STACK_SIZE, VLIB_THREAD_STACK_SIZE); + (VLIB_THREAD_STACK_SIZE, clib_mem_get_page_size ()); /* * Disallow writes to the bottom page of the stack, to