blob: acb9924ac44efcb0f83be68fd55fd22cfd177f8a [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * main.h: VLIB main data structure
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#ifndef included_vlib_main_h
41#define included_vlib_main_h
42
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +000043#include <vppinfra/callback_data.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#include <vppinfra/elog.h>
45#include <vppinfra/format.h>
46#include <vppinfra/longjmp.h>
47#include <vppinfra/pool.h>
48#include <vppinfra/random_buffer.h>
49#include <vppinfra/time.h>
50
51#include <pthread.h>
52
53
54/* By default turn off node/error event logging.
55 Override with -DVLIB_ELOG_MAIN_LOOP */
56#ifndef VLIB_ELOG_MAIN_LOOP
57#define VLIB_ELOG_MAIN_LOOP 0
58#endif
59
Dave Barach5ecd5a52019-02-25 15:27:28 -050060typedef struct
61{
Dave Barach87d24db2019-12-04 17:19:12 -050062 u8 trace_filter_enable;
Jon Loeliger5c1e48c2020-10-15 14:41:36 -040063 u32 classify_table_index;
Dave Barach87d24db2019-12-04 17:19:12 -050064} vlib_trace_filter_t;
65
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +000066typedef enum
67{
68 VLIB_NODE_RUNTIME_PERF_BEFORE,
69 VLIB_NODE_RUNTIME_PERF_AFTER,
70 VLIB_NODE_RUNTIME_PERF_RESET,
71} vlib_node_runtime_perf_call_type_t;
72
73typedef struct
74{
75 struct vlib_main_t *vm;
76 vlib_node_runtime_t *node;
77 vlib_frame_t *frame;
78 uword packets;
79 u64 cpu_time_now;
80 vlib_node_runtime_perf_call_type_t call_type;
81} vlib_node_runtime_perf_callback_args_t;
82
83struct vlib_node_runtime_perf_callback_data_t;
84
85typedef void (*vlib_node_runtime_perf_callback_fp_t)
86 (struct vlib_node_runtime_perf_callback_data_t * data,
87 vlib_node_runtime_perf_callback_args_t * args);
88
89typedef struct vlib_node_runtime_perf_callback_data_t
90{
91 vlib_node_runtime_perf_callback_fp_t fp;
92 union
93 {
94 void *v;
95 u64 u;
96 } u[3];
97} vlib_node_runtime_perf_callback_data_t;
98
99clib_callback_data_typedef (vlib_node_runtime_perf_callback_set_t,
100 vlib_node_runtime_perf_callback_data_t);
101
Dave Barach9b8ffd92016-07-08 08:13:45 -0400102typedef struct vlib_main_t
103{
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200104 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 /* Instruction level timing state. */
106 clib_time_t clib_time;
Dave Baracha4324a92019-02-19 17:05:30 -0500107 /* Offset from main thread time */
108 f64 time_offset;
109 f64 time_last_barrier_release;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
111 /* Time stamp of last node dispatch. */
112 u64 cpu_time_last_node_dispatch;
113
114 /* Time stamp when main loop was entered (time 0). */
115 u64 cpu_time_main_loop_start;
116
117 /* Incremented once for each main loop. */
Neale Ranns42845dd2020-05-26 13:12:17 +0000118 volatile u32 main_loop_count;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119
120 /* Count of vectors processed this main loop. */
121 u32 main_loop_vectors_processed;
122 u32 main_loop_nodes_processed;
123
Dave Baracha8df85c2019-10-01 13:34:23 -0400124 /* Internal node vectors, calls */
125 u64 internal_node_vectors;
126 u64 internal_node_calls;
127 u64 internal_node_vectors_last_clear;
128 u64 internal_node_calls_last_clear;
129
130 /* Instantaneous vector rate */
131 u32 internal_node_last_vectors_per_main_loop;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132
Dave Barach4d1a8662018-09-10 12:31:15 -0400133 /* Main loop hw / sw performance counters */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000134 vlib_node_runtime_perf_callback_set_t vlib_node_runtime_perf_callbacks;
135
Damjan Marion8b60fb02020-11-27 20:15:17 +0100136 /* dispatch wrapper function */
137 vlib_node_function_t *dispatch_wrapper_fn;
138
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139 /* Every so often we switch to the next counter. */
140#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE 7
141
142 /* Jump target to exit main loop with given code. */
143 u32 main_loop_exit_set;
Dave Barach903651c2017-10-13 19:16:56 -0400144 /* Set e.g. in the SIGTERM signal handler, checked in a safe place... */
145 volatile u32 main_loop_exit_now;
Pierre Pfisterc26cc722021-09-10 16:38:03 +0200146 /* Exit status that will be returned by the process upon exit. */
147 volatile int main_loop_exit_status;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 clib_longjmp_t main_loop_exit;
149#define VLIB_MAIN_LOOP_EXIT_NONE 0
150#define VLIB_MAIN_LOOP_EXIT_PANIC 1
151 /* Exit via CLI. */
152#define VLIB_MAIN_LOOP_EXIT_CLI 2
153
154 /* Error marker to use when exiting main loop. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400155 clib_error_t *main_loop_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
Damjan Mariond50e3472019-01-20 00:03:56 +0100157 /* buffer main structure. */
158 vlib_buffer_main_t *buffer_main;
159
Damjan Marion68b4da62018-09-30 18:26:20 +0200160 /* physical memory main structure. */
161 vlib_physmem_main_t physmem_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
163 /* Node graph main structure. */
164 vlib_node_main_t node_main;
165
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 /* Packet trace buffer. */
167 vlib_trace_main_t trace_main;
168
169 /* Error handling. */
170 vlib_error_main_t error_main;
171
172 /* Punt packets to underlying operating system for when fast switching
173 code does not know what to do. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400174 void (*os_punt_frame) (struct vlib_main_t * vm,
175 struct vlib_node_runtime_t * node,
176 vlib_frame_t * frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 /* Stream index to use for distribution when MC is enabled. */
179 u32 mc_stream_index;
180
Damjan Marionfd8deb42021-03-06 12:26:28 +0100181 /* Hash table to record which init functions have been called. */
182 uword *worker_init_functions_called;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
Damjan Marionfd8deb42021-03-06 12:26:28 +0100184 vlib_one_time_waiting_process_t *procs_waiting_for_mc_stream_join;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Dave Barachc3a06552018-10-01 09:25:32 -0400186 /* Event logger trace flags */
187 int elog_trace_api_messages;
188 int elog_trace_cli_commands;
Dave Barach900cbad2019-01-31 19:12:51 -0500189 int elog_trace_graph_dispatch;
190 int elog_trace_graph_circuit;
191 u32 elog_trace_graph_circuit_node_index;
Dave Barachc3a06552018-10-01 09:25:32 -0400192
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 /* Node call and return event types. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194 elog_event_type_t *node_call_elog_event_types;
195 elog_event_type_t *node_return_elog_event_types;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
Dave Barach9b8ffd92016-07-08 08:13:45 -0400197 elog_event_type_t *error_elog_event_types;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
199 /* Seed for random number generator. */
200 uword random_seed;
201
202 /* Buffer of random data for various uses. */
203 clib_random_buffer_t random_buffer;
204
Damjan Marion0a78fa12019-01-19 23:45:36 +0100205 /* thread, cpu and numa_node indices */
Damjan Marion586afd72017-04-05 19:18:20 +0200206 u32 thread_index;
Damjan Marionee721412019-01-27 17:54:11 +0100207 u32 cpu_id;
Damjan Marion0a78fa12019-01-19 23:45:36 +0100208 u32 numa_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
Dave Barachdae88b92016-04-19 09:38:35 -0400210 /* control-plane API queue signal pending, length indication */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 volatile u32 queue_signal_pending;
Dave Barachdae88b92016-04-19 09:38:35 -0400212 volatile u32 api_queue_nonempty;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400213 void (*queue_signal_callback) (struct vlib_main_t *);
Damjan Marionce359db2017-03-16 16:15:38 +0100214
Dave Barach4d1a8662018-09-10 12:31:15 -0400215 /* Top of (worker) dispatch loop callback */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000216 void (**volatile worker_thread_main_loop_callbacks)
217 (struct vlib_main_t *, u64 t);
Dave Barach5f2cfb22019-05-20 10:28:57 -0400218 void (**volatile worker_thread_main_loop_callback_tmp)
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000219 (struct vlib_main_t *, u64 t);
Dave Barach5f2cfb22019-05-20 10:28:57 -0400220 clib_spinlock_t worker_thread_main_loop_callback_lock;
Dave Barach4d1a8662018-09-10 12:31:15 -0400221
Damjan Marionce359db2017-03-16 16:15:38 +0100222 /* debugging */
223 volatile int parked_at_barrier;
Dave Barach81481312017-05-16 09:08:14 -0400224
Dave Barach000a0292020-02-17 17:07:12 -0500225 /* Dispatch loop time accounting */
226 u64 loops_this_reporting_interval;
227 f64 loop_interval_end;
228 f64 loop_interval_start;
229 f64 loops_per_second;
230 f64 seconds_per_loop;
231 f64 damping_constant;
232
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100233 /*
234 * Barrier epoch - Set to current time, each time barrier_sync or
235 * barrier_release is called with zero recursion.
236 */
237 f64 barrier_epoch;
238
239 /* Earliest barrier can be closed again */
240 f64 barrier_no_close_before;
241
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000242 /* Barrier counter callback */
243 void (**volatile barrier_perf_callbacks)
244 (struct vlib_main_t *, u64 t, int leave);
245 void (**volatile barrier_perf_callbacks_tmp)
246 (struct vlib_main_t *, u64 t, int leave);
247
Dave Barach80965f52019-03-11 09:57:38 -0400248 /* Need to check the frame queues */
249 volatile uword check_frame_queues;
250
Dave Barachf6c68d72018-11-01 08:12:52 -0400251 /* RPC requests, main thread only */
Dave Barach2877eee2017-12-15 12:22:57 -0500252 uword *pending_rpc_requests;
Dave Barachf6c68d72018-11-01 08:12:52 -0400253 uword *processing_rpc_requests;
254 clib_spinlock_t pending_rpc_lock;
Dave Barach2877eee2017-12-15 12:22:57 -0500255
Dave Barachc74b43c2020-04-09 17:24:07 -0400256 /* buffer fault injector */
257 u32 buffer_alloc_success_seed;
258 f64 buffer_alloc_success_rate;
259
Damjan Marioncea46522020-05-21 16:47:05 +0200260#ifdef CLIB_SANITIZE_ADDR
261 /* address sanitizer stack save */
262 void *asan_stack_save;
263#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264} vlib_main_t;
265
Damjan Marionfd8deb42021-03-06 12:26:28 +0100266typedef struct vlib_global_main_t
267{
268 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
269
270 /* Per-thread Mains */
271 vlib_main_t **vlib_mains;
272
273 /* Name for e.g. syslog. */
274 char *name;
275
Damjan Marion2e90b292022-04-04 18:48:11 +0200276 /* full path to main executable */
277 char *exec_path;
278
279 /* command line arguments */
280 u8 **argv;
281
Damjan Marionfd8deb42021-03-06 12:26:28 +0100282 /* post-mortem callbacks */
283 void (**post_mortem_callbacks) (void);
284
285 /*
286 * Need to call vlib_worker_thread_node_runtime_update before
287 * releasing worker thread barrier.
288 */
289 int need_vlib_worker_thread_node_runtime_update;
290
291 /* Command line interface. */
292 vlib_cli_main_t cli_main;
293
294 /* Node registrations added by constructors */
295 vlib_node_registration_t *node_registrations;
296
297 /* Event logger. */
298 elog_main_t elog_main;
299 u32 configured_elog_ring_size;
300
301 /* Packet trace capture filter */
302 vlib_trace_filter_t trace_filter;
303
304 /* List of init functions to call, setup by constructors */
305 _vlib_init_function_list_elt_t *init_function_registrations;
306 _vlib_init_function_list_elt_t *main_loop_enter_function_registrations;
307 _vlib_init_function_list_elt_t *main_loop_exit_function_registrations;
308 _vlib_init_function_list_elt_t *worker_init_function_registrations;
Damjan Marion321bd102022-06-01 00:45:18 +0200309 _vlib_init_function_list_elt_t *num_workers_change_function_registrations;
Damjan Marionfd8deb42021-03-06 12:26:28 +0100310 _vlib_init_function_list_elt_t *api_init_function_registrations;
311 vlib_config_function_runtime_t *config_function_registrations;
312
313 /* Hash table to record which init functions have been called. */
314 uword *init_functions_called;
315
316} vlib_global_main_t;
317
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318/* Global main structure. */
Damjan Marionfd8deb42021-03-06 12:26:28 +0100319extern vlib_global_main_t vlib_global_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Damjan Marione9d52d52017-03-09 15:42:26 +0100321void vlib_worker_loop (vlib_main_t * vm);
322
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323always_inline f64
324vlib_time_now (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325{
Dave Barach77d98382020-04-28 18:00:21 -0400326#if CLIB_DEBUG > 0
327 extern __thread uword __os_thread_index;
328#endif
329 /*
330 * Make sure folks don't pass &vlib_global_main from a worker thread.
331 */
332 ASSERT (vm->thread_index == __os_thread_index);
Dave Baracha4324a92019-02-19 17:05:30 -0500333 return clib_time_now (&vm->clib_time) + vm->time_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335
336always_inline f64
337vlib_time_now_ticks (vlib_main_t * vm, u64 n)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338{
339 return clib_time_now_internal (&vm->clib_time, n);
340}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341
342/* Busy wait for specified time. */
343always_inline void
344vlib_time_wait (vlib_main_t * vm, f64 wait)
345{
346 f64 t = vlib_time_now (vm);
347 f64 limit = t + wait;
348 while (t < limit)
349 t = vlib_time_now (vm);
350}
351
352/* Time a piece of code. */
353#define vlib_time_code(vm,body) \
354do { \
355 f64 _t[2]; \
356 _t[0] = vlib_time_now (vm); \
357 do { body; } while (0); \
358 _t[1] = vlib_time_now (vm); \
359 clib_warning ("%.7e", _t[1] - _t[0]); \
360} while (0)
361
362#define vlib_wait_with_timeout(vm,suspend_time,timeout_time,test) \
363({ \
364 uword __vlib_wait_with_timeout = 0; \
365 f64 __vlib_wait_time = 0; \
366 while (! (__vlib_wait_with_timeout = (test)) \
367 && __vlib_wait_time < (timeout_time)) \
368 { \
369 vlib_process_suspend (vm, suspend_time); \
370 __vlib_wait_time += suspend_time; \
371 } \
372 __vlib_wait_with_timeout; \
373})
374
375always_inline void
376vlib_panic_with_error (vlib_main_t * vm, clib_error_t * error)
377{
378 vm->main_loop_error = error;
379 clib_longjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_PANIC);
380}
381
382#define vlib_panic_with_msg(vm,args...) \
383 vlib_panic_with_error (vm, clib_error_return (0, args))
384
385always_inline void
386vlib_panic (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387{
388 vlib_panic_with_error (vm, 0);
389}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390
Pierre Pfisterc26cc722021-09-10 16:38:03 +0200391/* Asynchronously requests exit with the given status. */
392void vlib_exit_with_status (vlib_main_t *vm, int status);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394always_inline f64
Dave Baracha8df85c2019-10-01 13:34:23 -0400395vlib_internal_node_vector_rate (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396{
Dave Baracha8df85c2019-10-01 13:34:23 -0400397 u64 vectors;
398 u64 calls;
399
400 calls = vm->internal_node_calls - vm->internal_node_calls_last_clear;
401
402 if (PREDICT_FALSE (calls == 0))
403 return 0.0;
404
405 vectors = vm->internal_node_vectors - vm->internal_node_vectors_last_clear;
406
407 return (f64) vectors / (f64) calls;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408}
409
Dave Baracha8df85c2019-10-01 13:34:23 -0400410always_inline void
411vlib_clear_internal_node_vector_rate (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412{
Dave Baracha8df85c2019-10-01 13:34:23 -0400413 vm->internal_node_calls_last_clear = vm->internal_node_calls;
414 vm->internal_node_vectors_last_clear = vm->internal_node_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415}
416
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417always_inline void
418vlib_increment_main_loop_counter (vlib_main_t * vm)
419{
Dave Baracha8df85c2019-10-01 13:34:23 -0400420 vm->main_loop_count++;
421 vm->internal_node_last_vectors_per_main_loop = 0;
Dave Barach903651c2017-10-13 19:16:56 -0400422
423 if (PREDICT_FALSE (vm->main_loop_exit_now))
424 clib_longjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_CLI);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425}
426
Dave Baracha8df85c2019-10-01 13:34:23 -0400427always_inline u32
428vlib_last_vectors_per_main_loop (vlib_main_t * vm)
429{
430 return vm->internal_node_last_vectors_per_main_loop;
431}
432
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000433always_inline void
434vlib_node_runtime_perf_counter (vlib_main_t * vm, vlib_node_runtime_t * node,
435 vlib_frame_t * frame, uword n, u64 t,
436 vlib_node_runtime_perf_call_type_t call_type)
437{
438 vlib_node_runtime_perf_callback_data_t *v =
439 clib_callback_data_check_and_get (&vm->vlib_node_runtime_perf_callbacks);
440 if (vec_len (v))
441 {
442 vlib_node_runtime_perf_callback_args_t args = {
443 .vm = vm,
444 .node = node,
445 .frame = frame,
446 .packets = n,
447 .cpu_time_now = t,
448 .call_type = call_type,
449 };
450 clib_callback_data_call_vec (v, &args);
451 }
452}
453
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454always_inline void vlib_set_queue_signal_callback
455 (vlib_main_t * vm, void (*fp) (vlib_main_t *))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456{
457 vm->queue_signal_callback = fp;
458}
459
Damjan Marionfd8deb42021-03-06 12:26:28 +0100460always_inline void
461vlib_main_init ()
462{
463 vlib_global_main_t *vgm = &vlib_global_main;
464 vlib_main_t *vm;
465
466 vgm->init_functions_called = hash_create (0, /* value bytes */ 0);
467
468 vm = clib_mem_alloc_aligned (sizeof (*vm), CLIB_CACHE_LINE_BYTES);
Florin Corasf540d1e2022-03-17 16:31:50 -0700469 vec_add1_ha (vgm->vlib_mains, vm, 0, CLIB_CACHE_LINE_BYTES);
Damjan Marionfd8deb42021-03-06 12:26:28 +0100470}
471
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472/* Main routine. */
473int vlib_main (vlib_main_t * vm, unformat_input_t * input);
474
Damjan Marionf55f9b82017-05-10 21:06:28 +0200475/* Thread stacks, for os_get_thread_index */
Damjan Marion6a7acc22016-12-19 16:28:36 +0100476extern u8 **vlib_thread_stacks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477
478/* Number of thread stacks that the application needs */
479u32 vlib_app_num_thread_stacks_needed (void) __attribute__ ((weak));
480
Damjan Marion25ab6c52021-03-05 14:41:25 +0100481void vlib_add_del_post_mortem_callback (void *cb, int is_add);
Dave Barach6931f592016-05-13 12:55:01 -0400482
Dave Barachab1a50c2020-10-06 14:08:16 -0400483vlib_main_t *vlib_get_main_not_inline (void);
484elog_main_t *vlib_get_elog_main_not_inline ();
Dave Barache5948fb2019-08-29 18:01:30 -0400485
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486#endif /* included_vlib_main_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400487
488/*
489 * fd.io coding-style-patch-verification: ON
490 *
491 * Local Variables:
492 * eval: (c-set-style "gnu")
493 * End:
494 */