X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fsession%2Fsession.c;h=256760079eef158bbb3c30fa445557c5d30a7d99;hb=7cd35f5d688d9e3bddf66602655274dae944b086;hp=f1d1a4e2cfefeb15cd6ce3ee65e5dfbd5ddcdf40;hpb=6bd8d3fbba74f8f80a0c09f87c6cbfddd054042f;p=vpp.git diff --git a/src/vnet/session/session.c b/src/vnet/session/session.c index f1d1a4e2cfe..256760079ee 100644 --- a/src/vnet/session/session.c +++ b/src/vnet/session/session.c @@ -197,26 +197,13 @@ session_program_transport_ctrl_evt (session_t * s, session_evt_type_t evt) session_send_ctrl_evt_to_thread (s, evt); } -static void -session_pool_realloc_rpc (void *rpc_args) -{ - session_worker_t *wrk; - u32 thread_index; - - thread_index = pointer_to_uword (rpc_args); - wrk = &session_main.wrk[thread_index]; - - pool_realloc_safe_aligned (wrk->sessions, CLIB_CACHE_LINE_BYTES); -} - session_t * session_alloc (u32 thread_index) { session_worker_t *wrk = &session_main.wrk[thread_index]; session_t *s; - pool_get_aligned_safe (wrk->sessions, s, thread_index, - session_pool_realloc_rpc, CLIB_CACHE_LINE_BYTES); + pool_get_aligned_safe (wrk->sessions, s, CLIB_CACHE_LINE_BYTES); clib_memset (s, 0, sizeof (*s)); s->session_index = s - wrk->sessions; s->thread_index = thread_index;