blob: b47a633c2cc8ae9b50d23de9894d265ebb13a8f4 [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
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010021/*
22 * To enable detailed tracing of barrier usage, including call stacks and
23 * timings, define BARRIER_TRACING here or in relevant TAGS. If also used
24 * with CLIB_DEBUG, timing will _not_ be representative of normal code
25 * execution.
26 *
27 */
28
29// #define BARRIER_TRACING 1
30
31/*
32 * Two options for barrier tracing output: syslog & elog.
33 */
34
35// #define BARRIER_TRACING_ELOG 1
36
Damjan Marion6a7acc22016-12-19 16:28:36 +010037extern vlib_main_t **vlib_mains;
Ed Warnickecb9cada2015-12-08 15:45:58 -070038
Dave Barach9b8ffd92016-07-08 08:13:45 -040039void vlib_set_thread_name (char *name);
Ed Warnickecb9cada2015-12-08 15:45:58 -070040
41/* arg is actually a vlib__thread_t * */
Dave Barach9b8ffd92016-07-08 08:13:45 -040042typedef void (vlib_thread_function_t) (void *arg);
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
Dave Barach9b8ffd92016-07-08 08:13:45 -040044typedef struct vlib_thread_registration_
45{
Ed Warnickecb9cada2015-12-08 15:45:58 -070046 /* constructor generated list of thread registrations */
Dave Barach9b8ffd92016-07-08 08:13:45 -040047 struct vlib_thread_registration_ *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
49 /* config parameters */
Dave Barach9b8ffd92016-07-08 08:13:45 -040050 char *name;
51 char *short_name;
52 vlib_thread_function_t *function;
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 uword mheap_size;
54 int fixed_count;
55 u32 count;
56 int no_data_structure_clone;
Bud Grise68adab92016-02-12 10:36:11 -050057 u32 frame_queue_nelts;
58
Ed Warnickecb9cada2015-12-08 15:45:58 -070059 /* All threads of this type run on pthreads */
60 int use_pthreads;
61 u32 first_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -040062 uword *coremask;
Ed Warnickecb9cada2015-12-08 15:45:58 -070063} vlib_thread_registration_t;
64
Damjan Marion3f46baf2016-02-06 19:16:21 +010065/*
66 * Frames have their cpu / vlib_main_t index in the low-order N bits
67 * Make VLIB_MAX_CPUS a power-of-two, please...
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 */
Damjan Marion3f46baf2016-02-06 19:16:21 +010069
Christophe Fontainefef15b42016-04-09 12:38:49 +090070#ifndef VLIB_MAX_CPUS
Damjan Marion3f46baf2016-02-06 19:16:21 +010071#define VLIB_MAX_CPUS 256
Christophe Fontainefef15b42016-04-09 12:38:49 +090072#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -070073
Damjan Marionce8debf2016-02-06 19:16:21 +010074#if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS
75#error Please increase number of per-cpu mheaps
76#endif
77
Dave Barach9b8ffd92016-07-08 08:13:45 -040078#define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */
Ed Warnickecb9cada2015-12-08 15:45:58 -070079#define VLIB_OFFSET_MASK (~VLIB_CPU_MASK)
80
Florin Coras93992a92017-05-24 18:03:56 -070081#define VLIB_LOG2_THREAD_STACK_SIZE (21)
Ed Warnickecb9cada2015-12-08 15:45:58 -070082#define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE)
83
Dave Barach9b8ffd92016-07-08 08:13:45 -040084typedef enum
85{
86 VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME,
Ed Warnickecb9cada2015-12-08 15:45:58 -070087} vlib_frame_queue_msg_type_t;
88
Dave Barach9b8ffd92016-07-08 08:13:45 -040089typedef struct
90{
Damjan Marionb0d680b2016-11-04 14:41:44 +010091 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 volatile u32 valid;
Dave Barach9b8ffd92016-07-08 08:13:45 -040093 u32 msg_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 u32 n_vectors;
95 u32 last_n_vectors;
96
97 /* 256 * 4 = 1024 bytes, even mult of cache line size */
98 u32 buffer_index[VLIB_FRAME_SIZE];
Dave Barach9b8ffd92016-07-08 08:13:45 -040099}
100vlib_frame_queue_elt_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
Dave Barach9b8ffd92016-07-08 08:13:45 -0400102typedef struct
103{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104 /* First cache line */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100105 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 volatile u32 *wait_at_barrier;
107 volatile u32 *workers_at_barrier;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
109 /* Second Cache Line */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100110 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 void *thread_mheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400112 u8 *thread_stack;
113 void (*thread_function) (void *);
114 void *thread_function_arg;
115 i64 recursion_level;
116 elog_track_t elog_track;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 u32 instance_id;
118 vlib_thread_registration_t *registration;
119 u8 *name;
Bud Grise42f20062016-03-16 13:09:46 -0400120 u64 barrier_sync_count;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100121#ifdef BARRIER_TRACING
122 const char *barrier_caller;
123 const char *barrier_context;
124#endif
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100125 volatile u32 *node_reforks_required;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
127 long lwp;
Pavel Kotucek98765202016-10-07 08:37:28 +0200128 int lcore_id;
129 pthread_t thread_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130} vlib_worker_thread_t;
131
Damjan Marion6a7acc22016-12-19 16:28:36 +0100132extern vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Dave Barach9b8ffd92016-07-08 08:13:45 -0400134typedef struct
135{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 /* enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100137 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 volatile u64 tail;
139 u64 enqueues;
140 u64 enqueue_ticks;
141 u64 enqueue_vectors;
142 u32 enqueue_full_events;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143
144 /* dequeue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100145 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146 volatile u64 head;
147 u64 dequeues;
148 u64 dequeue_ticks;
149 u64 dequeue_vectors;
150 u64 trace;
151 u64 vector_threshold;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153 /* dequeue hint to enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100154 CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155 volatile u64 head_hint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 /* read-only, constant, shared */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100158 CLIB_CACHE_LINE_ALIGN_MARK (cacheline3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 vlib_frame_queue_elt_t *elts;
160 u32 nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400161}
162vlib_frame_queue_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100164typedef struct
165{
Damjan Marion78fd7e82018-07-20 18:47:05 +0200166 vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index;
167 vlib_frame_queue_t **congested_handoff_queue_by_thread_index;
168} vlib_frame_queue_per_thread_data_t;
169
170typedef struct
171{
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100172 u32 node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +0200173 u32 frame_queue_nelts;
174 u32 queue_hi_thresh;
175
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100176 vlib_frame_queue_t **vlib_frame_queues;
Damjan Marion78fd7e82018-07-20 18:47:05 +0200177 vlib_frame_queue_per_thread_data_t *per_thread_data;
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100178
179 /* for frame queue tracing */
180 frame_queue_trace_t *frame_queue_traces;
181 frame_queue_nelt_counter_t *frame_queue_histogram;
182} vlib_frame_queue_main_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
Dave Barach69128d02017-09-26 10:54:34 -0400184typedef struct
185{
186 uword node_index;
187 uword type_opaque;
188 uword data;
189} vlib_process_signal_event_mt_args_t;
190
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191/* Called early, in thread 0's context */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400192clib_error_t *vlib_thread_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
195 u32 frame_queue_index, vlib_frame_t * frame,
196 vlib_frame_queue_msg_type_t type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197
Damjan Marione9d52d52017-03-09 15:42:26 +0100198int
199vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Dave Barach9b8ffd92016-07-08 08:13:45 -0400201void vlib_worker_thread_node_runtime_update (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Dave Barach9b8ffd92016-07-08 08:13:45 -0400203void vlib_create_worker_threads (vlib_main_t * vm, int n,
204 void (*thread_function) (void *));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205
206void vlib_worker_thread_init (vlib_worker_thread_t * w);
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100207u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208
209/* Check for a barrier sync request every 30ms */
210#define BARRIER_SYNC_DELAY (0.030000)
211
212#if CLIB_DEBUG > 0
213/* long barrier timeout, for gdb... */
214#define BARRIER_SYNC_TIMEOUT (600.1)
215#else
216#define BARRIER_SYNC_TIMEOUT (1.0)
217#endif
218
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100219#ifdef BARRIER_TRACING
220#define vlib_worker_thread_barrier_sync(X) {vlib_worker_threads[0].barrier_caller=__FUNCTION__;vlib_worker_thread_barrier_sync_int(X);}
221#else
222#define vlib_worker_thread_barrier_sync(X) vlib_worker_thread_barrier_sync_int(X)
223#endif
224
225
226void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400227void vlib_worker_thread_barrier_release (vlib_main_t * vm);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100228void vlib_worker_thread_node_refork (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Damjan Marion586afd72017-04-05 19:18:20 +0200230static_always_inline uword
231vlib_get_thread_index (void)
232{
Damjan Marionf55f9b82017-05-10 21:06:28 +0200233 return __os_thread_index;
Damjan Marion586afd72017-04-05 19:18:20 +0200234}
235
Dave Barach9b8ffd92016-07-08 08:13:45 -0400236always_inline void
237vlib_smp_unsafe_warning (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238{
239 if (CLIB_DEBUG > 0)
240 {
Damjan Marion586afd72017-04-05 19:18:20 +0200241 if (vlib_get_thread_index ())
Dave Barach9b8ffd92016-07-08 08:13:45 -0400242 fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 }
244}
245
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246typedef enum
247{
248 VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0,
249 VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250} vlib_fork_fixup_t;
251
252void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which);
253
Dave Barach80f54e22017-03-08 19:08:56 -0500254#define foreach_vlib_main(body) \
255do { \
256 vlib_main_t ** __vlib_mains = 0, *this_vlib_main; \
257 int ii; \
258 \
259 for (ii = 0; ii < vec_len (vlib_mains); ii++) \
260 { \
261 this_vlib_main = vlib_mains[ii]; \
Damjan Marionce359db2017-03-16 16:15:38 +0100262 ASSERT (ii == 0 || \
263 this_vlib_main->parked_at_barrier == 1); \
Dave Barach80f54e22017-03-08 19:08:56 -0500264 if (this_vlib_main) \
265 vec_add1 (__vlib_mains, this_vlib_main); \
266 } \
267 \
268 for (ii = 0; ii < vec_len (__vlib_mains); ii++) \
269 { \
270 this_vlib_main = __vlib_mains[ii]; \
271 /* body uses this_vlib_main... */ \
272 (body); \
273 } \
274 vec_free (__vlib_mains); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275} while (0);
276
Pavel Kotucek1e765832016-09-23 08:54:14 +0200277#define foreach_sched_policy \
278 _(SCHED_OTHER, OTHER, "other") \
279 _(SCHED_BATCH, BATCH, "batch") \
280 _(SCHED_IDLE, IDLE, "idle") \
281 _(SCHED_FIFO, FIFO, "fifo") \
282 _(SCHED_RR, RR, "rr")
283
284typedef enum
285{
286#define _(v,f,s) SCHED_POLICY_##f = v,
287 foreach_sched_policy
288#undef _
289 SCHED_POLICY_N,
290} sched_policy_t;
291
Dave Barach9b8ffd92016-07-08 08:13:45 -0400292typedef struct
293{
Damjan Marion878c6092017-01-04 13:19:27 +0100294 clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w,
295 unsigned lcore_id);
296 clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 lcore);
297} vlib_thread_callbacks_t;
298
299typedef struct
300{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 /* Link list of registrations, built by constructors */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400302 vlib_thread_registration_t *next;
303
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304 /* Vector of registrations, w/ non-data-structure clones at the top */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400305 vlib_thread_registration_t **registrations;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306
Dave Barach9b8ffd92016-07-08 08:13:45 -0400307 uword *thread_registrations_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
Dave Barach9b8ffd92016-07-08 08:13:45 -0400309 vlib_worker_thread_t *worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
Dave Barach9b8ffd92016-07-08 08:13:45 -0400311 /*
312 * Launch all threads as pthreads,
313 * not eal_rte_launch (strict affinity) threads
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 */
315 int use_pthreads;
316
317 /* Number of vlib_main / vnet_main clones */
318 u32 n_vlib_mains;
319
320 /* Number of thread stacks to create */
321 u32 n_thread_stacks;
322
323 /* Number of pthreads */
324 u32 n_pthreads;
325
Damjan Marion878c6092017-01-04 13:19:27 +0100326 /* Number of threads */
327 u32 n_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328
329 /* Number of cores to skip, must match the core mask */
330 u32 skip_cores;
331
332 /* Thread prefix name */
333 u8 *thread_prefix;
334
335 /* main thread lcore */
Damjan Marion858151f2018-07-11 10:51:00 +0200336 u32 main_lcore;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337
338 /* Bitmap of available CPU cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400339 uword *cpu_core_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341 /* Bitmap of available CPU sockets (NUMA nodes) */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342 uword *cpu_socket_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100344 /* Worker handoff queues */
345 vlib_frame_queue_main_t *frame_queue_mains;
Damjan Marion0f8ecf02016-06-27 08:30:30 +0200346
347 /* worker thread initialization barrier */
348 volatile u32 worker_thread_release;
349
Pavel Kotucek1e765832016-09-23 08:54:14 +0200350 /* scheduling policy */
351 u32 sched_policy;
352
353 /* scheduling policy priority */
354 u32 sched_priority;
355
Damjan Marion878c6092017-01-04 13:19:27 +0100356 /* callbacks */
357 vlib_thread_callbacks_t cb;
358 int extern_thread_mgmt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359} vlib_thread_main_t;
360
Damjan Marion6a7acc22016-12-19 16:28:36 +0100361extern vlib_thread_main_t vlib_thread_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362
Damjan Marionce359db2017-03-16 16:15:38 +0100363#include <vlib/global_funcs.h>
364
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365#define VLIB_REGISTER_THREAD(x,...) \
366 __VA_ARGS__ vlib_thread_registration_t x; \
367static void __vlib_add_thread_registration_##x (void) \
368 __attribute__((__constructor__)) ; \
369static void __vlib_add_thread_registration_##x (void) \
370{ \
371 vlib_thread_main_t * tm = &vlib_thread_main; \
372 x.next = tm->next; \
373 tm->next = &x; \
374} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200375static void __vlib_rm_thread_registration_##x (void) \
376 __attribute__((__destructor__)) ; \
377static void __vlib_rm_thread_registration_##x (void) \
378{ \
379 vlib_thread_main_t * tm = &vlib_thread_main; \
380 VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \
381} \
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382__VA_ARGS__ vlib_thread_registration_t x
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Damjan Marion64034362016-11-07 22:19:55 +0100384always_inline u32
385vlib_num_workers ()
386{
387 return vlib_thread_main.n_vlib_mains - 1;
388}
389
390always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200391vlib_get_worker_thread_index (u32 worker_index)
Damjan Marion64034362016-11-07 22:19:55 +0100392{
393 return worker_index + 1;
394}
395
Damjan Marion3a4ed392016-11-08 13:20:42 +0100396always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200397vlib_get_worker_index (u32 thread_index)
Damjan Marion3a4ed392016-11-08 13:20:42 +0100398{
Damjan Marion586afd72017-04-05 19:18:20 +0200399 return thread_index - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100400}
401
402always_inline u32
403vlib_get_current_worker_index ()
404{
Damjan Marion586afd72017-04-05 19:18:20 +0200405 return vlib_get_thread_index () - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100406}
407
Damjan Marionce359db2017-03-16 16:15:38 +0100408static inline void
409vlib_worker_thread_barrier_check (void)
410{
411 if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier))
412 {
413 vlib_main_t *vm;
414 clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, 1);
415 if (CLIB_DEBUG > 0)
416 {
417 vm = vlib_get_main ();
418 vm->parked_at_barrier = 1;
419 }
420 while (*vlib_worker_threads->wait_at_barrier)
421 ;
422 if (CLIB_DEBUG > 0)
423 vm->parked_at_barrier = 0;
424 clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, -1);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100425
426 if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required))
427 {
428 vlib_worker_thread_node_refork ();
429 clib_smp_atomic_add (vlib_worker_threads->node_reforks_required,
430 -1);
431 while (*vlib_worker_threads->node_reforks_required)
432 ;
433 }
Damjan Marionce359db2017-03-16 16:15:38 +0100434 }
435}
436
Damjan Marion64034362016-11-07 22:19:55 +0100437always_inline vlib_main_t *
438vlib_get_worker_vlib_main (u32 worker_index)
439{
440 vlib_main_t *vm;
441 vlib_thread_main_t *tm = &vlib_thread_main;
442 ASSERT (worker_index < tm->n_vlib_mains - 1);
443 vm = vlib_mains[worker_index + 1];
444 ASSERT (vm);
445 return vm;
446}
447
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100448static inline void
449vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf)
450{
451 CLIB_MEMORY_BARRIER ();
452 hf->valid = 1;
453}
454
455static inline vlib_frame_queue_elt_t *
456vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index)
457{
458 vlib_frame_queue_t *fq;
459 vlib_frame_queue_elt_t *elt;
460 vlib_thread_main_t *tm = &vlib_thread_main;
461 vlib_frame_queue_main_t *fqm =
462 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
463 u64 new_tail;
464
465 fq = fqm->vlib_frame_queues[index];
466 ASSERT (fq);
467
468 new_tail = __sync_add_and_fetch (&fq->tail, 1);
469
470 /* Wait until a ring slot is available */
471 while (new_tail >= fq->head_hint + fq->nelts)
472 vlib_worker_thread_barrier_check ();
473
474 elt = fq->elts + (new_tail & (fq->nelts - 1));
475
476 /* this would be very bad... */
477 while (elt->valid)
478 ;
479
480 elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME;
481 elt->last_n_vectors = elt->n_vectors = 0;
482
483 return elt;
484}
485
486static inline vlib_frame_queue_t *
487is_vlib_frame_queue_congested (u32 frame_queue_index,
488 u32 index,
489 u32 queue_hi_thresh,
490 vlib_frame_queue_t **
491 handoff_queue_by_worker_index)
492{
493 vlib_frame_queue_t *fq;
494 vlib_thread_main_t *tm = &vlib_thread_main;
495 vlib_frame_queue_main_t *fqm =
496 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
497
498 fq = handoff_queue_by_worker_index[index];
499 if (fq != (vlib_frame_queue_t *) (~0))
500 return fq;
501
502 fq = fqm->vlib_frame_queues[index];
503 ASSERT (fq);
504
505 if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh)))
506 {
507 /* a valid entry in the array will indicate the queue has reached
508 * the specified threshold and is congested
509 */
510 handoff_queue_by_worker_index[index] = fq;
511 fq->enqueue_full_events++;
512 return fq;
513 }
514
515 return NULL;
516}
517
518static inline vlib_frame_queue_elt_t *
519vlib_get_worker_handoff_queue_elt (u32 frame_queue_index,
520 u32 vlib_worker_index,
521 vlib_frame_queue_elt_t **
522 handoff_queue_elt_by_worker_index)
523{
524 vlib_frame_queue_elt_t *elt;
525
526 if (handoff_queue_elt_by_worker_index[vlib_worker_index])
527 return handoff_queue_elt_by_worker_index[vlib_worker_index];
528
529 elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index);
530
531 handoff_queue_elt_by_worker_index[vlib_worker_index] = elt;
532
533 return elt;
534}
535
Damjan Marion586afd72017-04-05 19:18:20 +0200536u8 *vlib_thread_stack_init (uword thread_index);
Damjan Marion878c6092017-01-04 13:19:27 +0100537int vlib_thread_cb_register (struct vlib_main_t *vm,
538 vlib_thread_callbacks_t * cb);
Dave Barach69128d02017-09-26 10:54:34 -0400539extern void *rpc_call_main_thread_cb_fn;
540
541void
542vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
543 args);
544void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size);
Damjan Marion878c6092017-01-04 13:19:27 +0100545
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546#endif /* included_vlib_threads_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400547
548/*
549 * fd.io coding-style-patch-verification: ON
550 *
551 * Local Variables:
552 * eval: (c-set-style "gnu")
553 * End:
554 */