From: Florin Coras Date: Thu, 7 Apr 2022 19:58:13 +0000 (-0700) Subject: session: safe pools for cut-through sessions X-Git-Tag: v23.06-rc0~129 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=9688b3bda2a1c27c2e831c36d9e4432d552dfe58;p=vpp.git session: safe pools for cut-through sessions Type: improvement Signed-off-by: Florin Coras Change-Id: I6dd400285ae475974c416f9b94e8a5b4b6257ca1 --- diff --git a/src/vnet/session/application_local.c b/src/vnet/session/application_local.c index d2a69dc282b..f81e6bb067e 100644 --- a/src/vnet/session/application_local.c +++ b/src/vnet/session/application_local.c @@ -81,7 +81,8 @@ ct_connection_alloc (u32 thread_index) ct_worker_t *wrk = ct_worker_get (thread_index); ct_connection_t *ct; - pool_get_zero (wrk->connections, ct); + pool_get_aligned_safe (wrk->connections, ct, CLIB_CACHE_LINE_BYTES); + clib_memset (ct, 0, sizeof (*ct)); ct->c_c_index = ct - wrk->connections; ct->c_thread_index = thread_index; ct->client_wrk = ~0;