From: Florin Coras Date: Thu, 20 May 2021 21:01:11 +0000 (-0700) Subject: quic: fix timer update X-Git-Tag: v21.10-rc0~26 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=01314771535ca46fdf4a07a7dcde67bb8b30e024;p=vpp.git 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 --- 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);