From 8ab656321e16cb474836b9f839c799aacf4dbcde Mon Sep 17 00:00:00 2001 From: GordonNoonan Date: Wed, 4 Dec 2019 15:16:40 +0000 Subject: vlib: fix startup-config-process stack overflow Type: fix Startup config setting an i40e/ice interface up in Debug VPP consumes more than the currently available stack space. Signed-off-by: GordonNoonan Change-Id: I98b52c5596799017b97f802a8661b76cd1bb3245 (cherry picked from commit b2dbb36fc265b8996fc7fa310dda447d5b0479cb) --- src/vlib/unix/main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vlib') diff --git a/src/vlib/unix/main.c b/src/vlib/unix/main.c index c478f60f995..9bfdab1efee 100755 --- a/src/vlib/unix/main.c +++ b/src/vlib/unix/main.c @@ -372,6 +372,7 @@ VLIB_REGISTER_NODE (startup_config_node,static) = { .function = startup_config_process, .type = VLIB_NODE_TYPE_PROCESS, .name = "startup-config-process", + .process_log2_n_stack_bytes = 18, }; /* *INDENT-ON* */ -- cgit 1.2.3-korg