X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvpp%2Fvnet%2Fmain.c;h=a95d6a75993cdbd6fafd1e31ea8acfa4667d2596;hb=332bc084dd15a2c7b7b26bb00775c835c9630e8a;hp=ea8e4f88718e4d5b8f00d6dab3adc7153f5c9370;hpb=9fb6d40eb3d4a2da8f45187de773498b784596e6;p=vpp.git diff --git a/src/vpp/vnet/main.c b/src/vpp/vnet/main.c index ea8e4f88718..a95d6a75993 100644 --- a/src/vpp/vnet/main.c +++ b/src/vpp/vnet/main.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -107,6 +108,7 @@ main (int argc, char *argv[]) u32 size; int main_core = 1; cpu_set_t cpuset; + void *main_heap; #if __x86_64__ CLIB_UNUSED (const char *msg) @@ -273,8 +275,17 @@ defaulted: vl_msg_api_set_first_available_msg_id (VL_MSG_FIRST_AVAILABLE); /* Allocate main heap */ - if (clib_mem_init_thread_safe (0, main_heap_size)) + if ((main_heap = clib_mem_init_thread_safe (0, main_heap_size))) { + vlib_worker_thread_t tmp; + + /* Figure out which numa runs the main thread */ + vlib_get_thread_core_numa (&tmp, main_core); + __os_numa_index = tmp.numa_id; + + /* and use the main heap as that numa's numa heap */ + clib_mem_set_per_numa_heap (main_heap); + vm->init_functions_called = hash_create (0, /* value bytes */ 0); vpe_main_init (vm); return vlib_unix_main (argc, argv); @@ -501,7 +512,8 @@ VLIB_CLI_COMMAND (show_bihash_command, static) = const char * __asan_default_options (void) { - return "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1"; + return + "unmap_shadow_on_exit=1:disable_coredump=0:abort_on_error=1:detect_leaks=0"; } #endif /* CLIB_SANITIZE_ADDR */