diff options
author | Florin Coras <fcoras@cisco.com> | 2021-06-22 20:04:46 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-06-29 15:22:05 +0000 |
commit | fa3884f8a1cf5493dd7733404811b63ee9c1e4d9 (patch) | |
tree | 71dc67e6a46fcc05921132901227bc230b06f1df /src/vcl/vcl_private.c | |
parent | fbab65bc1c186a3029804e32e678c0fe7f823f8e (diff) |
vcl: improvements to epoll lt
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: If585b9c48f67599c56a8c4b4a5139375bc4287f6
Diffstat (limited to 'src/vcl/vcl_private.c')
-rw-r--r-- | src/vcl/vcl_private.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vcl/vcl_private.c b/src/vcl/vcl_private.c index 3ed376e9534..6d1145bfb9e 100644 --- a/src/vcl/vcl_private.c +++ b/src/vcl/vcl_private.c @@ -133,8 +133,6 @@ vcl_worker_cleanup (vcl_worker_t * wrk, u8 notify_vpp) hash_free (wrk->session_index_by_vpp_handles); vec_free (wrk->mq_events); vec_free (wrk->mq_msg_vector); - vec_free (wrk->ep_level_evts); - vec_free (wrk->ep_level_evts_fl); vec_free (wrk->unhandled_evts_vector); vec_free (wrk->pending_session_wrk_updates); clib_bitmap_free (wrk->rd_bitmap); @@ -197,6 +195,7 @@ vcl_worker_alloc_and_init () } } + wrk->ep_lt_current = VCL_INVALID_SESSION_INDEX; wrk->session_index_by_vpp_handles = hash_create (0, sizeof (uword)); clib_time_init (&wrk->clib_time); vec_validate (wrk->mq_events, 64); |