FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
threads.h
Go to the documentation of this file.
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>
19 #include <vppinfra/callback.h>
20 #include <linux/sched.h>
21 
22 void vlib_set_thread_name (char *name);
23 
24 /* arg is actually a vlib__thread_t * */
25 typedef void (vlib_thread_function_t) (void *arg);
26 
28 {
29  /* constructor generated list of thread registrations */
31 
32  /* config parameters */
33  char *name;
34  char *short_name;
41 
42  /* All threads of this type run on pthreads */
47 
48 /*
49  * Frames have their cpu / vlib_main_t index in the low-order N bits
50  * Make VLIB_MAX_CPUS a power-of-two, please...
51  */
52 
53 #ifndef VLIB_MAX_CPUS
54 #define VLIB_MAX_CPUS 256
55 #endif
56 
57 #if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS
58 #error Please increase number of per-cpu mheaps
59 #endif
60 
61 #define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */
62 #define VLIB_OFFSET_MASK (~VLIB_CPU_MASK)
63 
64 #define VLIB_LOG2_THREAD_STACK_SIZE (21)
65 #define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE)
66 
67 typedef enum
68 {
71 
72 typedef struct
73 {
74  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
75  volatile u32 valid;
79 
80  /* 256 * 4 = 1024 bytes, even mult of cache line size */
81  u32 buffer_index[VLIB_FRAME_SIZE];
82 }
84 
85 typedef struct
86 {
87  /* First cache line */
88  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
89  volatile u32 *wait_at_barrier;
91 
92  /* Second Cache Line */
93  CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
94  void *thread_mheap;
96  void (*thread_function) (void *);
105  const char *barrier_caller;
106  const char *barrier_context;
108 
109  long lwp;
110  int cpu_id;
111  int core_id;
112  int numa_id;
113  pthread_t thread_id;
115 
117 
118 typedef struct
119 {
120  /* enqueue side */
121  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
122  volatile u64 tail;
124 
125  /* dequeue side */
126  CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
127  volatile u64 head;
130 
131  /* dequeue hint to enqueue side */
132  CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
133  volatile u64 head_hint;
134 
135  /* read-only, constant, shared */
136  CLIB_CACHE_LINE_ALIGN_MARK (cacheline3);
139 }
141 
142 typedef struct
143 {
147 
148 typedef struct
149 {
153 
156 
157  /* for frame queue tracing */
161 
162 typedef struct
163 {
168 
169 /* Called early, in thread 0's context */
171 
172 int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
173  u32 frame_queue_index, vlib_frame_t * frame,
175 
177 
179  void (*thread_function) (void *));
180 
183 
184 /* Check for a barrier sync request every 30ms */
185 #define BARRIER_SYNC_DELAY (0.030000)
186 
187 #if CLIB_DEBUG > 0
188 /* long barrier timeout, for gdb... */
189 #define BARRIER_SYNC_TIMEOUT (600.1)
190 #else
191 #define BARRIER_SYNC_TIMEOUT (1.0)
192 #endif
193 
194 #define vlib_worker_thread_barrier_sync(X) {vlib_worker_thread_barrier_sync_int(X, __FUNCTION__);}
195 
197  const char *func_name);
202 /**
203  * Wait until each of the workers has been once around the track
204  */
205 void vlib_worker_wait_one_loop (void);
206 
209 {
210  return __os_thread_index;
211 }
212 
213 always_inline void
215 {
216  if (CLIB_DEBUG > 0)
217  {
218  if (vlib_get_thread_index ())
219  fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__);
220  }
221 }
222 
223 always_inline int
224 __foreach_vlib_main_helper (vlib_main_t *ii, vlib_main_t **p)
225 {
226  vlib_main_t *vm;
227  u32 index = ii - (vlib_main_t *) 0;
228 
230  return 0;
231 
233  ASSERT (index == 0 || vm->parked_at_barrier == 1);
234  return 1;
235 }
236 
237 #define foreach_vlib_main() \
238  for (vlib_main_t *ii = 0, *this_vlib_main; \
239  __foreach_vlib_main_helper (ii, &this_vlib_main); ii++) \
240  if (this_vlib_main)
241 
242 #define foreach_sched_policy \
243  _(SCHED_OTHER, OTHER, "other") \
244  _(SCHED_BATCH, BATCH, "batch") \
245  _(SCHED_IDLE, IDLE, "idle") \
246  _(SCHED_FIFO, FIFO, "fifo") \
247  _(SCHED_RR, RR, "rr")
248 
249 typedef enum
250 {
251 #define _(v,f,s) SCHED_POLICY_##f = v,
253 #undef _
256 
257 typedef struct
258 {
259  clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w,
260  unsigned cpu_id);
261  clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu);
263 
264 typedef struct
265 {
266  /* Link list of registrations, built by constructors */
268 
269  /* Vector of registrations, w/ non-data-structure clones at the top */
271 
273 
275 
276  /*
277  * Launch all threads as pthreads,
278  * not eal_rte_launch (strict affinity) threads
279  */
281 
282  /* Number of vlib_main / vnet_main clones */
284 
285  /* Number of thread stacks to create */
287 
288  /* Number of pthreads */
290 
291  /* Number of threads */
293 
294  /* Number of cores to skip, must match the core mask */
296 
297  /* Thread prefix name */
299 
300  /* main thread lcore */
302 
303  /* Bitmap of available CPU cores */
305 
306  /* Bitmap of available CPU sockets (NUMA nodes) */
308 
309  /* Worker handoff queues */
311 
312  /* worker thread initialization barrier */
314 
315  /* scheduling policy */
317 
318  /* scheduling policy priority */
320 
321  /* callbacks */
324 
325  /* NUMA-bound heap size */
327 
329 
331 
332 #include <vlib/global_funcs.h>
333 
334 #define VLIB_REGISTER_THREAD(x,...) \
335  __VA_ARGS__ vlib_thread_registration_t x; \
336 static void __vlib_add_thread_registration_##x (void) \
337  __attribute__((__constructor__)) ; \
338 static void __vlib_add_thread_registration_##x (void) \
339 { \
340  vlib_thread_main_t * tm = &vlib_thread_main; \
341  x.next = tm->next; \
342  tm->next = &x; \
343 } \
344 static void __vlib_rm_thread_registration_##x (void) \
345  __attribute__((__destructor__)) ; \
346 static void __vlib_rm_thread_registration_##x (void) \
347 { \
348  vlib_thread_main_t * tm = &vlib_thread_main; \
349  VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \
350 } \
351 __VA_ARGS__ vlib_thread_registration_t x
352 
355 {
356  return vlib_thread_main.n_vlib_mains - 1;
357 }
358 
361 {
362  return worker_index + 1;
363 }
364 
367 {
368  return thread_index - 1;
369 }
370 
373 {
374  return vlib_get_thread_index () - 1;
375 }
376 
377 static inline void
379 {
381  {
385  f64 t = vlib_time_now (vm);
386 
389  vm->clib_time.last_cpu_time, 0 /* enter */ );
390 
392  {
394  /* *INDENT-OFF* */
395  ELOG_TYPE_DECLARE (e) = {
396  .format = "barrier-wait-thread-%d",
397  .format_args = "i4",
398  };
399  /* *INDENT-ON* */
400 
401  struct
402  {
404  } __clib_packed *ed;
405 
407  ed->thread_index = thread_index;
408  }
409 
410  if (CLIB_DEBUG > 0)
411  {
412  vm = vlib_get_main ();
413  vm->parked_at_barrier = 1;
414  }
417  ;
418 
419  /*
420  * Recompute the offset from thread-0 time.
421  * Note that vlib_time_now adds vm->time_offset, so
422  * clear it first. Save the resulting idea of "now", to
423  * see how well we're doing. See show_clock_command_fn(...)
424  */
425  {
426  f64 now;
427  vm->time_offset = 0.0;
428  now = vlib_time_now (vm);
431  }
432 
433  if (CLIB_DEBUG > 0)
434  vm->parked_at_barrier = 0;
436 
438  {
440  {
441  t = vlib_time_now (vm) - t;
443  /* *INDENT-OFF* */
444  ELOG_TYPE_DECLARE (e) = {
445  .format = "barrier-refork-thread-%d",
446  .format_args = "i4",
447  };
448  /* *INDENT-ON* */
449 
450  struct
451  {
453  } __clib_packed *ed;
454 
456  w->elog_track);
457  ed->thread_index = thread_index;
458  }
459 
462  -1);
464  ;
465  }
467  {
468  t = vlib_time_now (vm) - t;
470  /* *INDENT-OFF* */
471  ELOG_TYPE_DECLARE (e) = {
472  .format = "barrier-released-thread-%d: %dus",
473  .format_args = "i4i4",
474  };
475  /* *INDENT-ON* */
476 
477  struct
478  {
480  u32 duration;
481  } __clib_packed *ed;
482 
484  ed->thread_index = thread_index;
485  ed->duration = (int) (1000000.0 * t);
486  }
487 
490  vm->clib_time.last_cpu_time, 1 /* leave */ );
491  }
492 }
493 
496 {
497  vlib_main_t *vm;
499  ASSERT (worker_index < tm->n_vlib_mains - 1);
500  vm = vlib_get_main_by_index (worker_index + 1);
501  ASSERT (vm);
502  return vm;
503 }
504 
505 static inline u8
507 {
508  return (!vlib_num_workers ()
509  || ((vlib_get_thread_index () == 0
511 }
512 
513 static inline void
515 {
517  hf->valid = 1;
518 }
519 
520 static inline vlib_frame_queue_elt_t *
521 vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index)
522 {
523  vlib_frame_queue_t *fq;
527  vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
528  u64 new_tail;
529 
530  fq = fqm->vlib_frame_queues[index];
531  ASSERT (fq);
532 
533  new_tail = clib_atomic_add_fetch (&fq->tail, 1);
534 
535  /* Wait until a ring slot is available */
536  while (new_tail >= fq->head_hint + fq->nelts)
538 
539  elt = fq->elts + (new_tail & (fq->nelts - 1));
540 
541  /* this would be very bad... */
542  while (elt->valid)
543  ;
544 
546  elt->last_n_vectors = elt->n_vectors = 0;
547 
548  return elt;
549 }
550 
551 static inline vlib_frame_queue_t *
553  u32 index,
554  u32 queue_hi_thresh,
556  handoff_queue_by_worker_index)
557 {
558  vlib_frame_queue_t *fq;
561  vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
562 
563  fq = handoff_queue_by_worker_index[index];
564  if (fq != (vlib_frame_queue_t *) (~0))
565  return fq;
566 
567  fq = fqm->vlib_frame_queues[index];
568  ASSERT (fq);
569 
570  if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh)))
571  {
572  /* a valid entry in the array will indicate the queue has reached
573  * the specified threshold and is congested
574  */
575  handoff_queue_by_worker_index[index] = fq;
576  fq->enqueue_full_events++;
577  return fq;
578  }
579 
580  return NULL;
581 }
582 
583 static inline vlib_frame_queue_elt_t *
585  u32 vlib_worker_index,
587  handoff_queue_elt_by_worker_index)
588 {
590 
591  if (handoff_queue_elt_by_worker_index[vlib_worker_index])
592  return handoff_queue_elt_by_worker_index[vlib_worker_index];
593 
594  elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index);
595 
596  handoff_queue_elt_by_worker_index[vlib_worker_index] = elt;
597 
598  return elt;
599 }
600 
604 extern void *rpc_call_main_thread_cb_fn;
605 
606 void
608  args);
609 void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size);
612 
613 #endif /* included_vlib_threads_h */
614 
615 /*
616  * fd.io coding-style-patch-verification: ON
617  *
618  * Local Variables:
619  * eval: (c-set-style "gnu")
620  * End:
621  */
vlib_thread_function_t
void() vlib_thread_function_t(void *arg)
Definition: threads.h:25
vlib_worker_thread_t::barrier_caller
const char * barrier_caller
Definition: threads.h:105
vlib_thread_main_t::next
vlib_thread_registration_t * next
Definition: threads.h:267
vlib_get_thread_core_numa
void vlib_get_thread_core_numa(vlib_worker_thread_t *w, unsigned cpu_id)
Definition: threads.c:439
vlib_num_workers
static u32 vlib_num_workers()
Definition: threads.h:354
vlib_frame_queue_enqueue
int vlib_frame_queue_enqueue(vlib_main_t *vm, u32 node_runtime_index, u32 frame_queue_index, vlib_frame_t *frame, vlib_frame_queue_msg_type_t type)
vlib_worker_threads
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:35
thread_index
u32 thread_index
Definition: nat44_ei_hairpinning.c:492
vlib_global_main_t
Definition: main.h:274
frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: nat44_ei.c:3048
vlib_thread_main_t::cpu_core_bitmap
uword * cpu_core_bitmap
Definition: threads.h:304
vlib_main_t::time_offset
f64 time_offset
Definition: main.h:108
vlib_main_t::clib_time
clib_time_t clib_time
Definition: main.h:106
vlib_frame_queue_t::tail
volatile u64 tail
Definition: threads.h:122
vlib_get_worker_thread_index
static u32 vlib_get_worker_thread_index(u32 worker_index)
Definition: threads.h:360
vlib_frame_queue_t::vector_threshold
u64 vector_threshold
Definition: threads.h:129
vlib_set_thread_name
void vlib_set_thread_name(char *name)
Definition: threads.c:145
CLIB_CACHE_LINE_ALIGN_MARK
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
name
string name[64]
Definition: fib.api:25
vlib_worker_thread_barrier_check
static void vlib_worker_thread_barrier_check(void)
Definition: threads.h:378
VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME
@ VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME
Definition: threads.h:69
clib_atomic_add_fetch
#define clib_atomic_add_fetch(a, b)
Definition: atomics.h:30
vlib_frame_queue_per_thread_data_t
Definition: threads.h:142
vlib_get_worker_index
static u32 vlib_get_worker_index(u32 thread_index)
Definition: threads.h:366
vlib_get_worker_vlib_main
static vlib_main_t * vlib_get_worker_vlib_main(u32 worker_index)
Definition: threads.h:495
vlib_worker_thread_t::node_reforks_required
volatile u32 * node_reforks_required
Definition: threads.h:107
vlib_thread_callbacks_t
Definition: threads.h:257
VLIB_FRAME_SIZE
#define VLIB_FRAME_SIZE
Definition: node.h:368
vlib_thread_main_t::n_pthreads
u32 n_pthreads
Definition: threads.h:289
is_vlib_frame_queue_congested
static vlib_frame_queue_t * is_vlib_frame_queue_congested(u32 frame_queue_index, u32 index, u32 queue_hi_thresh, vlib_frame_queue_t **handoff_queue_by_worker_index)
Definition: threads.h:552
vlib_worker_thread_initial_barrier_sync_and_release
void vlib_worker_thread_initial_barrier_sync_and_release(vlib_main_t *vm)
Definition: threads.c:1253
vlib_thread_main_t::cb
vlib_thread_callbacks_t cb
Definition: threads.h:322
thread
pthread_t thread[MAX_CONNS]
Definition: main.c:142
vlib_frame_queue_msg_type_t
vlib_frame_queue_msg_type_t
Definition: threads.h:67
vlib_get_thread_main_not_inline
vlib_thread_main_t * vlib_get_thread_main_not_inline(void)
Definition: threads.c:1706
u16
unsigned short u16
Definition: types.h:57
vlib_main_t::barrier_perf_callbacks
void(**volatile barrier_perf_callbacks)(struct vlib_main_t *, u64 t, int leave)
Definition: main.h:252
vlib_main_t::parked_at_barrier
volatile int parked_at_barrier
Definition: main.h:231
vlib_smp_unsafe_warning
static void vlib_smp_unsafe_warning(void)
Definition: threads.h:214
vlib_worker_thread_init
void vlib_worker_thread_init(vlib_worker_thread_t *w)
Definition: threads.c:382
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
node_index
node node_index
Definition: interface_output.c:420
vlib_frame_queue_main_t::frame_queue_nelts
u32 frame_queue_nelts
Definition: threads.h:151
vlib_frame_queue_t::enqueue_full_events
u32 enqueue_full_events
Definition: threads.h:123
vlib_frame_queue_t::trace
u64 trace
Definition: threads.h:128
vlib_thread_registration_::next
struct vlib_thread_registration_ * next
Definition: threads.h:30
vlib_thread_main_t::main_lcore
u32 main_lcore
Definition: threads.h:301
vlib_thread_main_t::cpu_socket_bitmap
uword * cpu_socket_bitmap
Definition: threads.h:307
vlib_process_signal_event_mt_helper
void vlib_process_signal_event_mt_helper(vlib_process_signal_event_mt_args_t *args)
Definition: threads.c:1626
vlib_rpc_call_main_thread
void vlib_rpc_call_main_thread(void *function, u8 *args, u32 size)
Definition: threads.c:1637
vlib_thread_registration_::frame_queue_nelts
u32 frame_queue_nelts
Definition: threads.h:40
vlib_frame_t
Definition: node.h:372
global_funcs.h
vlib_thread_registration_::count
u32 count
Definition: threads.h:38
vlib_thread_stack_init
u8 * vlib_thread_stack_init(uword thread_index)
Definition: main.c:678
vlib_thread_cb_register
int vlib_thread_cb_register(struct vlib_main_t *vm, vlib_thread_callbacks_t *cb)
Definition: threads.c:1613
vlib_frame_queue_main_t::frame_queue_traces
frame_queue_trace_t * frame_queue_traces
Definition: threads.h:158
vlib_get_global_main
static vlib_global_main_t * vlib_get_global_main(void)
Definition: global_funcs.h:50
callback.h
Callback multiplex scheme For a fully worked-out example, see .../src/vlib/main.[ch] and ....
i64
signed long i64
Definition: types.h:78
vlib_thread_main_t::worker_thread_release
volatile u32 worker_thread_release
Definition: threads.h:313
vlib_get_worker_handoff_queue_elt
static vlib_frame_queue_elt_t * vlib_get_worker_handoff_queue_elt(u32 frame_queue_index, u32 vlib_worker_index, vlib_frame_queue_elt_t **handoff_queue_elt_by_worker_index)
Definition: threads.h:584
vlib_worker_thread_t::core_id
int core_id
Definition: threads.h:111
vlib_thread_registration_::short_name
char * short_name
Definition: threads.h:34
vlib_frame_queue_elt_t
Definition: threads.h:72
vlib_worker_thread_t::wait_at_barrier
volatile u32 * wait_at_barrier
Definition: threads.h:89
vlib_thread_main_t::n_vlib_mains
u32 n_vlib_mains
Definition: threads.h:283
vlib_worker_thread_t::thread_id
pthread_t thread_id
Definition: threads.h:113
vlib_frame_queue_per_thread_data_t::handoff_queue_elt_by_thread_index
vlib_frame_queue_elt_t ** handoff_queue_elt_by_thread_index
Definition: threads.h:144
vlib_thread_main_t::worker_threads
vlib_worker_thread_t * worker_threads
Definition: threads.h:274
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
ELOG_TYPE_DECLARE
#define ELOG_TYPE_DECLARE(f)
Definition: elog.h:442
vlib_thread_main_t::sched_policy
u32 sched_policy
Definition: threads.h:316
vlib_frame_queue_elt_t::last_n_vectors
u32 last_n_vectors
Definition: threads.h:78
vlib_frame_queue_t::head_hint
volatile u64 head_hint
Definition: threads.h:133
vlib_thread_registration_::fixed_count
int fixed_count
Definition: threads.h:37
vlib_thread_main_t::numa_heap_size
uword numa_heap_size
Definition: threads.h:326
ELOG_TRACK_DATA
#define ELOG_TRACK_DATA(em, f, track)
Definition: elog.h:478
vec_elt_at_index
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Definition: vec_bootstrap.h:203
vlib_get_current_worker_index
static u32 vlib_get_current_worker_index()
Definition: threads.h:372
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
vlib_get_thread_index
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:208
vlib_frame_queue_elt_t::n_vectors
u32 n_vectors
Definition: threads.h:77
vlib_global_main
vlib_global_main_t vlib_global_main
Definition: main.c:1786
static_always_inline
#define static_always_inline
Definition: clib.h:112
uword
u64 uword
Definition: types.h:112
vlib_get_frame_queue_elt
static vlib_frame_queue_elt_t * vlib_get_frame_queue_elt(u32 frame_queue_index, u32 index)
Definition: threads.h:521
vlib_worker_thread_t::cpu_id
int cpu_id
Definition: threads.h:110
vlib_worker_thread_t::thread_mheap
void * thread_mheap
Definition: threads.h:94
vlib_thread_is_main_w_barrier
static u8 vlib_thread_is_main_w_barrier(void)
Definition: threads.h:506
vlib_thread_main_t::thread_registrations_by_name
uword * thread_registrations_by_name
Definition: threads.h:272
vlib_main_t::thread_index
u32 thread_index
Definition: main.h:213
vlib_thread_registration_::first_index
u32 first_index
Definition: threads.h:44
vlib_thread_registration_::coremask
uword * coremask
Definition: threads.h:45
vlib_frame_queue_main_t::vlib_frame_queues
vlib_frame_queue_t ** vlib_frame_queues
Definition: threads.h:154
vlib_worker_thread_t::barrier_context
const char * barrier_context
Definition: threads.h:106
f64
double f64
Definition: types.h:142
vlib_worker_thread_t::thread_function_arg
void * thread_function_arg
Definition: threads.h:97
vlib_thread_main_t::n_thread_stacks
u32 n_thread_stacks
Definition: threads.h:286
vlib_worker_thread_t::lwp
long lwp
Definition: threads.h:109
vlib_worker_thread_t::numa_id
int numa_id
Definition: threads.h:112
vlib_process_signal_event_mt_args_t::data
uword data
Definition: threads.h:166
vlib_process_signal_event_mt_args_t::node_index
uword node_index
Definition: threads.h:164
vlib_thread_main_t::sched_priority
u32 sched_priority
Definition: threads.h:319
CLIB_MEMORY_BARRIER
#define CLIB_MEMORY_BARRIER()
Definition: clib.h:137
SCHED_POLICY_N
@ SCHED_POLICY_N
Definition: threads.h:254
sched_policy_t
sched_policy_t
Definition: threads.h:249
vlib_global_main_t::elog_main
elog_main_t elog_main
Definition: main.h:300
vlib_frame_queue_per_thread_data_t::congested_handoff_queue_by_thread_index
vlib_frame_queue_t ** congested_handoff_queue_by_thread_index
Definition: threads.h:145
vlib_worker_thread_node_runtime_update
void vlib_worker_thread_node_runtime_update(void)
Definition: threads.c:1088
cpu_id
u32 cpu_id
Definition: vpe.api:222
clib_atomic_fetch_add
#define clib_atomic_fetch_add(a, b)
Definition: atomics.h:23
vlib_worker_thread_barrier_release
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1386
vlib_worker_thread_t::registration
vlib_thread_registration_t * registration
Definition: threads.h:101
size
u32 size
Definition: vhost_user.h:125
index
u32 index
Definition: flow_types.api:221
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
vlib_thread_main_t::registrations
vlib_thread_registration_t ** registrations
Definition: threads.h:270
vlib_thread_registration_::mheap_size
uword mheap_size
Definition: threads.h:36
clib_call_callbacks
#define clib_call_callbacks(h,...)
call the specified callback set
Definition: callback.h:67
elog_track_t
Definition: elog.h:113
u64
unsigned long u64
Definition: types.h:89
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
vlib_thread_main_t::n_threads
u32 n_threads
Definition: threads.h:292
rpc_call_main_thread_cb_fn
void * rpc_call_main_thread_cb_fn
Definition: threads.c:1634
vlib_thread_registration_t
struct vlib_thread_registration_ vlib_thread_registration_t
u32
unsigned int u32
Definition: types.h:88
vlib_worker_thread_t::recursion_level
i64 recursion_level
Definition: threads.h:98
vlib_thread_main_t
Definition: threads.h:264
vlib_thread_init
clib_error_t * vlib_thread_init(vlib_main_t *vm)
Definition: threads.c:173
main.h
clib_time_t::last_cpu_time
u64 last_cpu_time
Definition: time.h:51
vlib_worker_thread_t
Definition: threads.h:85
vlib_worker_thread_t::thread_stack
u8 * thread_stack
Definition: threads.h:95
vlib_get_main_by_index
static vlib_main_t * vlib_get_main_by_index(u32 thread_index)
Definition: global_funcs.h:29
vlib_worker_thread_t::barrier_elog_enabled
u8 barrier_elog_enabled
Definition: threads.h:104
vlib_worker_thread_node_refork
void vlib_worker_thread_node_refork(void)
Definition: threads.c:895
vlib_frame_queue_elt_t::msg_type
u32 msg_type
Definition: threads.h:76
vlib_worker_thread_t::elog_track
elog_track_t elog_track
Definition: threads.h:99
vlib_thread_registration_::no_data_structure_clone
int no_data_structure_clone
Definition: threads.h:39
vlib_worker_thread_barrier_held
u8 vlib_worker_thread_barrier_held(void)
Return true if the wroker thread barrier is held.
Definition: threads.c:1281
fformat
__clib_export word fformat(FILE *f, char *fmt,...)
Definition: format.c:466
elt
app_rx_mq_elt_t * elt
Definition: application.c:488
vlib_thread_registration_::name
char * name
Definition: threads.h:33
foreach_sched_policy
#define foreach_sched_policy
Definition: threads.h:242
now
f64 now
Definition: nat44_ei_out2in.c:710
vlib_thread_main_t::extern_thread_mgmt
int extern_thread_mgmt
Definition: threads.h:323
vlib_create_worker_threads
void vlib_create_worker_threads(vlib_main_t *vm, int n, void(*thread_function)(void *))
vlib_main_t
Definition: main.h:102
vlib_frame_queue_t::nelts
u32 nelts
Definition: threads.h:138
vlib_worker_wait_one_loop
void vlib_worker_wait_one_loop(void)
Wait until each of the workers has been once around the track.
Definition: threads.c:1499
vlib_frame_queue_main_t::queue_hi_thresh
u32 queue_hi_thresh
Definition: threads.h:152
vlib_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
vlib_frame_queue_t::elts
vlib_frame_queue_elt_t * elts
Definition: threads.h:137
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
vlib_worker_thread_t::workers_at_barrier
volatile u32 * workers_at_barrier
Definition: threads.h:90
frame_queue_trace_t
Definition: node.h:763
vlib_worker_thread_t::barrier_sync_count
u64 barrier_sync_count
Definition: threads.h:103
vlib_worker_thread_t::name
u8 * name
Definition: threads.h:102
vlib_thread_main
vlib_thread_main_t vlib_thread_main
Definition: threads.c:36
vlib_time_now
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:325
vlib_frame_queue_main_t::per_thread_data
vlib_frame_queue_per_thread_data_t * per_thread_data
Definition: threads.h:155
vlib_worker_thread_t::instance_id
u32 instance_id
Definition: threads.h:100
vlib_frame_queue_main_t::frame_queue_histogram
frame_queue_nelt_counter_t * frame_queue_histogram
Definition: threads.h:159
vlib_frame_queue_t
Definition: threads.h:118
vlib_put_frame_queue_elt
static void vlib_put_frame_queue_elt(vlib_frame_queue_elt_t *hf)
Definition: threads.h:514
vlib_thread_registration_
Definition: threads.h:27
vlib_thread_main_t::skip_cores
u32 skip_cores
Definition: threads.h:295
vlib_thread_main_t::use_pthreads
int use_pthreads
Definition: threads.h:280
vlib_frame_queue_main_init
u32 vlib_frame_queue_main_init(u32 node_index, u32 frame_queue_nelts)
Definition: threads.c:1572
vlib_global_main_t::vlib_mains
vlib_main_t ** vlib_mains
Definition: main.h:279
vlib_process_signal_event_mt_args_t
Definition: threads.h:162
vlib_thread_main_t::frame_queue_mains
vlib_frame_queue_main_t * frame_queue_mains
Definition: threads.h:310
vlib_frame_queue_elt_t::valid
volatile u32 valid
Definition: threads.h:75
vlib_frame_queue_main_t
Definition: threads.h:148
vlib_process_signal_event_mt_args_t::type_opaque
uword type_opaque
Definition: threads.h:165
vlib_thread_registration_::use_pthreads
int use_pthreads
Definition: threads.h:43
type
vl_api_fib_path_type_t type
Definition: fib_types.api:123
vlib_thread_main_t::thread_prefix
u8 * thread_prefix
Definition: threads.h:298
vlib_main_t::time_last_barrier_release
f64 time_last_barrier_release
Definition: main.h:109
vlib_frame_queue_main_t::node_index
u32 node_index
Definition: threads.h:150
vlib_worker_thread_barrier_sync_int
void vlib_worker_thread_barrier_sync_int(vlib_main_t *vm, const char *func_name)
Definition: threads.c:1290
vlib_frame_queue_t::head
volatile u64 head
Definition: threads.h:127
frame_queue_nelt_counter_t
Definition: node.h:776