blob: c1188cea9338a67422c9a56d0b2c0f38338cc744 [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#ifndef included_vlib_threads_h
16#define included_vlib_threads_h
17
18#include <vlib/main.h>
Pavel Kotucek1e765832016-09-23 08:54:14 +020019#include <linux/sched.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020
Damjan Marion6a7acc22016-12-19 16:28:36 +010021extern vlib_main_t **vlib_mains;
Ed Warnickecb9cada2015-12-08 15:45:58 -070022
Dave Barach9b8ffd92016-07-08 08:13:45 -040023void vlib_set_thread_name (char *name);
Ed Warnickecb9cada2015-12-08 15:45:58 -070024
25/* arg is actually a vlib__thread_t * */
Dave Barach9b8ffd92016-07-08 08:13:45 -040026typedef void (vlib_thread_function_t) (void *arg);
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
Dave Barach9b8ffd92016-07-08 08:13:45 -040028typedef struct vlib_thread_registration_
29{
Ed Warnickecb9cada2015-12-08 15:45:58 -070030 /* constructor generated list of thread registrations */
Dave Barach9b8ffd92016-07-08 08:13:45 -040031 struct vlib_thread_registration_ *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070032
33 /* config parameters */
Dave Barach9b8ffd92016-07-08 08:13:45 -040034 char *name;
35 char *short_name;
36 vlib_thread_function_t *function;
Ed Warnickecb9cada2015-12-08 15:45:58 -070037 uword mheap_size;
38 int fixed_count;
39 u32 count;
40 int no_data_structure_clone;
Bud Grise68adab92016-02-12 10:36:11 -050041 u32 frame_queue_nelts;
42
Ed Warnickecb9cada2015-12-08 15:45:58 -070043 /* All threads of this type run on pthreads */
44 int use_pthreads;
45 u32 first_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -040046 uword *coremask;
Ed Warnickecb9cada2015-12-08 15:45:58 -070047} vlib_thread_registration_t;
48
Damjan Marion3f46baf2016-02-06 19:16:21 +010049/*
50 * Frames have their cpu / vlib_main_t index in the low-order N bits
51 * Make VLIB_MAX_CPUS a power-of-two, please...
Ed Warnickecb9cada2015-12-08 15:45:58 -070052 */
Damjan Marion3f46baf2016-02-06 19:16:21 +010053
Christophe Fontainefef15b42016-04-09 12:38:49 +090054#ifndef VLIB_MAX_CPUS
Damjan Marion3f46baf2016-02-06 19:16:21 +010055#define VLIB_MAX_CPUS 256
Christophe Fontainefef15b42016-04-09 12:38:49 +090056#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -070057
Damjan Marionce8debf2016-02-06 19:16:21 +010058#if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS
59#error Please increase number of per-cpu mheaps
60#endif
61
Dave Barach9b8ffd92016-07-08 08:13:45 -040062#define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */
Ed Warnickecb9cada2015-12-08 15:45:58 -070063#define VLIB_OFFSET_MASK (~VLIB_CPU_MASK)
64
Florin Coras93992a92017-05-24 18:03:56 -070065#define VLIB_LOG2_THREAD_STACK_SIZE (21)
Ed Warnickecb9cada2015-12-08 15:45:58 -070066#define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE)
67
Dave Barach9b8ffd92016-07-08 08:13:45 -040068typedef enum
69{
70 VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME,
Ed Warnickecb9cada2015-12-08 15:45:58 -070071} vlib_frame_queue_msg_type_t;
72
Dave Barach9b8ffd92016-07-08 08:13:45 -040073typedef struct
74{
Damjan Marionb0d680b2016-11-04 14:41:44 +010075 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 volatile u32 valid;
Dave Barach9b8ffd92016-07-08 08:13:45 -040077 u32 msg_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 u32 n_vectors;
79 u32 last_n_vectors;
80
81 /* 256 * 4 = 1024 bytes, even mult of cache line size */
82 u32 buffer_index[VLIB_FRAME_SIZE];
Dave Barach9b8ffd92016-07-08 08:13:45 -040083}
84vlib_frame_queue_elt_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070085
Dave Barach9b8ffd92016-07-08 08:13:45 -040086typedef struct
87{
Ed Warnickecb9cada2015-12-08 15:45:58 -070088 /* First cache line */
Damjan Marionb0d680b2016-11-04 14:41:44 +010089 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070090 volatile u32 *wait_at_barrier;
91 volatile u32 *workers_at_barrier;
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
93 /* Second Cache Line */
Damjan Marionb0d680b2016-11-04 14:41:44 +010094 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -070095 void *thread_mheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -040096 u8 *thread_stack;
97 void (*thread_function) (void *);
98 void *thread_function_arg;
99 i64 recursion_level;
100 elog_track_t elog_track;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 u32 instance_id;
102 vlib_thread_registration_t *registration;
103 u8 *name;
Bud Grise42f20062016-03-16 13:09:46 -0400104 u64 barrier_sync_count;
Dave Barach88c6e002018-09-30 15:54:06 -0400105 u8 barrier_elog_enabled;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100106 const char *barrier_caller;
107 const char *barrier_context;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100108 volatile u32 *node_reforks_required;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109
110 long lwp;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200111 int cpu_id;
112 int core_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500113 int numa_id;
Pavel Kotucek98765202016-10-07 08:37:28 +0200114 pthread_t thread_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115} vlib_worker_thread_t;
116
Damjan Marion6a7acc22016-12-19 16:28:36 +0100117extern vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
Dave Barach9b8ffd92016-07-08 08:13:45 -0400119typedef struct
120{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121 /* enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100122 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 volatile u64 tail;
124 u64 enqueues;
125 u64 enqueue_ticks;
126 u64 enqueue_vectors;
127 u32 enqueue_full_events;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128
129 /* dequeue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100130 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 volatile u64 head;
132 u64 dequeues;
133 u64 dequeue_ticks;
134 u64 dequeue_vectors;
135 u64 trace;
136 u64 vector_threshold;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
138 /* dequeue hint to enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100139 CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140 volatile u64 head_hint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
142 /* read-only, constant, shared */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100143 CLIB_CACHE_LINE_ALIGN_MARK (cacheline3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144 vlib_frame_queue_elt_t *elts;
145 u32 nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400146}
147vlib_frame_queue_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100149typedef struct
150{
Damjan Marion78fd7e82018-07-20 18:47:05 +0200151 vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index;
152 vlib_frame_queue_t **congested_handoff_queue_by_thread_index;
153} vlib_frame_queue_per_thread_data_t;
154
155typedef struct
156{
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100157 u32 node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +0200158 u32 frame_queue_nelts;
159 u32 queue_hi_thresh;
160
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100161 vlib_frame_queue_t **vlib_frame_queues;
Damjan Marion78fd7e82018-07-20 18:47:05 +0200162 vlib_frame_queue_per_thread_data_t *per_thread_data;
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100163
164 /* for frame queue tracing */
165 frame_queue_trace_t *frame_queue_traces;
166 frame_queue_nelt_counter_t *frame_queue_histogram;
167} vlib_frame_queue_main_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
Dave Barach69128d02017-09-26 10:54:34 -0400169typedef struct
170{
171 uword node_index;
172 uword type_opaque;
173 uword data;
174} vlib_process_signal_event_mt_args_t;
175
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176/* Called early, in thread 0's context */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177clib_error_t *vlib_thread_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
Dave Barach9b8ffd92016-07-08 08:13:45 -0400179int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
180 u32 frame_queue_index, vlib_frame_t * frame,
181 vlib_frame_queue_msg_type_t type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
Damjan Marione9d52d52017-03-09 15:42:26 +0100183int
184vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
Dave Barach9b8ffd92016-07-08 08:13:45 -0400186void vlib_worker_thread_node_runtime_update (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187
Dave Barach9b8ffd92016-07-08 08:13:45 -0400188void vlib_create_worker_threads (vlib_main_t * vm, int n,
189 void (*thread_function) (void *));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190
191void vlib_worker_thread_init (vlib_worker_thread_t * w);
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100192u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
194/* Check for a barrier sync request every 30ms */
195#define BARRIER_SYNC_DELAY (0.030000)
196
197#if CLIB_DEBUG > 0
198/* long barrier timeout, for gdb... */
199#define BARRIER_SYNC_TIMEOUT (600.1)
200#else
201#define BARRIER_SYNC_TIMEOUT (1.0)
202#endif
203
Damjan Marion8343ee52019-02-26 17:15:48 +0100204#define vlib_worker_thread_barrier_sync(X) {vlib_worker_thread_barrier_sync_int(X, __FUNCTION__);}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100205
Damjan Marion8343ee52019-02-26 17:15:48 +0100206void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm,
207 const char *func_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400208void vlib_worker_thread_barrier_release (vlib_main_t * vm);
Dave Barachc602b382019-06-03 19:48:22 -0400209void vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100210void vlib_worker_thread_node_refork (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Damjan Marion586afd72017-04-05 19:18:20 +0200212static_always_inline uword
213vlib_get_thread_index (void)
214{
Damjan Marionf55f9b82017-05-10 21:06:28 +0200215 return __os_thread_index;
Damjan Marion586afd72017-04-05 19:18:20 +0200216}
217
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218always_inline void
219vlib_smp_unsafe_warning (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220{
221 if (CLIB_DEBUG > 0)
222 {
Damjan Marion586afd72017-04-05 19:18:20 +0200223 if (vlib_get_thread_index ())
Dave Barach9b8ffd92016-07-08 08:13:45 -0400224 fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 }
226}
227
Dave Barach9b8ffd92016-07-08 08:13:45 -0400228typedef enum
229{
230 VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0,
231 VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232} vlib_fork_fixup_t;
233
234void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which);
235
Dave Barach80f54e22017-03-08 19:08:56 -0500236#define foreach_vlib_main(body) \
237do { \
238 vlib_main_t ** __vlib_mains = 0, *this_vlib_main; \
239 int ii; \
240 \
241 for (ii = 0; ii < vec_len (vlib_mains); ii++) \
242 { \
243 this_vlib_main = vlib_mains[ii]; \
Damjan Marionce359db2017-03-16 16:15:38 +0100244 ASSERT (ii == 0 || \
245 this_vlib_main->parked_at_barrier == 1); \
Dave Barach80f54e22017-03-08 19:08:56 -0500246 if (this_vlib_main) \
247 vec_add1 (__vlib_mains, this_vlib_main); \
248 } \
249 \
250 for (ii = 0; ii < vec_len (__vlib_mains); ii++) \
251 { \
252 this_vlib_main = __vlib_mains[ii]; \
253 /* body uses this_vlib_main... */ \
254 (body); \
255 } \
256 vec_free (__vlib_mains); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257} while (0);
258
Pavel Kotucek1e765832016-09-23 08:54:14 +0200259#define foreach_sched_policy \
260 _(SCHED_OTHER, OTHER, "other") \
261 _(SCHED_BATCH, BATCH, "batch") \
262 _(SCHED_IDLE, IDLE, "idle") \
263 _(SCHED_FIFO, FIFO, "fifo") \
264 _(SCHED_RR, RR, "rr")
265
266typedef enum
267{
268#define _(v,f,s) SCHED_POLICY_##f = v,
269 foreach_sched_policy
270#undef _
271 SCHED_POLICY_N,
272} sched_policy_t;
273
Dave Barach9b8ffd92016-07-08 08:13:45 -0400274typedef struct
275{
Damjan Marion878c6092017-01-04 13:19:27 +0100276 clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w,
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200277 unsigned cpu_id);
278 clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu);
Damjan Marion878c6092017-01-04 13:19:27 +0100279} vlib_thread_callbacks_t;
280
281typedef struct
282{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 /* Link list of registrations, built by constructors */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400284 vlib_thread_registration_t *next;
285
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 /* Vector of registrations, w/ non-data-structure clones at the top */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400287 vlib_thread_registration_t **registrations;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
Dave Barach9b8ffd92016-07-08 08:13:45 -0400289 uword *thread_registrations_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Dave Barach9b8ffd92016-07-08 08:13:45 -0400291 vlib_worker_thread_t *worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
Dave Barach9b8ffd92016-07-08 08:13:45 -0400293 /*
294 * Launch all threads as pthreads,
295 * not eal_rte_launch (strict affinity) threads
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296 */
297 int use_pthreads;
298
299 /* Number of vlib_main / vnet_main clones */
300 u32 n_vlib_mains;
301
302 /* Number of thread stacks to create */
303 u32 n_thread_stacks;
304
305 /* Number of pthreads */
306 u32 n_pthreads;
307
Damjan Marion878c6092017-01-04 13:19:27 +0100308 /* Number of threads */
309 u32 n_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
311 /* Number of cores to skip, must match the core mask */
312 u32 skip_cores;
313
314 /* Thread prefix name */
315 u8 *thread_prefix;
316
317 /* main thread lcore */
Damjan Marion858151f2018-07-11 10:51:00 +0200318 u32 main_lcore;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
320 /* Bitmap of available CPU cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321 uword *cpu_core_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
323 /* Bitmap of available CPU sockets (NUMA nodes) */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400324 uword *cpu_socket_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100326 /* Worker handoff queues */
327 vlib_frame_queue_main_t *frame_queue_mains;
Damjan Marion0f8ecf02016-06-27 08:30:30 +0200328
329 /* worker thread initialization barrier */
330 volatile u32 worker_thread_release;
331
Pavel Kotucek1e765832016-09-23 08:54:14 +0200332 /* scheduling policy */
333 u32 sched_policy;
334
335 /* scheduling policy priority */
336 u32 sched_priority;
337
Damjan Marion878c6092017-01-04 13:19:27 +0100338 /* callbacks */
339 vlib_thread_callbacks_t cb;
340 int extern_thread_mgmt;
Dave Baracha690fdb2020-01-21 12:34:55 -0500341
342 /* NUMA-bound heap size */
343 uword numa_heap_size;
344
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345} vlib_thread_main_t;
346
Damjan Marion6a7acc22016-12-19 16:28:36 +0100347extern vlib_thread_main_t vlib_thread_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
Damjan Marionce359db2017-03-16 16:15:38 +0100349#include <vlib/global_funcs.h>
350
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351#define VLIB_REGISTER_THREAD(x,...) \
352 __VA_ARGS__ vlib_thread_registration_t x; \
353static void __vlib_add_thread_registration_##x (void) \
354 __attribute__((__constructor__)) ; \
355static void __vlib_add_thread_registration_##x (void) \
356{ \
357 vlib_thread_main_t * tm = &vlib_thread_main; \
358 x.next = tm->next; \
359 tm->next = &x; \
360} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200361static void __vlib_rm_thread_registration_##x (void) \
362 __attribute__((__destructor__)) ; \
363static void __vlib_rm_thread_registration_##x (void) \
364{ \
365 vlib_thread_main_t * tm = &vlib_thread_main; \
366 VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \
367} \
Dave Barach9b8ffd92016-07-08 08:13:45 -0400368__VA_ARGS__ vlib_thread_registration_t x
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Damjan Marion64034362016-11-07 22:19:55 +0100370always_inline u32
371vlib_num_workers ()
372{
373 return vlib_thread_main.n_vlib_mains - 1;
374}
375
376always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200377vlib_get_worker_thread_index (u32 worker_index)
Damjan Marion64034362016-11-07 22:19:55 +0100378{
379 return worker_index + 1;
380}
381
Damjan Marion3a4ed392016-11-08 13:20:42 +0100382always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200383vlib_get_worker_index (u32 thread_index)
Damjan Marion3a4ed392016-11-08 13:20:42 +0100384{
Damjan Marion586afd72017-04-05 19:18:20 +0200385 return thread_index - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100386}
387
388always_inline u32
389vlib_get_current_worker_index ()
390{
Damjan Marion586afd72017-04-05 19:18:20 +0200391 return vlib_get_thread_index () - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100392}
393
Damjan Marionce359db2017-03-16 16:15:38 +0100394static inline void
395vlib_worker_thread_barrier_check (void)
396{
397 if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier))
398 {
Dave Barach88c6e002018-09-30 15:54:06 -0400399 vlib_main_t *vm = vlib_get_main ();
400 u32 thread_index = vm->thread_index;
401 f64 t = vlib_time_now (vm);
402
403 if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
404 {
405 vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
406 /* *INDENT-OFF* */
407 ELOG_TYPE_DECLARE (e) = {
408 .format = "barrier-wait-thread-%d",
409 .format_args = "i4",
410 };
411 /* *INDENT-ON* */
412
413 struct
414 {
415 u32 thread_index;
416 } __clib_packed *ed;
417
418 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
419 w->elog_track);
420 ed->thread_index = thread_index;
421 }
422
Damjan Marionce359db2017-03-16 16:15:38 +0100423 if (CLIB_DEBUG > 0)
424 {
425 vm = vlib_get_main ();
426 vm->parked_at_barrier = 1;
427 }
Alexander Kabaevfeda5452019-11-01 18:26:20 -0400428 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Damjan Marionce359db2017-03-16 16:15:38 +0100429 while (*vlib_worker_threads->wait_at_barrier)
430 ;
Dave Baracha4324a92019-02-19 17:05:30 -0500431
432 /*
433 * Recompute the offset from thread-0 time.
434 * Note that vlib_time_now adds vm->time_offset, so
435 * clear it first. Save the resulting idea of "now", to
436 * see how well we're doing. See show_clock_command_fn(...)
437 */
438 {
439 f64 now;
440 vm->time_offset = 0.0;
441 now = vlib_time_now (vm);
442 vm->time_offset = vlib_global_main.time_last_barrier_release - now;
443 vm->time_last_barrier_release = vlib_time_now (vm);
444 }
445
Damjan Marionce359db2017-03-16 16:15:38 +0100446 if (CLIB_DEBUG > 0)
447 vm->parked_at_barrier = 0;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000448 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100449
450 if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required))
451 {
Dave Barach88c6e002018-09-30 15:54:06 -0400452 if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
453 {
454 t = vlib_time_now (vm) - t;
455 vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
456 /* *INDENT-OFF* */
457 ELOG_TYPE_DECLARE (e) = {
458 .format = "barrier-refork-thread-%d",
459 .format_args = "i4",
460 };
461 /* *INDENT-ON* */
462
463 struct
464 {
465 u32 thread_index;
466 } __clib_packed *ed;
467
468 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
469 w->elog_track);
470 ed->thread_index = thread_index;
471 }
472
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100473 vlib_worker_thread_node_refork ();
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000474 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
475 -1);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100476 while (*vlib_worker_threads->node_reforks_required)
477 ;
478 }
Dave Barach88c6e002018-09-30 15:54:06 -0400479 if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
480 {
481 t = vlib_time_now (vm) - t;
482 vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
483 /* *INDENT-OFF* */
484 ELOG_TYPE_DECLARE (e) = {
485 .format = "barrier-released-thread-%d: %dus",
486 .format_args = "i4i4",
487 };
488 /* *INDENT-ON* */
489
490 struct
491 {
492 u32 thread_index;
493 u32 duration;
494 } __clib_packed *ed;
495
496 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
497 w->elog_track);
498 ed->thread_index = thread_index;
499 ed->duration = (int) (1000000.0 * t);
500 }
Damjan Marionce359db2017-03-16 16:15:38 +0100501 }
502}
503
Damjan Marion64034362016-11-07 22:19:55 +0100504always_inline vlib_main_t *
505vlib_get_worker_vlib_main (u32 worker_index)
506{
507 vlib_main_t *vm;
508 vlib_thread_main_t *tm = &vlib_thread_main;
509 ASSERT (worker_index < tm->n_vlib_mains - 1);
510 vm = vlib_mains[worker_index + 1];
511 ASSERT (vm);
512 return vm;
513}
514
Florin Coras568ebc72018-09-18 16:12:50 -0700515static inline u8
516vlib_thread_is_main_w_barrier (void)
517{
518 return (!vlib_num_workers ()
519 || ((vlib_get_thread_index () == 0
520 && vlib_worker_threads->wait_at_barrier[0])));
521}
522
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100523static inline void
524vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf)
525{
526 CLIB_MEMORY_BARRIER ();
527 hf->valid = 1;
528}
529
530static inline vlib_frame_queue_elt_t *
531vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index)
532{
533 vlib_frame_queue_t *fq;
534 vlib_frame_queue_elt_t *elt;
535 vlib_thread_main_t *tm = &vlib_thread_main;
536 vlib_frame_queue_main_t *fqm =
537 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
538 u64 new_tail;
539
540 fq = fqm->vlib_frame_queues[index];
541 ASSERT (fq);
542
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000543 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100544
545 /* Wait until a ring slot is available */
546 while (new_tail >= fq->head_hint + fq->nelts)
547 vlib_worker_thread_barrier_check ();
548
549 elt = fq->elts + (new_tail & (fq->nelts - 1));
550
551 /* this would be very bad... */
552 while (elt->valid)
553 ;
554
555 elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME;
556 elt->last_n_vectors = elt->n_vectors = 0;
557
558 return elt;
559}
560
561static inline vlib_frame_queue_t *
562is_vlib_frame_queue_congested (u32 frame_queue_index,
563 u32 index,
564 u32 queue_hi_thresh,
565 vlib_frame_queue_t **
566 handoff_queue_by_worker_index)
567{
568 vlib_frame_queue_t *fq;
569 vlib_thread_main_t *tm = &vlib_thread_main;
570 vlib_frame_queue_main_t *fqm =
571 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
572
573 fq = handoff_queue_by_worker_index[index];
574 if (fq != (vlib_frame_queue_t *) (~0))
575 return fq;
576
577 fq = fqm->vlib_frame_queues[index];
578 ASSERT (fq);
579
580 if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh)))
581 {
582 /* a valid entry in the array will indicate the queue has reached
583 * the specified threshold and is congested
584 */
585 handoff_queue_by_worker_index[index] = fq;
586 fq->enqueue_full_events++;
587 return fq;
588 }
589
590 return NULL;
591}
592
593static inline vlib_frame_queue_elt_t *
594vlib_get_worker_handoff_queue_elt (u32 frame_queue_index,
595 u32 vlib_worker_index,
596 vlib_frame_queue_elt_t **
597 handoff_queue_elt_by_worker_index)
598{
599 vlib_frame_queue_elt_t *elt;
600
601 if (handoff_queue_elt_by_worker_index[vlib_worker_index])
602 return handoff_queue_elt_by_worker_index[vlib_worker_index];
603
604 elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index);
605
606 handoff_queue_elt_by_worker_index[vlib_worker_index] = elt;
607
608 return elt;
609}
610
Damjan Marion586afd72017-04-05 19:18:20 +0200611u8 *vlib_thread_stack_init (uword thread_index);
Damjan Marion878c6092017-01-04 13:19:27 +0100612int vlib_thread_cb_register (struct vlib_main_t *vm,
613 vlib_thread_callbacks_t * cb);
Dave Barach69128d02017-09-26 10:54:34 -0400614extern void *rpc_call_main_thread_cb_fn;
615
616void
617vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
618 args);
619void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size);
Dave Baracha690fdb2020-01-21 12:34:55 -0500620void vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id);
621
622
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623#endif /* included_vlib_threads_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400624
625/*
626 * fd.io coding-style-patch-verification: ON
627 *
628 * Local Variables:
629 * eval: (c-set-style "gnu")
630 * End:
631 */