diff options
author | GordonNoonan <gordon.noonan@intel.com> | 2019-12-04 15:16:40 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-12-17 18:14:55 +0000 |
commit | b2dbb36fc265b8996fc7fa310dda447d5b0479cb (patch) | |
tree | f7940dc972d77df3963a0a6fd2731362b06f68b2 /src/vlib | |
parent | 6dfd3785e4d65418f4330a73bf837912c37b8ec2 (diff) |
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 <gordon.noonan@intel.com>
Change-Id: I98b52c5596799017b97f802a8661b76cd1bb3245
Diffstat (limited to 'src/vlib')
-rwxr-xr-x | src/vlib/unix/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
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* */ |