From 3a95003d65bd2381c51b1054a6417d79eaad6172 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Ganne?= Date: Wed, 1 May 2019 10:10:48 +0200 Subject: [PATCH] vlib: align stack on OS page size MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I6d7589c967c5801a6a21a213723e2a895269e105 Signed-off-by: Benoît Ganne --- src/vlib/unix/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.16.6