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 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 48 | #define VLIB_LOG2_THREAD_STACK_SIZE (21) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | #define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE) |
| 50 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 51 | typedef struct |
| 52 | { |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 53 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 54 | volatile u32 valid; |
Damjan Marion | c0d9ca7 | 2021-05-11 09:39:24 +0200 | [diff] [blame] | 55 | u32 maybe_trace : 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | u32 n_vectors; |
Damjan Marion | c0d9ca7 | 2021-05-11 09:39:24 +0200 | [diff] [blame] | 57 | u32 offset; |
| 58 | STRUCT_MARK (end_of_reset); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | |
Damjan Marion | c0d9ca7 | 2021-05-11 09:39:24 +0200 | [diff] [blame] | 60 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 61 | u32 buffer_index[VLIB_FRAME_SIZE]; |
Mohammed Hawari | e714926 | 2022-05-18 10:08:47 +0200 | [diff] [blame] | 62 | u32 aux_data[VLIB_FRAME_SIZE]; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 63 | } |
| 64 | vlib_frame_queue_elt_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 66 | typedef struct |
| 67 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | /* First cache line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 69 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | volatile u32 *wait_at_barrier; |
| 71 | volatile u32 *workers_at_barrier; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 72 | |
| 73 | /* Second Cache Line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 74 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | void *thread_mheap; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 76 | u8 *thread_stack; |
| 77 | void (*thread_function) (void *); |
| 78 | void *thread_function_arg; |
| 79 | i64 recursion_level; |
| 80 | elog_track_t elog_track; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | u32 instance_id; |
| 82 | vlib_thread_registration_t *registration; |
| 83 | u8 *name; |
Bud Grise | 42f2006 | 2016-03-16 13:09:46 -0400 | [diff] [blame] | 84 | u64 barrier_sync_count; |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 85 | u8 barrier_elog_enabled; |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 86 | const char *barrier_caller; |
| 87 | const char *barrier_context; |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 88 | volatile u32 *node_reforks_required; |
Florin Coras | 4b20830 | 2022-03-30 13:50:19 -0700 | [diff] [blame] | 89 | volatile u32 wait_before_barrier; |
| 90 | volatile u32 workers_before_barrier; |
| 91 | volatile u32 done_work_before_barrier; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | |
| 93 | long lwp; |
Mohsin Kazmi | 5d64c78 | 2018-09-11 20:27:09 +0200 | [diff] [blame] | 94 | int cpu_id; |
| 95 | int core_id; |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 96 | int numa_id; |
Pavel Kotucek | 9876520 | 2016-10-07 08:37:28 +0200 | [diff] [blame] | 97 | pthread_t thread_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 98 | } vlib_worker_thread_t; |
| 99 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 100 | extern vlib_worker_thread_t *vlib_worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 101 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 102 | typedef struct |
| 103 | { |
Damjan Marion | c0d9ca7 | 2021-05-11 09:39:24 +0200 | [diff] [blame] | 104 | /* static data */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 105 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 106 | vlib_frame_queue_elt_t *elts; |
Damjan Marion | c0d9ca7 | 2021-05-11 09:39:24 +0200 | [diff] [blame] | 107 | u64 vector_threshold; |
| 108 | u64 trace; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | u32 nelts; |
Damjan Marion | c0d9ca7 | 2021-05-11 09:39:24 +0200 | [diff] [blame] | 110 | |
| 111 | /* modified by enqueue side */ |
| 112 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
| 113 | volatile u64 tail; |
| 114 | |
| 115 | /* modified by dequeue side */ |
| 116 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline2); |
| 117 | volatile u64 head; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 118 | } |
| 119 | vlib_frame_queue_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | |
Mohammed Hawari | e714926 | 2022-05-18 10:08:47 +0200 | [diff] [blame] | 121 | struct vlib_frame_queue_main_t_; |
| 122 | typedef u32 (vlib_frame_queue_dequeue_fn_t) ( |
| 123 | vlib_main_t *vm, struct vlib_frame_queue_main_t_ *fqm); |
| 124 | typedef struct vlib_frame_queue_main_t_ |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 125 | { |
| 126 | u32 node_index; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 127 | u32 frame_queue_nelts; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 128 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 129 | vlib_frame_queue_t **vlib_frame_queues; |
| 130 | |
| 131 | /* for frame queue tracing */ |
| 132 | frame_queue_trace_t *frame_queue_traces; |
| 133 | frame_queue_nelt_counter_t *frame_queue_histogram; |
Mohammed Hawari | e714926 | 2022-05-18 10:08:47 +0200 | [diff] [blame] | 134 | vlib_frame_queue_dequeue_fn_t *frame_queue_dequeue_fn; |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 135 | } vlib_frame_queue_main_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 137 | typedef struct |
| 138 | { |
| 139 | uword node_index; |
| 140 | uword type_opaque; |
| 141 | uword data; |
| 142 | } vlib_process_signal_event_mt_args_t; |
| 143 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | /* Called early, in thread 0's context */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | clib_error_t *vlib_thread_init (vlib_main_t * vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 147 | void vlib_worker_thread_node_runtime_update (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 149 | void vlib_create_worker_threads (vlib_main_t * vm, int n, |
| 150 | void (*thread_function) (void *)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
| 152 | void vlib_worker_thread_init (vlib_worker_thread_t * w); |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 153 | 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] | 154 | |
| 155 | /* Check for a barrier sync request every 30ms */ |
| 156 | #define BARRIER_SYNC_DELAY (0.030000) |
| 157 | |
| 158 | #if CLIB_DEBUG > 0 |
| 159 | /* long barrier timeout, for gdb... */ |
| 160 | #define BARRIER_SYNC_TIMEOUT (600.1) |
| 161 | #else |
| 162 | #define BARRIER_SYNC_TIMEOUT (1.0) |
| 163 | #endif |
| 164 | |
Damjan Marion | 8343ee5 | 2019-02-26 17:15:48 +0100 | [diff] [blame] | 165 | #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] | 166 | |
Damjan Marion | 8343ee5 | 2019-02-26 17:15:48 +0100 | [diff] [blame] | 167 | void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, |
| 168 | const char *func_name); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 169 | void vlib_worker_thread_barrier_release (vlib_main_t * vm); |
Neale Ranns | 42845dd | 2020-05-26 13:12:17 +0000 | [diff] [blame] | 170 | u8 vlib_worker_thread_barrier_held (void); |
Dave Barach | c602b38 | 2019-06-03 19:48:22 -0400 | [diff] [blame] | 171 | 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] | 172 | void vlib_worker_thread_node_refork (void); |
Neale Ranns | 42845dd | 2020-05-26 13:12:17 +0000 | [diff] [blame] | 173 | /** |
| 174 | * Wait until each of the workers has been once around the track |
| 175 | */ |
| 176 | void vlib_worker_wait_one_loop (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 178 | static_always_inline uword |
| 179 | vlib_get_thread_index (void) |
| 180 | { |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 181 | return __os_thread_index; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 184 | always_inline void |
| 185 | vlib_smp_unsafe_warning (void) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | { |
| 187 | if (CLIB_DEBUG > 0) |
| 188 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 189 | if (vlib_get_thread_index ()) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 190 | fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 191 | } |
| 192 | } |
| 193 | |
Damjan Marion | 1d429df | 2021-04-14 19:07:13 +0200 | [diff] [blame] | 194 | always_inline int |
| 195 | __foreach_vlib_main_helper (vlib_main_t *ii, vlib_main_t **p) |
| 196 | { |
| 197 | vlib_main_t *vm; |
| 198 | u32 index = ii - (vlib_main_t *) 0; |
| 199 | |
| 200 | if (index >= vec_len (vlib_global_main.vlib_mains)) |
| 201 | return 0; |
| 202 | |
| 203 | *p = vm = vlib_global_main.vlib_mains[index]; |
| 204 | ASSERT (index == 0 || vm->parked_at_barrier == 1); |
| 205 | return 1; |
| 206 | } |
| 207 | |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 208 | #define foreach_vlib_main() \ |
Damjan Marion | 1d429df | 2021-04-14 19:07:13 +0200 | [diff] [blame] | 209 | for (vlib_main_t *ii = 0, *this_vlib_main; \ |
| 210 | __foreach_vlib_main_helper (ii, &this_vlib_main); ii++) \ |
| 211 | if (this_vlib_main) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 212 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 213 | #define foreach_sched_policy \ |
| 214 | _(SCHED_OTHER, OTHER, "other") \ |
| 215 | _(SCHED_BATCH, BATCH, "batch") \ |
| 216 | _(SCHED_IDLE, IDLE, "idle") \ |
| 217 | _(SCHED_FIFO, FIFO, "fifo") \ |
| 218 | _(SCHED_RR, RR, "rr") |
| 219 | |
| 220 | typedef enum |
| 221 | { |
| 222 | #define _(v,f,s) SCHED_POLICY_##f = v, |
| 223 | foreach_sched_policy |
| 224 | #undef _ |
| 225 | SCHED_POLICY_N, |
| 226 | } sched_policy_t; |
| 227 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 228 | typedef struct |
| 229 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | /* Link list of registrations, built by constructors */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 231 | vlib_thread_registration_t *next; |
| 232 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | /* Vector of registrations, w/ non-data-structure clones at the top */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 234 | vlib_thread_registration_t **registrations; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 235 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 236 | uword *thread_registrations_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 237 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 238 | vlib_worker_thread_t *worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 239 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 240 | int use_pthreads; |
| 241 | |
| 242 | /* Number of vlib_main / vnet_main clones */ |
| 243 | u32 n_vlib_mains; |
| 244 | |
| 245 | /* Number of thread stacks to create */ |
| 246 | u32 n_thread_stacks; |
| 247 | |
| 248 | /* Number of pthreads */ |
| 249 | u32 n_pthreads; |
| 250 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 251 | /* Number of threads */ |
| 252 | u32 n_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 253 | |
| 254 | /* Number of cores to skip, must match the core mask */ |
| 255 | u32 skip_cores; |
| 256 | |
| 257 | /* Thread prefix name */ |
| 258 | u8 *thread_prefix; |
| 259 | |
| 260 | /* main thread lcore */ |
Damjan Marion | 858151f | 2018-07-11 10:51:00 +0200 | [diff] [blame] | 261 | u32 main_lcore; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 262 | |
| 263 | /* Bitmap of available CPU cores */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 264 | uword *cpu_core_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 265 | |
| 266 | /* Bitmap of available CPU sockets (NUMA nodes) */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 267 | uword *cpu_socket_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 268 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 269 | /* Worker handoff queues */ |
| 270 | vlib_frame_queue_main_t *frame_queue_mains; |
Damjan Marion | 0f8ecf0 | 2016-06-27 08:30:30 +0200 | [diff] [blame] | 271 | |
| 272 | /* worker thread initialization barrier */ |
| 273 | volatile u32 worker_thread_release; |
| 274 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 275 | /* scheduling policy */ |
| 276 | u32 sched_policy; |
| 277 | |
| 278 | /* scheduling policy priority */ |
| 279 | u32 sched_priority; |
| 280 | |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 281 | /* NUMA-bound heap size */ |
| 282 | uword numa_heap_size; |
| 283 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | } vlib_thread_main_t; |
| 285 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 286 | extern vlib_thread_main_t vlib_thread_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 287 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 288 | #include <vlib/global_funcs.h> |
| 289 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 290 | #define VLIB_REGISTER_THREAD(x,...) \ |
| 291 | __VA_ARGS__ vlib_thread_registration_t x; \ |
| 292 | static void __vlib_add_thread_registration_##x (void) \ |
| 293 | __attribute__((__constructor__)) ; \ |
| 294 | static void __vlib_add_thread_registration_##x (void) \ |
| 295 | { \ |
| 296 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 297 | x.next = tm->next; \ |
| 298 | tm->next = &x; \ |
| 299 | } \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 300 | static void __vlib_rm_thread_registration_##x (void) \ |
| 301 | __attribute__((__destructor__)) ; \ |
| 302 | static void __vlib_rm_thread_registration_##x (void) \ |
| 303 | { \ |
| 304 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 305 | VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \ |
| 306 | } \ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 307 | __VA_ARGS__ vlib_thread_registration_t x |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 309 | always_inline u32 |
| 310 | vlib_num_workers () |
| 311 | { |
| 312 | return vlib_thread_main.n_vlib_mains - 1; |
| 313 | } |
| 314 | |
| 315 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 316 | vlib_get_worker_thread_index (u32 worker_index) |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 317 | { |
| 318 | return worker_index + 1; |
| 319 | } |
| 320 | |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 321 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 322 | vlib_get_worker_index (u32 thread_index) |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 323 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 324 | return thread_index - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | always_inline u32 |
| 328 | vlib_get_current_worker_index () |
| 329 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 330 | return vlib_get_thread_index () - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 331 | } |
| 332 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 333 | static inline void |
| 334 | vlib_worker_thread_barrier_check (void) |
| 335 | { |
| 336 | if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier)) |
| 337 | { |
Damjan Marion | fd8deb4 | 2021-03-06 12:26:28 +0100 | [diff] [blame] | 338 | vlib_global_main_t *vgm = vlib_get_global_main (); |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 339 | vlib_main_t *vm = vlib_get_main (); |
| 340 | u32 thread_index = vm->thread_index; |
| 341 | f64 t = vlib_time_now (vm); |
| 342 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 343 | if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0)) |
| 344 | clib_call_callbacks (vm->barrier_perf_callbacks, vm, |
| 345 | vm->clib_time.last_cpu_time, 0 /* enter */ ); |
| 346 | |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 347 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 348 | { |
| 349 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 350 | /* *INDENT-OFF* */ |
| 351 | ELOG_TYPE_DECLARE (e) = { |
| 352 | .format = "barrier-wait-thread-%d", |
| 353 | .format_args = "i4", |
| 354 | }; |
| 355 | /* *INDENT-ON* */ |
| 356 | |
| 357 | struct |
| 358 | { |
| 359 | u32 thread_index; |
| 360 | } __clib_packed *ed; |
| 361 | |
Damjan Marion | f553a2c | 2021-03-26 13:45:37 +0100 | [diff] [blame] | 362 | 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] | 363 | ed->thread_index = thread_index; |
| 364 | } |
| 365 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 366 | if (CLIB_DEBUG > 0) |
| 367 | { |
| 368 | vm = vlib_get_main (); |
| 369 | vm->parked_at_barrier = 1; |
| 370 | } |
Alexander Kabaev | feda545 | 2019-11-01 18:26:20 -0400 | [diff] [blame] | 371 | clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1); |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 372 | while (*vlib_worker_threads->wait_at_barrier) |
| 373 | ; |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 374 | |
| 375 | /* |
| 376 | * Recompute the offset from thread-0 time. |
| 377 | * Note that vlib_time_now adds vm->time_offset, so |
| 378 | * clear it first. Save the resulting idea of "now", to |
| 379 | * see how well we're doing. See show_clock_command_fn(...) |
| 380 | */ |
| 381 | { |
| 382 | f64 now; |
| 383 | vm->time_offset = 0.0; |
| 384 | now = vlib_time_now (vm); |
Damjan Marion | fd8deb4 | 2021-03-06 12:26:28 +0100 | [diff] [blame] | 385 | vm->time_offset = vgm->vlib_mains[0]->time_last_barrier_release - now; |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 386 | vm->time_last_barrier_release = vlib_time_now (vm); |
| 387 | } |
| 388 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 389 | if (CLIB_DEBUG > 0) |
| 390 | vm->parked_at_barrier = 0; |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 391 | clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 392 | |
| 393 | if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required)) |
| 394 | { |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 395 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 396 | { |
| 397 | t = vlib_time_now (vm) - t; |
| 398 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 399 | /* *INDENT-OFF* */ |
| 400 | ELOG_TYPE_DECLARE (e) = { |
| 401 | .format = "barrier-refork-thread-%d", |
| 402 | .format_args = "i4", |
| 403 | }; |
| 404 | /* *INDENT-ON* */ |
| 405 | |
| 406 | struct |
| 407 | { |
| 408 | u32 thread_index; |
| 409 | } __clib_packed *ed; |
| 410 | |
| 411 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, |
| 412 | w->elog_track); |
| 413 | ed->thread_index = thread_index; |
| 414 | } |
| 415 | |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 416 | vlib_worker_thread_node_refork (); |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 417 | clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required, |
| 418 | -1); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 419 | while (*vlib_worker_threads->node_reforks_required) |
| 420 | ; |
| 421 | } |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 422 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 423 | { |
| 424 | t = vlib_time_now (vm) - t; |
| 425 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 426 | /* *INDENT-OFF* */ |
| 427 | ELOG_TYPE_DECLARE (e) = { |
| 428 | .format = "barrier-released-thread-%d: %dus", |
| 429 | .format_args = "i4i4", |
| 430 | }; |
| 431 | /* *INDENT-ON* */ |
| 432 | |
| 433 | struct |
| 434 | { |
| 435 | u32 thread_index; |
| 436 | u32 duration; |
| 437 | } __clib_packed *ed; |
| 438 | |
Damjan Marion | f553a2c | 2021-03-26 13:45:37 +0100 | [diff] [blame] | 439 | 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] | 440 | ed->thread_index = thread_index; |
| 441 | ed->duration = (int) (1000000.0 * t); |
| 442 | } |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 443 | |
| 444 | if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0)) |
| 445 | clib_call_callbacks (vm->barrier_perf_callbacks, vm, |
| 446 | vm->clib_time.last_cpu_time, 1 /* leave */ ); |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 447 | } |
| 448 | } |
| 449 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 450 | always_inline vlib_main_t * |
| 451 | vlib_get_worker_vlib_main (u32 worker_index) |
| 452 | { |
| 453 | vlib_main_t *vm; |
| 454 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 455 | ASSERT (worker_index < tm->n_vlib_mains - 1); |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 456 | vm = vlib_get_main_by_index (worker_index + 1); |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 457 | ASSERT (vm); |
| 458 | return vm; |
| 459 | } |
| 460 | |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 461 | static inline u8 |
| 462 | vlib_thread_is_main_w_barrier (void) |
| 463 | { |
| 464 | return (!vlib_num_workers () |
| 465 | || ((vlib_get_thread_index () == 0 |
| 466 | && vlib_worker_threads->wait_at_barrier[0]))); |
| 467 | } |
| 468 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 469 | u8 *vlib_thread_stack_init (uword thread_index); |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 470 | extern void *rpc_call_main_thread_cb_fn; |
| 471 | |
| 472 | void |
| 473 | vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t * |
| 474 | args); |
| 475 | void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size); |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 476 | 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] | 477 | vlib_thread_main_t *vlib_get_thread_main_not_inline (void); |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 478 | |
Florin Coras | 4b20830 | 2022-03-30 13:50:19 -0700 | [diff] [blame] | 479 | /** |
| 480 | * Force workers sync from within worker |
| 481 | * |
| 482 | * Must be paired with @ref vlib_workers_continue |
| 483 | */ |
| 484 | void vlib_workers_sync (void); |
| 485 | /** |
| 486 | * Release barrier after workers sync |
| 487 | */ |
| 488 | void vlib_workers_continue (void); |
| 489 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 490 | #endif /* included_vlib_threads_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 491 | |
| 492 | /* |
| 493 | * fd.io coding-style-patch-verification: ON |
| 494 | * |
| 495 | * Local Variables: |
| 496 | * eval: (c-set-style "gnu") |
| 497 | * End: |
| 498 | */ |