From: Aloys Augustin Date: Mon, 16 Sep 2019 13:37:48 +0000 (+0000) Subject: vlib: fix cli process stack overflow X-Git-Tag: v20.05-rc0~838 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F74%2F22074%2F3;p=vpp.git vlib: fix cli process stack overflow Some cli processes, including bringing up an i40e interface with dpdk, consume more than the currently available stack space. Type: fix Fixes: VPP-1774 Signed-off-by: Aloys Augustin Change-Id: I86ceb9e6e07523d5e0f760b5922467f09a8d4006 --- diff --git a/src/vlib/unix/cli.c b/src/vlib/unix/cli.c index 640d5bc69c3..b3c8fafa41f 100644 --- a/src/vlib/unix/cli.c +++ b/src/vlib/unix/cli.c @@ -2864,7 +2864,7 @@ unix_cli_file_add (unix_cli_main_t * cm, char *name, int fd) static vlib_node_registration_t r = { .function = unix_cli_process, .type = VLIB_NODE_TYPE_PROCESS, - .process_log2_n_stack_bytes = 16, + .process_log2_n_stack_bytes = 17, }; r.name = name;