From d6ea087174d08d4032a16bdb89f4177fa57d9f4f Mon Sep 17 00:00:00 2001 From: Andrew Yourtchenko Date: Wed, 11 May 2022 13:41:20 +0000 Subject: api: revert the changes to atexit for shared memory client 2ca88ff97884ec9ed20a853b13cee6d86f9c9d0f introduced the change into the shared memory atexit, which breaks IPSec tests in some environments. Type: fix Fixes: 2ca88ff97884ec9ed20a853b13cee6d86f9c9d0f Change-Id: Ia132cb045e8d66f55e41d29cffdca3458d61096d Signed-off-by: Andrew Yourtchenko --- src/vlibmemory/memory_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vlibmemory') diff --git a/src/vlibmemory/memory_api.c b/src/vlibmemory/memory_api.c index b1d250b8a5f..ecdcc7260be 100644 --- a/src/vlibmemory/memory_api.c +++ b/src/vlibmemory/memory_api.c @@ -1029,7 +1029,7 @@ vl_api_client_index_to_input_queue (u32 index) static clib_error_t * setup_memclnt_exit (vlib_main_t * vm) { - atexit (vl_unmap_shmem_client); + atexit (vl_unmap_shmem); return 0; } -- cgit 1.2.3-korg