From 01314771535ca46fdf4a07a7dcde67bb8b30e024 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Thu, 20 May 2021 14:01:11 -0700 Subject: quic: fix timer update Use ctx timer wheel not current thread since connects are done on main but the ctx is allocated on first worker. Type: fix Signed-off-by: Florin Coras Change-Id: Ibed371bed12970d0d1ae4572f36df0bb1fb70b0f --- src/plugins/quic/quic.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/plugins/quic') diff --git a/src/plugins/quic/quic.c b/src/plugins/quic/quic.c index 3223e479461..c4ef4598c10 100644 --- a/src/plugins/quic/quic.c +++ b/src/plugins/quic/quic.c @@ -1149,7 +1149,9 @@ quic_update_timer (quic_ctx_t * ctx) } } - tw = &quic_main.wrk_ctx[vlib_get_thread_index ()].timer_wheel; + ASSERT (vlib_get_thread_index () == ctx->c_thread_index || + vlib_get_thread_index () == 0); + tw = &quic_main.wrk_ctx[ctx->c_thread_index].timer_wheel; QUIC_DBG (4, "Timer set to %ld (int %ld) for ctx %u", next_timeout, next_interval, ctx->c_c_index); -- cgit 1.2.3-korg