From b2dbb36fc265b8996fc7fa310dda447d5b0479cb Mon Sep 17 00:00:00 2001 From: GordonNoonan Date: Wed, 4 Dec 2019 15:16:40 +0000 Subject: [PATCH] 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 --- src/vlib/unix/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vlib/unix/main.c b/src/vlib/unix/main.c index f306b2ef93f..08e593747e0 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* */ -- 2.16.6