From: Florin Coras Date: Fri, 2 Aug 2019 17:53:01 +0000 (-0700) Subject: vcl: initialize worker thread index and heap map slot X-Git-Tag: v20.01-rc0~24 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F38%2F21038%2F2;p=vpp.git vcl: initialize worker thread index and heap map slot Type: fix Change-Id: I7e762b43a2a074dc81cb7b0f6446e315e63ecae5 Signed-off-by: Florin Coras --- diff --git a/src/vcl/vcl_private.c b/src/vcl/vcl_private.c index 3e82becfc93..13794ea4f9c 100644 --- a/src/vcl/vcl_private.c +++ b/src/vcl/vcl_private.c @@ -191,6 +191,9 @@ vcl_worker_alloc_and_init () if (vcl_get_worker_index () != ~0) return 0; + /* Use separate heap map entry for worker */ + clib_mem_set_thread_index (); + if (pool_elts (vcm->workers) == vcm->cfg.max_workers) { VDBG (0, "max-workers %u limit reached", vcm->cfg.max_workers);