From: Yu Ping Date: Wed, 19 Feb 2020 17:40:53 +0000 (+0800) Subject: tls: need to use thread id to fetch the event X-Git-Tag: v20.09-rc0~556 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F70%2F25270%2F1;p=vpp.git tls: need to use thread id to fetch the event Type: fix Change-Id: I429351f04a2865be4a289a3021277f9b2ced902b Signed-off-by: Yu Ping --- diff --git a/src/plugins/tlsopenssl/tls_async.c b/src/plugins/tlsopenssl/tls_async.c index 86604667eb8..fdfcf3a6c52 100644 --- a/src/plugins/tlsopenssl/tls_async.c +++ b/src/plugins/tlsopenssl/tls_async.c @@ -251,8 +251,7 @@ tls_async_openssl_callback (SSL * s, void *cb_arg) int *evt_run_head = &om->queue[thread_index].evt_run_head; TLS_DBG (2, "Set event %d to run\n", event_index); - - event = openssl_evt_get (event_index); + event = openssl_evt_get_w_thread (event_index, thread_index); /* Happend when a recursive case, especially in SW simulation */ if (PREDICT_FALSE (event->status == SSL_ASYNC_READY))