blob: 572ce77ffcccd7ea7f950b07899139a618e9fbbe [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;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 long lwp;
Pavel Kotucek98765202016-10-07 08:37:28 +0200107 int lcore_id;
108 pthread_t thread_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109} vlib_worker_thread_t;
110
Damjan Marion6a7acc22016-12-19 16:28:36 +0100111extern vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
Dave Barach9b8ffd92016-07-08 08:13:45 -0400113typedef struct
114{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 /* enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100116 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 volatile u64 tail;
118 u64 enqueues;
119 u64 enqueue_ticks;
120 u64 enqueue_vectors;
121 u32 enqueue_full_events;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
123 /* dequeue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100124 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 volatile u64 head;
126 u64 dequeues;
127 u64 dequeue_ticks;
128 u64 dequeue_vectors;
129 u64 trace;
130 u64 vector_threshold;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
132 /* dequeue hint to enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100133 CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 volatile u64 head_hint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135
136 /* read-only, constant, shared */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100137 CLIB_CACHE_LINE_ALIGN_MARK (cacheline3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 vlib_frame_queue_elt_t *elts;
139 u32 nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400140}
141vlib_frame_queue_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100143typedef struct
144{
145 u32 node_index;
146 vlib_frame_queue_t **vlib_frame_queues;
147
148 /* for frame queue tracing */
149 frame_queue_trace_t *frame_queue_traces;
150 frame_queue_nelt_counter_t *frame_queue_histogram;
151} vlib_frame_queue_main_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153/* Called early, in thread 0's context */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400154clib_error_t *vlib_thread_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
157 u32 frame_queue_index, vlib_frame_t * frame,
158 vlib_frame_queue_msg_type_t type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
Damjan Marione9d52d52017-03-09 15:42:26 +0100160int
161vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Dave Barach9b8ffd92016-07-08 08:13:45 -0400163void vlib_worker_thread_node_runtime_update (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Dave Barach9b8ffd92016-07-08 08:13:45 -0400165void vlib_create_worker_threads (vlib_main_t * vm, int n,
166 void (*thread_function) (void *));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168void vlib_worker_thread_init (vlib_worker_thread_t * w);
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100169u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171/* Check for a barrier sync request every 30ms */
172#define BARRIER_SYNC_DELAY (0.030000)
173
174#if CLIB_DEBUG > 0
175/* long barrier timeout, for gdb... */
176#define BARRIER_SYNC_TIMEOUT (600.1)
177#else
178#define BARRIER_SYNC_TIMEOUT (1.0)
179#endif
180
Dave Barach9b8ffd92016-07-08 08:13:45 -0400181void vlib_worker_thread_barrier_sync (vlib_main_t * vm);
182void vlib_worker_thread_barrier_release (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
Damjan Marion586afd72017-04-05 19:18:20 +0200184static_always_inline uword
185vlib_get_thread_index (void)
186{
Damjan Marionf55f9b82017-05-10 21:06:28 +0200187 return __os_thread_index;
Damjan Marion586afd72017-04-05 19:18:20 +0200188}
189
Dave Barach9b8ffd92016-07-08 08:13:45 -0400190always_inline void
191vlib_smp_unsafe_warning (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192{
193 if (CLIB_DEBUG > 0)
194 {
Damjan Marion586afd72017-04-05 19:18:20 +0200195 if (vlib_get_thread_index ())
Dave Barach9b8ffd92016-07-08 08:13:45 -0400196 fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 }
198}
199
Dave Barach9b8ffd92016-07-08 08:13:45 -0400200typedef enum
201{
202 VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0,
203 VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204} vlib_fork_fixup_t;
205
206void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which);
207
Dave Barach80f54e22017-03-08 19:08:56 -0500208#define foreach_vlib_main(body) \
209do { \
210 vlib_main_t ** __vlib_mains = 0, *this_vlib_main; \
211 int ii; \
212 \
213 for (ii = 0; ii < vec_len (vlib_mains); ii++) \
214 { \
215 this_vlib_main = vlib_mains[ii]; \
Damjan Marionce359db2017-03-16 16:15:38 +0100216 ASSERT (ii == 0 || \
217 this_vlib_main->parked_at_barrier == 1); \
Dave Barach80f54e22017-03-08 19:08:56 -0500218 if (this_vlib_main) \
219 vec_add1 (__vlib_mains, this_vlib_main); \
220 } \
221 \
222 for (ii = 0; ii < vec_len (__vlib_mains); ii++) \
223 { \
224 this_vlib_main = __vlib_mains[ii]; \
225 /* body uses this_vlib_main... */ \
226 (body); \
227 } \
228 vec_free (__vlib_mains); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229} while (0);
230
Pavel Kotucek1e765832016-09-23 08:54:14 +0200231#define foreach_sched_policy \
232 _(SCHED_OTHER, OTHER, "other") \
233 _(SCHED_BATCH, BATCH, "batch") \
234 _(SCHED_IDLE, IDLE, "idle") \
235 _(SCHED_FIFO, FIFO, "fifo") \
236 _(SCHED_RR, RR, "rr")
237
238typedef enum
239{
240#define _(v,f,s) SCHED_POLICY_##f = v,
241 foreach_sched_policy
242#undef _
243 SCHED_POLICY_N,
244} sched_policy_t;
245
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246typedef struct
247{
Damjan Marion878c6092017-01-04 13:19:27 +0100248 clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w,
249 unsigned lcore_id);
250 clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 lcore);
251} vlib_thread_callbacks_t;
252
253typedef struct
254{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 /* Link list of registrations, built by constructors */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 vlib_thread_registration_t *next;
257
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 /* Vector of registrations, w/ non-data-structure clones at the top */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400259 vlib_thread_registration_t **registrations;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
Dave Barach9b8ffd92016-07-08 08:13:45 -0400261 uword *thread_registrations_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 vlib_worker_thread_t *worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Dave Barach9b8ffd92016-07-08 08:13:45 -0400265 /*
266 * Launch all threads as pthreads,
267 * not eal_rte_launch (strict affinity) threads
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 */
269 int use_pthreads;
270
271 /* Number of vlib_main / vnet_main clones */
272 u32 n_vlib_mains;
273
274 /* Number of thread stacks to create */
275 u32 n_thread_stacks;
276
277 /* Number of pthreads */
278 u32 n_pthreads;
279
Damjan Marion878c6092017-01-04 13:19:27 +0100280 /* Number of threads */
281 u32 n_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
283 /* Number of cores to skip, must match the core mask */
284 u32 skip_cores;
285
286 /* Thread prefix name */
287 u8 *thread_prefix;
288
289 /* main thread lcore */
290 u8 main_lcore;
291
292 /* Bitmap of available CPU cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400293 uword *cpu_core_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
295 /* Bitmap of available CPU sockets (NUMA nodes) */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400296 uword *cpu_socket_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100298 /* Worker handoff queues */
299 vlib_frame_queue_main_t *frame_queue_mains;
Damjan Marion0f8ecf02016-06-27 08:30:30 +0200300
301 /* worker thread initialization barrier */
302 volatile u32 worker_thread_release;
303
Pavel Kotucek1e765832016-09-23 08:54:14 +0200304 /* scheduling policy */
305 u32 sched_policy;
306
307 /* scheduling policy priority */
308 u32 sched_priority;
309
Damjan Marion878c6092017-01-04 13:19:27 +0100310 /* callbacks */
311 vlib_thread_callbacks_t cb;
312 int extern_thread_mgmt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313} vlib_thread_main_t;
314
Damjan Marion6a7acc22016-12-19 16:28:36 +0100315extern vlib_thread_main_t vlib_thread_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Damjan Marionce359db2017-03-16 16:15:38 +0100317#include <vlib/global_funcs.h>
318
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319#define VLIB_REGISTER_THREAD(x,...) \
320 __VA_ARGS__ vlib_thread_registration_t x; \
321static void __vlib_add_thread_registration_##x (void) \
322 __attribute__((__constructor__)) ; \
323static void __vlib_add_thread_registration_##x (void) \
324{ \
325 vlib_thread_main_t * tm = &vlib_thread_main; \
326 x.next = tm->next; \
327 tm->next = &x; \
328} \
Dave Barach9b8ffd92016-07-08 08:13:45 -0400329__VA_ARGS__ vlib_thread_registration_t x
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
Damjan Marion64034362016-11-07 22:19:55 +0100331always_inline u32
332vlib_num_workers ()
333{
334 return vlib_thread_main.n_vlib_mains - 1;
335}
336
337always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200338vlib_get_worker_thread_index (u32 worker_index)
Damjan Marion64034362016-11-07 22:19:55 +0100339{
340 return worker_index + 1;
341}
342
Damjan Marion3a4ed392016-11-08 13:20:42 +0100343always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200344vlib_get_worker_index (u32 thread_index)
Damjan Marion3a4ed392016-11-08 13:20:42 +0100345{
Damjan Marion586afd72017-04-05 19:18:20 +0200346 return thread_index - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100347}
348
349always_inline u32
350vlib_get_current_worker_index ()
351{
Damjan Marion586afd72017-04-05 19:18:20 +0200352 return vlib_get_thread_index () - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100353}
354
Damjan Marionce359db2017-03-16 16:15:38 +0100355static inline void
356vlib_worker_thread_barrier_check (void)
357{
358 if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier))
359 {
360 vlib_main_t *vm;
361 clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, 1);
362 if (CLIB_DEBUG > 0)
363 {
364 vm = vlib_get_main ();
365 vm->parked_at_barrier = 1;
366 }
367 while (*vlib_worker_threads->wait_at_barrier)
368 ;
369 if (CLIB_DEBUG > 0)
370 vm->parked_at_barrier = 0;
371 clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, -1);
372 }
373}
374
Damjan Marion64034362016-11-07 22:19:55 +0100375always_inline vlib_main_t *
376vlib_get_worker_vlib_main (u32 worker_index)
377{
378 vlib_main_t *vm;
379 vlib_thread_main_t *tm = &vlib_thread_main;
380 ASSERT (worker_index < tm->n_vlib_mains - 1);
381 vm = vlib_mains[worker_index + 1];
382 ASSERT (vm);
383 return vm;
384}
385
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100386static inline void
387vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf)
388{
389 CLIB_MEMORY_BARRIER ();
390 hf->valid = 1;
391}
392
393static inline vlib_frame_queue_elt_t *
394vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index)
395{
396 vlib_frame_queue_t *fq;
397 vlib_frame_queue_elt_t *elt;
398 vlib_thread_main_t *tm = &vlib_thread_main;
399 vlib_frame_queue_main_t *fqm =
400 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
401 u64 new_tail;
402
403 fq = fqm->vlib_frame_queues[index];
404 ASSERT (fq);
405
406 new_tail = __sync_add_and_fetch (&fq->tail, 1);
407
408 /* Wait until a ring slot is available */
409 while (new_tail >= fq->head_hint + fq->nelts)
410 vlib_worker_thread_barrier_check ();
411
412 elt = fq->elts + (new_tail & (fq->nelts - 1));
413
414 /* this would be very bad... */
415 while (elt->valid)
416 ;
417
418 elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME;
419 elt->last_n_vectors = elt->n_vectors = 0;
420
421 return elt;
422}
423
424static inline vlib_frame_queue_t *
425is_vlib_frame_queue_congested (u32 frame_queue_index,
426 u32 index,
427 u32 queue_hi_thresh,
428 vlib_frame_queue_t **
429 handoff_queue_by_worker_index)
430{
431 vlib_frame_queue_t *fq;
432 vlib_thread_main_t *tm = &vlib_thread_main;
433 vlib_frame_queue_main_t *fqm =
434 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
435
436 fq = handoff_queue_by_worker_index[index];
437 if (fq != (vlib_frame_queue_t *) (~0))
438 return fq;
439
440 fq = fqm->vlib_frame_queues[index];
441 ASSERT (fq);
442
443 if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh)))
444 {
445 /* a valid entry in the array will indicate the queue has reached
446 * the specified threshold and is congested
447 */
448 handoff_queue_by_worker_index[index] = fq;
449 fq->enqueue_full_events++;
450 return fq;
451 }
452
453 return NULL;
454}
455
456static inline vlib_frame_queue_elt_t *
457vlib_get_worker_handoff_queue_elt (u32 frame_queue_index,
458 u32 vlib_worker_index,
459 vlib_frame_queue_elt_t **
460 handoff_queue_elt_by_worker_index)
461{
462 vlib_frame_queue_elt_t *elt;
463
464 if (handoff_queue_elt_by_worker_index[vlib_worker_index])
465 return handoff_queue_elt_by_worker_index[vlib_worker_index];
466
467 elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index);
468
469 handoff_queue_elt_by_worker_index[vlib_worker_index] = elt;
470
471 return elt;
472}
473
Damjan Marion586afd72017-04-05 19:18:20 +0200474u8 *vlib_thread_stack_init (uword thread_index);
475
Damjan Marion878c6092017-01-04 13:19:27 +0100476int vlib_thread_cb_register (struct vlib_main_t *vm,
477 vlib_thread_callbacks_t * cb);
478
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479#endif /* included_vlib_threads_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400480
481/*
482 * fd.io coding-style-patch-verification: ON
483 *
484 * Local Variables:
485 * eval: (c-set-style "gnu")
486 * End:
487 */