Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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 | #ifndef included_vlib_threads_h |
| 16 | #define included_vlib_threads_h |
| 17 | |
| 18 | #include <vlib/main.h> |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 19 | #include <vppinfra/callback.h> |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 20 | #include <linux/sched.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 21 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 22 | void vlib_set_thread_name (char *name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 23 | |
| 24 | /* arg is actually a vlib__thread_t * */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 25 | typedef void (vlib_thread_function_t) (void *arg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 26 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 27 | typedef struct vlib_thread_registration_ |
| 28 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | /* constructor generated list of thread registrations */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 30 | struct vlib_thread_registration_ *next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 31 | |
| 32 | /* config parameters */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 33 | char *name; |
| 34 | char *short_name; |
| 35 | vlib_thread_function_t *function; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 36 | uword mheap_size; |
| 37 | int fixed_count; |
| 38 | u32 count; |
| 39 | int no_data_structure_clone; |
Bud Grise | 68adab9 | 2016-02-12 10:36:11 -0500 | [diff] [blame] | 40 | u32 frame_queue_nelts; |
| 41 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | /* All threads of this type run on pthreads */ |
| 43 | int use_pthreads; |
| 44 | u32 first_index; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 45 | uword *coremask; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | } vlib_thread_registration_t; |
| 47 | |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 48 | /* |
| 49 | * Frames have their cpu / vlib_main_t index in the low-order N bits |
| 50 | * Make VLIB_MAX_CPUS a power-of-two, please... |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | */ |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 52 | |
Christophe Fontaine | fef15b4 | 2016-04-09 12:38:49 +0900 | [diff] [blame] | 53 | #ifndef VLIB_MAX_CPUS |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 54 | #define VLIB_MAX_CPUS 256 |
Christophe Fontaine | fef15b4 | 2016-04-09 12:38:49 +0900 | [diff] [blame] | 55 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | |
Damjan Marion | ce8debf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 57 | #if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS |
| 58 | #error Please increase number of per-cpu mheaps |
| 59 | #endif |
| 60 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 61 | #define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | #define VLIB_OFFSET_MASK (~VLIB_CPU_MASK) |
| 63 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 64 | #define VLIB_LOG2_THREAD_STACK_SIZE (21) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | #define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE) |
| 66 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 67 | typedef enum |
| 68 | { |
| 69 | VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | } vlib_frame_queue_msg_type_t; |
| 71 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 72 | typedef struct |
| 73 | { |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 74 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | volatile u32 valid; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 76 | u32 msg_type; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 77 | u32 n_vectors; |
| 78 | u32 last_n_vectors; |
| 79 | |
| 80 | /* 256 * 4 = 1024 bytes, even mult of cache line size */ |
| 81 | u32 buffer_index[VLIB_FRAME_SIZE]; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 82 | } |
| 83 | vlib_frame_queue_elt_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 84 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 85 | typedef struct |
| 86 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | /* First cache line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 88 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | volatile u32 *wait_at_barrier; |
| 90 | volatile u32 *workers_at_barrier; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | |
| 92 | /* Second Cache Line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 93 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 94 | void *thread_mheap; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 95 | u8 *thread_stack; |
| 96 | void (*thread_function) (void *); |
| 97 | void *thread_function_arg; |
| 98 | i64 recursion_level; |
| 99 | elog_track_t elog_track; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | u32 instance_id; |
| 101 | vlib_thread_registration_t *registration; |
| 102 | u8 *name; |
Bud Grise | 42f2006 | 2016-03-16 13:09:46 -0400 | [diff] [blame] | 103 | u64 barrier_sync_count; |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 104 | u8 barrier_elog_enabled; |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 105 | const char *barrier_caller; |
| 106 | const char *barrier_context; |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 107 | volatile u32 *node_reforks_required; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | |
| 109 | long lwp; |
Mohsin Kazmi | 5d64c78 | 2018-09-11 20:27:09 +0200 | [diff] [blame] | 110 | int cpu_id; |
| 111 | int core_id; |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 112 | int numa_id; |
Pavel Kotucek | 9876520 | 2016-10-07 08:37:28 +0200 | [diff] [blame] | 113 | pthread_t thread_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | } vlib_worker_thread_t; |
| 115 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 116 | extern vlib_worker_thread_t *vlib_worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 117 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 118 | typedef struct |
| 119 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | /* enqueue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 121 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | volatile u64 tail; |
| 123 | u64 enqueues; |
| 124 | u64 enqueue_ticks; |
| 125 | u64 enqueue_vectors; |
| 126 | u32 enqueue_full_events; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 127 | |
| 128 | /* dequeue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 129 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | volatile u64 head; |
| 131 | u64 dequeues; |
| 132 | u64 dequeue_ticks; |
| 133 | u64 dequeue_vectors; |
| 134 | u64 trace; |
| 135 | u64 vector_threshold; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | |
| 137 | /* dequeue hint to enqueue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 138 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | volatile u64 head_hint; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 140 | |
| 141 | /* read-only, constant, shared */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 142 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | vlib_frame_queue_elt_t *elts; |
| 144 | u32 nelts; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | } |
| 146 | vlib_frame_queue_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 148 | typedef struct |
| 149 | { |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 150 | vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index; |
| 151 | vlib_frame_queue_t **congested_handoff_queue_by_thread_index; |
| 152 | } vlib_frame_queue_per_thread_data_t; |
| 153 | |
| 154 | typedef struct |
| 155 | { |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 156 | u32 node_index; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 157 | u32 frame_queue_nelts; |
| 158 | u32 queue_hi_thresh; |
| 159 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 160 | vlib_frame_queue_t **vlib_frame_queues; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 161 | vlib_frame_queue_per_thread_data_t *per_thread_data; |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 162 | |
| 163 | /* for frame queue tracing */ |
| 164 | frame_queue_trace_t *frame_queue_traces; |
| 165 | frame_queue_nelt_counter_t *frame_queue_histogram; |
| 166 | } vlib_frame_queue_main_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 168 | typedef struct |
| 169 | { |
| 170 | uword node_index; |
| 171 | uword type_opaque; |
| 172 | uword data; |
| 173 | } vlib_process_signal_event_mt_args_t; |
| 174 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 175 | /* Called early, in thread 0's context */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 176 | clib_error_t *vlib_thread_init (vlib_main_t * vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 178 | int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index, |
| 179 | u32 frame_queue_index, vlib_frame_t * frame, |
| 180 | vlib_frame_queue_msg_type_t type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 181 | |
Damjan Marion | e9d52d5 | 2017-03-09 15:42:26 +0100 | [diff] [blame] | 182 | int |
| 183 | vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 184 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 185 | void vlib_worker_thread_node_runtime_update (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 187 | void vlib_create_worker_threads (vlib_main_t * vm, int n, |
| 188 | void (*thread_function) (void *)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 189 | |
| 190 | void vlib_worker_thread_init (vlib_worker_thread_t * w); |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 191 | u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 192 | |
| 193 | /* Check for a barrier sync request every 30ms */ |
| 194 | #define BARRIER_SYNC_DELAY (0.030000) |
| 195 | |
| 196 | #if CLIB_DEBUG > 0 |
| 197 | /* long barrier timeout, for gdb... */ |
| 198 | #define BARRIER_SYNC_TIMEOUT (600.1) |
| 199 | #else |
| 200 | #define BARRIER_SYNC_TIMEOUT (1.0) |
| 201 | #endif |
| 202 | |
Damjan Marion | 8343ee5 | 2019-02-26 17:15:48 +0100 | [diff] [blame] | 203 | #define vlib_worker_thread_barrier_sync(X) {vlib_worker_thread_barrier_sync_int(X, __FUNCTION__);} |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 204 | |
Damjan Marion | 8343ee5 | 2019-02-26 17:15:48 +0100 | [diff] [blame] | 205 | void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, |
| 206 | const char *func_name); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 207 | void vlib_worker_thread_barrier_release (vlib_main_t * vm); |
Neale Ranns | 42845dd | 2020-05-26 13:12:17 +0000 | [diff] [blame] | 208 | u8 vlib_worker_thread_barrier_held (void); |
Dave Barach | c602b38 | 2019-06-03 19:48:22 -0400 | [diff] [blame] | 209 | void vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 210 | void vlib_worker_thread_node_refork (void); |
Neale Ranns | 42845dd | 2020-05-26 13:12:17 +0000 | [diff] [blame] | 211 | /** |
| 212 | * Wait until each of the workers has been once around the track |
| 213 | */ |
| 214 | void vlib_worker_wait_one_loop (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 216 | static_always_inline uword |
| 217 | vlib_get_thread_index (void) |
| 218 | { |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 219 | return __os_thread_index; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 220 | } |
| 221 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 222 | always_inline void |
| 223 | vlib_smp_unsafe_warning (void) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 224 | { |
| 225 | if (CLIB_DEBUG > 0) |
| 226 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 227 | if (vlib_get_thread_index ()) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 228 | fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | } |
| 230 | } |
| 231 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 232 | typedef enum |
| 233 | { |
| 234 | VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0, |
| 235 | VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | } vlib_fork_fixup_t; |
| 237 | |
| 238 | void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which); |
| 239 | |
Damjan Marion | fd8deb4 | 2021-03-06 12:26:28 +0100 | [diff] [blame^] | 240 | #define foreach_vlib_main(body) \ |
| 241 | do \ |
| 242 | { \ |
| 243 | vlib_main_t **__vlib_mains = 0, *this_vlib_main; \ |
| 244 | int ii; \ |
| 245 | \ |
| 246 | for (ii = 0; ii < vec_len (vlib_global_main.vlib_mains); ii++) \ |
| 247 | { \ |
| 248 | this_vlib_main = vlib_global_main.vlib_mains[ii]; \ |
| 249 | ASSERT (ii == 0 || this_vlib_main->parked_at_barrier == 1); \ |
| 250 | if (this_vlib_main) \ |
| 251 | vec_add1 (__vlib_mains, this_vlib_main); \ |
| 252 | } \ |
| 253 | \ |
| 254 | for (ii = 0; ii < vec_len (__vlib_mains); ii++) \ |
| 255 | { \ |
| 256 | this_vlib_main = __vlib_mains[ii]; \ |
| 257 | /* body uses this_vlib_main... */ \ |
| 258 | (body); \ |
| 259 | } \ |
| 260 | vec_free (__vlib_mains); \ |
| 261 | } \ |
| 262 | while (0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 263 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 264 | #define foreach_sched_policy \ |
| 265 | _(SCHED_OTHER, OTHER, "other") \ |
| 266 | _(SCHED_BATCH, BATCH, "batch") \ |
| 267 | _(SCHED_IDLE, IDLE, "idle") \ |
| 268 | _(SCHED_FIFO, FIFO, "fifo") \ |
| 269 | _(SCHED_RR, RR, "rr") |
| 270 | |
| 271 | typedef enum |
| 272 | { |
| 273 | #define _(v,f,s) SCHED_POLICY_##f = v, |
| 274 | foreach_sched_policy |
| 275 | #undef _ |
| 276 | SCHED_POLICY_N, |
| 277 | } sched_policy_t; |
| 278 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 279 | typedef struct |
| 280 | { |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 281 | clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w, |
Mohsin Kazmi | 5d64c78 | 2018-09-11 20:27:09 +0200 | [diff] [blame] | 282 | unsigned cpu_id); |
| 283 | clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 284 | } vlib_thread_callbacks_t; |
| 285 | |
| 286 | typedef struct |
| 287 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 288 | /* Link list of registrations, built by constructors */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 289 | vlib_thread_registration_t *next; |
| 290 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 291 | /* Vector of registrations, w/ non-data-structure clones at the top */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 292 | vlib_thread_registration_t **registrations; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 293 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 294 | uword *thread_registrations_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 295 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 296 | vlib_worker_thread_t *worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 297 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 298 | /* |
| 299 | * Launch all threads as pthreads, |
| 300 | * not eal_rte_launch (strict affinity) threads |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 301 | */ |
| 302 | int use_pthreads; |
| 303 | |
| 304 | /* Number of vlib_main / vnet_main clones */ |
| 305 | u32 n_vlib_mains; |
| 306 | |
| 307 | /* Number of thread stacks to create */ |
| 308 | u32 n_thread_stacks; |
| 309 | |
| 310 | /* Number of pthreads */ |
| 311 | u32 n_pthreads; |
| 312 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 313 | /* Number of threads */ |
| 314 | u32 n_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 315 | |
| 316 | /* Number of cores to skip, must match the core mask */ |
| 317 | u32 skip_cores; |
| 318 | |
| 319 | /* Thread prefix name */ |
| 320 | u8 *thread_prefix; |
| 321 | |
| 322 | /* main thread lcore */ |
Damjan Marion | 858151f | 2018-07-11 10:51:00 +0200 | [diff] [blame] | 323 | u32 main_lcore; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | |
| 325 | /* Bitmap of available CPU cores */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 326 | uword *cpu_core_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 327 | |
| 328 | /* Bitmap of available CPU sockets (NUMA nodes) */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 329 | uword *cpu_socket_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 330 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 331 | /* Worker handoff queues */ |
| 332 | vlib_frame_queue_main_t *frame_queue_mains; |
Damjan Marion | 0f8ecf0 | 2016-06-27 08:30:30 +0200 | [diff] [blame] | 333 | |
| 334 | /* worker thread initialization barrier */ |
| 335 | volatile u32 worker_thread_release; |
| 336 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 337 | /* scheduling policy */ |
| 338 | u32 sched_policy; |
| 339 | |
| 340 | /* scheduling policy priority */ |
| 341 | u32 sched_priority; |
| 342 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 343 | /* callbacks */ |
| 344 | vlib_thread_callbacks_t cb; |
| 345 | int extern_thread_mgmt; |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 346 | |
| 347 | /* NUMA-bound heap size */ |
| 348 | uword numa_heap_size; |
| 349 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 350 | } vlib_thread_main_t; |
| 351 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 352 | extern vlib_thread_main_t vlib_thread_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 353 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 354 | #include <vlib/global_funcs.h> |
| 355 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 356 | #define VLIB_REGISTER_THREAD(x,...) \ |
| 357 | __VA_ARGS__ vlib_thread_registration_t x; \ |
| 358 | static void __vlib_add_thread_registration_##x (void) \ |
| 359 | __attribute__((__constructor__)) ; \ |
| 360 | static void __vlib_add_thread_registration_##x (void) \ |
| 361 | { \ |
| 362 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 363 | x.next = tm->next; \ |
| 364 | tm->next = &x; \ |
| 365 | } \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 366 | static void __vlib_rm_thread_registration_##x (void) \ |
| 367 | __attribute__((__destructor__)) ; \ |
| 368 | static void __vlib_rm_thread_registration_##x (void) \ |
| 369 | { \ |
| 370 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 371 | VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \ |
| 372 | } \ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 373 | __VA_ARGS__ vlib_thread_registration_t x |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 374 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 375 | always_inline u32 |
| 376 | vlib_num_workers () |
| 377 | { |
| 378 | return vlib_thread_main.n_vlib_mains - 1; |
| 379 | } |
| 380 | |
| 381 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 382 | vlib_get_worker_thread_index (u32 worker_index) |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 383 | { |
| 384 | return worker_index + 1; |
| 385 | } |
| 386 | |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 387 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 388 | vlib_get_worker_index (u32 thread_index) |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 389 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 390 | return thread_index - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | always_inline u32 |
| 394 | vlib_get_current_worker_index () |
| 395 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 396 | return vlib_get_thread_index () - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 397 | } |
| 398 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 399 | static inline void |
| 400 | vlib_worker_thread_barrier_check (void) |
| 401 | { |
| 402 | if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier)) |
| 403 | { |
Damjan Marion | fd8deb4 | 2021-03-06 12:26:28 +0100 | [diff] [blame^] | 404 | vlib_global_main_t *vgm = vlib_get_global_main (); |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 405 | vlib_main_t *vm = vlib_get_main (); |
| 406 | u32 thread_index = vm->thread_index; |
| 407 | f64 t = vlib_time_now (vm); |
| 408 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 409 | if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0)) |
| 410 | clib_call_callbacks (vm->barrier_perf_callbacks, vm, |
| 411 | vm->clib_time.last_cpu_time, 0 /* enter */ ); |
| 412 | |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 413 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 414 | { |
| 415 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 416 | /* *INDENT-OFF* */ |
| 417 | ELOG_TYPE_DECLARE (e) = { |
| 418 | .format = "barrier-wait-thread-%d", |
| 419 | .format_args = "i4", |
| 420 | }; |
| 421 | /* *INDENT-ON* */ |
| 422 | |
| 423 | struct |
| 424 | { |
| 425 | u32 thread_index; |
| 426 | } __clib_packed *ed; |
| 427 | |
Damjan Marion | f553a2c | 2021-03-26 13:45:37 +0100 | [diff] [blame] | 428 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, w->elog_track); |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 429 | ed->thread_index = thread_index; |
| 430 | } |
| 431 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 432 | if (CLIB_DEBUG > 0) |
| 433 | { |
| 434 | vm = vlib_get_main (); |
| 435 | vm->parked_at_barrier = 1; |
| 436 | } |
Alexander Kabaev | feda545 | 2019-11-01 18:26:20 -0400 | [diff] [blame] | 437 | clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1); |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 438 | while (*vlib_worker_threads->wait_at_barrier) |
| 439 | ; |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 440 | |
| 441 | /* |
| 442 | * Recompute the offset from thread-0 time. |
| 443 | * Note that vlib_time_now adds vm->time_offset, so |
| 444 | * clear it first. Save the resulting idea of "now", to |
| 445 | * see how well we're doing. See show_clock_command_fn(...) |
| 446 | */ |
| 447 | { |
| 448 | f64 now; |
| 449 | vm->time_offset = 0.0; |
| 450 | now = vlib_time_now (vm); |
Damjan Marion | fd8deb4 | 2021-03-06 12:26:28 +0100 | [diff] [blame^] | 451 | vm->time_offset = vgm->vlib_mains[0]->time_last_barrier_release - now; |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 452 | vm->time_last_barrier_release = vlib_time_now (vm); |
| 453 | } |
| 454 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 455 | if (CLIB_DEBUG > 0) |
| 456 | vm->parked_at_barrier = 0; |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 457 | clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 458 | |
| 459 | if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required)) |
| 460 | { |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 461 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 462 | { |
| 463 | t = vlib_time_now (vm) - t; |
| 464 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 465 | /* *INDENT-OFF* */ |
| 466 | ELOG_TYPE_DECLARE (e) = { |
| 467 | .format = "barrier-refork-thread-%d", |
| 468 | .format_args = "i4", |
| 469 | }; |
| 470 | /* *INDENT-ON* */ |
| 471 | |
| 472 | struct |
| 473 | { |
| 474 | u32 thread_index; |
| 475 | } __clib_packed *ed; |
| 476 | |
| 477 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, |
| 478 | w->elog_track); |
| 479 | ed->thread_index = thread_index; |
| 480 | } |
| 481 | |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 482 | vlib_worker_thread_node_refork (); |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 483 | clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required, |
| 484 | -1); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 485 | while (*vlib_worker_threads->node_reforks_required) |
| 486 | ; |
| 487 | } |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 488 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 489 | { |
| 490 | t = vlib_time_now (vm) - t; |
| 491 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 492 | /* *INDENT-OFF* */ |
| 493 | ELOG_TYPE_DECLARE (e) = { |
| 494 | .format = "barrier-released-thread-%d: %dus", |
| 495 | .format_args = "i4i4", |
| 496 | }; |
| 497 | /* *INDENT-ON* */ |
| 498 | |
| 499 | struct |
| 500 | { |
| 501 | u32 thread_index; |
| 502 | u32 duration; |
| 503 | } __clib_packed *ed; |
| 504 | |
Damjan Marion | f553a2c | 2021-03-26 13:45:37 +0100 | [diff] [blame] | 505 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, w->elog_track); |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 506 | ed->thread_index = thread_index; |
| 507 | ed->duration = (int) (1000000.0 * t); |
| 508 | } |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 509 | |
| 510 | if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0)) |
| 511 | clib_call_callbacks (vm->barrier_perf_callbacks, vm, |
| 512 | vm->clib_time.last_cpu_time, 1 /* leave */ ); |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 516 | always_inline vlib_main_t * |
| 517 | vlib_get_worker_vlib_main (u32 worker_index) |
| 518 | { |
| 519 | vlib_main_t *vm; |
| 520 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 521 | ASSERT (worker_index < tm->n_vlib_mains - 1); |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 522 | vm = vlib_get_main_by_index (worker_index + 1); |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 523 | ASSERT (vm); |
| 524 | return vm; |
| 525 | } |
| 526 | |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 527 | static inline u8 |
| 528 | vlib_thread_is_main_w_barrier (void) |
| 529 | { |
| 530 | return (!vlib_num_workers () |
| 531 | || ((vlib_get_thread_index () == 0 |
| 532 | && vlib_worker_threads->wait_at_barrier[0]))); |
| 533 | } |
| 534 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 535 | static inline void |
| 536 | vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf) |
| 537 | { |
| 538 | CLIB_MEMORY_BARRIER (); |
| 539 | hf->valid = 1; |
| 540 | } |
| 541 | |
| 542 | static inline vlib_frame_queue_elt_t * |
| 543 | vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index) |
| 544 | { |
| 545 | vlib_frame_queue_t *fq; |
| 546 | vlib_frame_queue_elt_t *elt; |
| 547 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 548 | vlib_frame_queue_main_t *fqm = |
| 549 | vec_elt_at_index (tm->frame_queue_mains, frame_queue_index); |
| 550 | u64 new_tail; |
| 551 | |
| 552 | fq = fqm->vlib_frame_queues[index]; |
| 553 | ASSERT (fq); |
| 554 | |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 555 | new_tail = clib_atomic_add_fetch (&fq->tail, 1); |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 556 | |
| 557 | /* Wait until a ring slot is available */ |
| 558 | while (new_tail >= fq->head_hint + fq->nelts) |
| 559 | vlib_worker_thread_barrier_check (); |
| 560 | |
| 561 | elt = fq->elts + (new_tail & (fq->nelts - 1)); |
| 562 | |
| 563 | /* this would be very bad... */ |
| 564 | while (elt->valid) |
| 565 | ; |
| 566 | |
| 567 | elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME; |
| 568 | elt->last_n_vectors = elt->n_vectors = 0; |
| 569 | |
| 570 | return elt; |
| 571 | } |
| 572 | |
| 573 | static inline vlib_frame_queue_t * |
| 574 | is_vlib_frame_queue_congested (u32 frame_queue_index, |
| 575 | u32 index, |
| 576 | u32 queue_hi_thresh, |
| 577 | vlib_frame_queue_t ** |
| 578 | handoff_queue_by_worker_index) |
| 579 | { |
| 580 | vlib_frame_queue_t *fq; |
| 581 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 582 | vlib_frame_queue_main_t *fqm = |
| 583 | vec_elt_at_index (tm->frame_queue_mains, frame_queue_index); |
| 584 | |
| 585 | fq = handoff_queue_by_worker_index[index]; |
| 586 | if (fq != (vlib_frame_queue_t *) (~0)) |
| 587 | return fq; |
| 588 | |
| 589 | fq = fqm->vlib_frame_queues[index]; |
| 590 | ASSERT (fq); |
| 591 | |
| 592 | if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh))) |
| 593 | { |
| 594 | /* a valid entry in the array will indicate the queue has reached |
| 595 | * the specified threshold and is congested |
| 596 | */ |
| 597 | handoff_queue_by_worker_index[index] = fq; |
| 598 | fq->enqueue_full_events++; |
| 599 | return fq; |
| 600 | } |
| 601 | |
| 602 | return NULL; |
| 603 | } |
| 604 | |
| 605 | static inline vlib_frame_queue_elt_t * |
| 606 | vlib_get_worker_handoff_queue_elt (u32 frame_queue_index, |
| 607 | u32 vlib_worker_index, |
| 608 | vlib_frame_queue_elt_t ** |
| 609 | handoff_queue_elt_by_worker_index) |
| 610 | { |
| 611 | vlib_frame_queue_elt_t *elt; |
| 612 | |
| 613 | if (handoff_queue_elt_by_worker_index[vlib_worker_index]) |
| 614 | return handoff_queue_elt_by_worker_index[vlib_worker_index]; |
| 615 | |
| 616 | elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index); |
| 617 | |
| 618 | handoff_queue_elt_by_worker_index[vlib_worker_index] = elt; |
| 619 | |
| 620 | return elt; |
| 621 | } |
| 622 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 623 | u8 *vlib_thread_stack_init (uword thread_index); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 624 | int vlib_thread_cb_register (struct vlib_main_t *vm, |
| 625 | vlib_thread_callbacks_t * cb); |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 626 | extern void *rpc_call_main_thread_cb_fn; |
| 627 | |
| 628 | void |
| 629 | vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t * |
| 630 | args); |
| 631 | void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size); |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 632 | void vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id); |
Dave Barach | ab1a50c | 2020-10-06 14:08:16 -0400 | [diff] [blame] | 633 | vlib_thread_main_t *vlib_get_thread_main_not_inline (void); |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 634 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 635 | #endif /* included_vlib_threads_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 636 | |
| 637 | /* |
| 638 | * fd.io coding-style-patch-verification: ON |
| 639 | * |
| 640 | * Local Variables: |
| 641 | * eval: (c-set-style "gnu") |
| 642 | * End: |
| 643 | */ |