From: GordonNoonan Date: Wed, 4 Dec 2019 15:16:40 +0000 (+0000) Subject: vlib: fix startup-config-process stack overflow X-Git-Tag: v20.05-rc0~155 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=b2dbb36fc265b8996fc7fa310dda447d5b0479cb 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 --- 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* */