From d2c9e702098a4fcc45310d59e18bffc9626d3849 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Fri, 2 Aug 2019 10:53:01 -0700 Subject: vcl: initialize worker thread index and heap map slot Type: fix Change-Id: I7e762b43a2a074dc81cb7b0f6446e315e63ecae5 Signed-off-by: Florin Coras --- src/vcl/vcl_private.c | 3 +++ 1 file changed, 3 insertions(+) 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); -- cgit 1.2.3-korg