X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvcl%2Fvcl_cfg.c;h=8baae82942d3baf0dc06dae612f6abebed5a0e72;hb=47c40e2d944c9a29677d0542103207ba8372b66a;hp=f7bddefbb3b4ce9e65c9d9610b9b1d75c309a62b;hpb=993683150202254c6ba8dd43e087a7229edd5d4c;p=vpp.git diff --git a/src/vcl/vcl_cfg.c b/src/vcl/vcl_cfg.c index f7bddefbb3b..8baae82942d 100644 --- a/src/vcl/vcl_cfg.c +++ b/src/vcl/vcl_cfg.c @@ -21,8 +21,8 @@ */ static vppcom_main_t _vppcom_main = { .debug = VPPCOM_DEBUG_INIT, - .init = 0, - .my_client_index = ~0 + .is_init = 0, + .app_index = ~0, }; vppcom_main_t *vcm = &_vppcom_main; @@ -33,6 +33,7 @@ vppcom_cfg_init (vppcom_cfg_t * vcl_cfg) ASSERT (vcl_cfg); vcl_cfg->heapsize = (256ULL << 20); + vcl_cfg->max_workers = 16; vcl_cfg->vpp_api_q_length = 1024; vcl_cfg->segment_baseva = 0x200000000ULL; vcl_cfg->segment_size = (256 << 20); @@ -169,6 +170,7 @@ vppcom_cfg_heapsize (char *conf_fname) goto defaulted; } } + free (argv[i]); } defaulted: @@ -230,8 +232,7 @@ vppcom_cfg_read_file (char *conf_fname) if (fstat (fd, &s) < 0) { - VCFG_DBG (0, - "VCL<%d>: failed to stat `%s', using default configuration", + VCFG_DBG (0, "VCL<%d>: failed to stat `%s' using default configuration", getpid (), conf_fname); goto file_done; } @@ -253,19 +254,24 @@ vppcom_cfg_read_file (char *conf_fname) if (unformat (line_input, "vcl {")) { vc_cfg_input = 1; + unformat_free (line_input); continue; } if (vc_cfg_input) { - if (unformat (line_input, "heapsize %s", &chroot_path)) + if (unformat (line_input, "heapsize %U", unformat_memory_size, + &vcl_cfg->heapsize)) { - vec_terminate_c_string (chroot_path); - VCFG_DBG (0, - "VCL<%d>: configured heapsize %s, actual heapsize %ld" - " (0x%lx)", getpid (), chroot_path, vcl_cfg->heapsize, + VCFG_DBG (0, "VCL<%d>: configured heapsize %lu", getpid (), vcl_cfg->heapsize); - vec_free (chroot_path); + } + else + if (unformat + (line_input, "max-workers %u", &vcl_cfg->max_workers)) + { + VCFG_DBG (0, "VCL<%d>: configured max-workers %u", getpid (), + vcl_cfg->max_workers); } else if (unformat (line_input, "api-prefix %s", &chroot_path)) { @@ -276,9 +282,8 @@ vppcom_cfg_read_file (char *conf_fname) chroot_path, 0); vl_set_memory_root_path ((char *) chroot_path); - VCFG_DBG (0, - "VCL<%d>: configured api-prefix (%s) and api filename" - " (%s)", getpid (), chroot_path, + VCFG_DBG (0, "VCL<%d>: configured api-prefix (%s) and api " + "filename (%s)", getpid (), chroot_path, vcl_cfg->vpp_api_filename); chroot_path = 0; /* Don't vec_free() it! */ } @@ -489,6 +494,7 @@ vppcom_cfg_read_file (char *conf_fname) vc_cfg_input = 0; VCFG_DBG (0, "VCL<%d>: completed parsing vppcom config!", getpid ()); + unformat_free (line_input); goto input_done; } else @@ -500,6 +506,7 @@ vppcom_cfg_read_file (char *conf_fname) &line_input->buffer[line_input->index]); } } + unformat_free (line_input); } }