FD.io VPP  v21.01.1
Vector Packet Processing
threads.c
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 #define _GNU_SOURCE
16 
17 #include <signal.h>
18 #include <math.h>
19 #include <vppinfra/format.h>
20 #include <vppinfra/time_range.h>
21 #include <vppinfra/linux/sysfs.h>
22 #include <vlib/vlib.h>
23 
24 #include <vlib/threads.h>
25 
26 #include <vlib/stat_weak_inlines.h>
27 
28 u32
29 vl (void *p)
30 {
31  return vec_len (p);
32 }
33 
36 
37 /*
38  * Barrier tracing can be enabled on a normal build to collect information
39  * on barrier use, including timings and call stacks. Deliberately not
40  * keyed off CLIB_DEBUG, because that can add significant overhead which
41  * imapacts observed timings.
42  */
43 
44 static inline void
45 barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
46 {
47  if (!vlib_worker_threads->barrier_elog_enabled)
48  return;
49 
50  /* *INDENT-OFF* */
51  ELOG_TYPE_DECLARE (e) =
52  {
53  .format = "bar-trace-%s-#%d",
54  .format_args = "T4i4",
55  };
56  /* *INDENT-ON* */
57  struct
58  {
59  u32 caller, count, t_entry, t_open, t_closed;
60  } *ed = 0;
61 
63  ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
64  ed->caller = elog_string (&vlib_global_main.elog_main,
65  (char *) vlib_worker_threads[0].barrier_caller);
66  ed->t_entry = (int) (1000000.0 * t_entry);
67  ed->t_open = (int) (1000000.0 * t_open);
68  ed->t_closed = (int) (1000000.0 * t_closed);
69 }
70 
71 static inline void
73 {
74  if (!vlib_worker_threads->barrier_elog_enabled)
75  return;
76 
77  /* *INDENT-OFF* */
78  ELOG_TYPE_DECLARE (e) =
79  {
80  .format = "bar-syncrec-%s-#%d",
81  .format_args = "T4i4",
82  };
83  /* *INDENT-ON* */
84  struct
85  {
86  u32 caller, depth;
87  } *ed = 0;
88 
90  ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
91  ed->caller = elog_string (&vlib_global_main.elog_main,
92  (char *) vlib_worker_threads[0].barrier_caller);
93 }
94 
95 static inline void
97 {
98  if (!vlib_worker_threads->barrier_elog_enabled)
99  return;
100 
101  /* *INDENT-OFF* */
102  ELOG_TYPE_DECLARE (e) =
103  {
104  .format = "bar-relrrec-#%d",
105  .format_args = "i4",
106  };
107  /* *INDENT-ON* */
108  struct
109  {
110  u32 depth;
111  } *ed = 0;
112 
114  ed->depth = (int) vlib_worker_threads[0].recursion_level;
115 }
116 
117 static inline void
118 barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
119 {
120  if (!vlib_worker_threads->barrier_elog_enabled)
121  return;
122 
123  /* *INDENT-OFF* */
124  ELOG_TYPE_DECLARE (e) =
125  {
126  .format = "bar-rel-#%d-e%d-u%d-t%d",
127  .format_args = "i4i4i4i4",
128  };
129  /* *INDENT-ON* */
130  struct
131  {
132  u32 count, t_entry, t_update_main, t_closed_total;
133  } *ed = 0;
134 
136  ed->t_entry = (int) (1000000.0 * t_entry);
137  ed->t_update_main = (int) (1000000.0 * t_update_main);
138  ed->t_closed_total = (int) (1000000.0 * t_closed_total);
139  ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
140 
141  /* Reset context for next trace */
142  vlib_worker_threads[0].barrier_context = NULL;
143 }
144 
145 uword
147 {
148  return vec_len (vlib_thread_stacks);
149 }
150 
151 void
153 {
154  int pthread_setname_np (pthread_t __target_thread, const char *__name);
155  int rv;
156  pthread_t thread = pthread_self ();
157 
158  if (thread)
159  {
160  rv = pthread_setname_np (thread, name);
161  if (rv)
162  clib_warning ("pthread_setname_np returned %d", rv);
163  }
164 }
165 
166 static int
167 sort_registrations_by_no_clone (void *a0, void *a1)
168 {
169  vlib_thread_registration_t **tr0 = a0;
170  vlib_thread_registration_t **tr1 = a1;
171 
172  return ((i32) ((*tr0)->no_data_structure_clone)
173  - ((i32) ((*tr1)->no_data_structure_clone)));
174 }
175 
176 static uword *
178 {
179  FILE *fp;
180  uword *r = 0;
181 
182  fp = fopen (filename, "r");
183 
184  if (fp != NULL)
185  {
186  u8 *buffer = 0;
187  vec_validate (buffer, 256 - 1);
188  if (fgets ((char *) buffer, 256, fp))
189  {
190  unformat_input_t in;
191  unformat_init_string (&in, (char *) buffer,
192  strlen ((char *) buffer));
193  if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
194  clib_warning ("unformat_bitmap_list failed");
195  unformat_free (&in);
196  }
197  vec_free (buffer);
198  fclose (fp);
199  }
200  return r;
201 }
202 
203 
204 /* Called early in the init sequence */
205 
206 clib_error_t *
208 {
212  u32 n_vlib_mains = 1;
213  u32 first_index = 1;
214  u32 i;
215  uword *avail_cpu;
216 
217  /* get bitmaps of active cpu cores and sockets */
218  tm->cpu_core_bitmap =
219  clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
220  tm->cpu_socket_bitmap =
221  clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
222 
223  avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
224 
225  /* skip cores */
226  for (i = 0; i < tm->skip_cores; i++)
227  {
228  uword c = clib_bitmap_first_set (avail_cpu);
229  if (c == ~0)
230  return clib_error_return (0, "no available cpus to skip");
231 
232  avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
233  }
234 
235  /* grab cpu for main thread */
236  if (tm->main_lcore == ~0)
237  {
238  /* if main-lcore is not set, we try to use lcore 1 */
239  if (clib_bitmap_get (avail_cpu, 1))
240  tm->main_lcore = 1;
241  else
242  tm->main_lcore = clib_bitmap_first_set (avail_cpu);
243  if (tm->main_lcore == (u8) ~ 0)
244  return clib_error_return (0, "no available cpus to be used for the"
245  " main thread");
246  }
247  else
248  {
249  if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
250  return clib_error_return (0, "cpu %u is not available to be used"
251  " for the main thread", tm->main_lcore);
252  }
253  avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
254 
255  /* assume that there is socket 0 only if there is no data from sysfs */
256  if (!tm->cpu_socket_bitmap)
257  tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
258 
259  /* pin main thread to main_lcore */
261  {
263  }
264  else
265  {
266  cpu_set_t cpuset;
267  CPU_ZERO (&cpuset);
268  CPU_SET (tm->main_lcore, &cpuset);
269  pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
270  }
271 
272  /* Set up thread 0 */
273  vec_validate_aligned (vlib_worker_threads, 0, CLIB_CACHE_LINE_BYTES);
274  _vec_len (vlib_worker_threads) = 1;
278  w->cpu_id = tm->main_lcore;
279  w->lwp = syscall (SYS_gettid);
280  w->thread_id = pthread_self ();
281  tm->n_vlib_mains = 1;
282 
284 
285  if (tm->sched_policy != ~0)
286  {
287  struct sched_param sched_param;
288  if (!sched_getparam (w->lwp, &sched_param))
289  {
290  if (tm->sched_priority != ~0)
291  sched_param.sched_priority = tm->sched_priority;
292  sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
293  }
294  }
295 
296  /* assign threads to cores and set n_vlib_mains */
297  tr = tm->next;
298 
299  while (tr)
300  {
301  vec_add1 (tm->registrations, tr);
302  tr = tr->next;
303  }
304 
306 
307  for (i = 0; i < vec_len (tm->registrations); i++)
308  {
309  int j;
310  tr = tm->registrations[i];
311  tr->first_index = first_index;
312  first_index += tr->count;
313  n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
314 
315  /* construct coremask */
316  if (tr->use_pthreads || !tr->count)
317  continue;
318 
319  if (tr->coremask)
320  {
321  uword c;
322  /* *INDENT-OFF* */
323  clib_bitmap_foreach (c, tr->coremask) {
324  if (clib_bitmap_get(avail_cpu, c) == 0)
325  return clib_error_return (0, "cpu %u is not available to be used"
326  " for the '%s' thread",c, tr->name);
327 
328  avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
329  }
330  /* *INDENT-ON* */
331  }
332  else
333  {
334  for (j = 0; j < tr->count; j++)
335  {
336  /* Do not use CPU 0 by default - leave it to the host and IRQs */
337  uword avail_c0 = clib_bitmap_get (avail_cpu, 0);
338  avail_cpu = clib_bitmap_set (avail_cpu, 0, 0);
339 
340  uword c = clib_bitmap_first_set (avail_cpu);
341  /* Use CPU 0 as a last resort */
342  if (c == ~0 && avail_c0)
343  {
344  c = 0;
345  avail_c0 = 0;
346  }
347 
348  if (c == ~0)
349  return clib_error_return (0,
350  "no available cpus to be used for"
351  " the '%s' thread", tr->name);
352 
353  avail_cpu = clib_bitmap_set (avail_cpu, 0, avail_c0);
354  avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
355  tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
356  }
357  }
358  }
359 
360  clib_bitmap_free (avail_cpu);
361 
362  tm->n_vlib_mains = n_vlib_mains;
363 
364  /*
365  * Allocate the remaining worker threads, and thread stack vector slots
366  * from now on, calls to os_get_nthreads() will return the correct
367  * answer.
368  */
369  vec_validate_aligned (vlib_worker_threads, first_index - 1,
371  vec_validate (vlib_thread_stacks, vec_len (vlib_worker_threads) - 1);
372  return 0;
373 }
374 
377 {
378  vlib_frame_queue_t *fq;
379 
380  fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
381  clib_memset (fq, 0, sizeof (*fq));
382  fq->nelts = nelts;
383  fq->vector_threshold = 128; // packets
385 
386  if (1)
387  {
388  if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
389  fformat (stderr, "WARNING: fq->tail unaligned\n");
390  if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
391  fformat (stderr, "WARNING: fq->head unaligned\n");
392  if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
393  fformat (stderr, "WARNING: fq->elts unaligned\n");
394 
395  if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
396  fformat (stderr, "WARNING: fq->elts[0] size %d\n",
397  sizeof (fq->elts[0]));
398  if (nelts & (nelts - 1))
399  {
400  fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
401  abort ();
402  }
403  }
404 
405  return (fq);
406 }
407 
408 void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
409 void
411 {
412 }
413 
414 /* Turned off, save as reference material... */
415 #if 0
416 static inline int
417 vlib_frame_queue_dequeue_internal (int thread_id,
418  vlib_main_t * vm, vlib_node_main_t * nm)
419 {
420  vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
422  vlib_frame_t *f;
425  u32 node_runtime_index;
426  int msg_type;
427  u64 before;
428  int processed = 0;
429 
430  ASSERT (vm == vlib_mains[thread_id]);
431 
432  while (1)
433  {
434  if (fq->head == fq->tail)
435  return processed;
436 
437  elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
438 
439  if (!elt->valid)
440  return processed;
441 
442  before = clib_cpu_time_now ();
443 
444  f = elt->frame;
445  node_runtime_index = elt->node_runtime_index;
446  msg_type = elt->msg_type;
447 
448  switch (msg_type)
449  {
450  case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
452  /* note fallthrough... */
453  case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
455  node_runtime_index);
456  vlib_frame_free (vm, r, f);
457  break;
459  vec_add2 (vm->node_main.pending_frames, p, 1);
461  p->node_runtime_index = elt->node_runtime_index;
462  p->frame_index = vlib_frame_index (vm, f);
464  fq->dequeue_vectors += (u64) f->n_vectors;
465  break;
466  case VLIB_FRAME_QUEUE_ELT_API_MSG:
468  break;
469  default:
470  clib_warning ("bogus frame queue message, type %d", msg_type);
471  break;
472  }
473  elt->valid = 0;
474  fq->dequeues++;
475  fq->dequeue_ticks += clib_cpu_time_now () - before;
477  fq->head++;
478  processed++;
479  }
480  ASSERT (0);
481  return processed;
482 }
483 
484 int
485 vlib_frame_queue_dequeue (int thread_id,
486  vlib_main_t * vm, vlib_node_main_t * nm)
487 {
488  return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
489 }
490 
491 int
492 vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
493  u32 frame_queue_index, vlib_frame_t * frame,
495 {
496  vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
498  u32 save_count;
499  u64 new_tail;
500  u64 before = clib_cpu_time_now ();
501 
502  ASSERT (fq);
503 
504  new_tail = clib_atomic_add_fetch (&fq->tail, 1);
505 
506  /* Wait until a ring slot is available */
507  while (new_tail >= fq->head + fq->nelts)
508  {
509  f64 b4 = vlib_time_now_ticks (vm, before);
511  /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
512  // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
513  }
514 
515  elt = fq->elts + (new_tail & (fq->nelts - 1));
516 
517  /* this would be very bad... */
518  while (elt->valid)
519  {
520  }
521 
522  /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
523  save_count = frame->n_vectors;
524 
525  elt->frame = frame;
526  elt->node_runtime_index = node_runtime_index;
527  elt->msg_type = type;
529  elt->valid = 1;
530 
531  return save_count;
532 }
533 #endif /* 0 */
534 
535 /* To be called by vlib worker threads upon startup */
536 void
538 {
540 
541  /*
542  * Note: disabling signals in worker threads as follows
543  * prevents the api post-mortem dump scheme from working
544  * {
545  * sigset_t s;
546  * sigfillset (&s);
547  * pthread_sigmask (SIG_SETMASK, &s, 0);
548  * }
549  */
550 
552 
553  if (vec_len (tm->thread_prefix) && w->registration->short_name)
554  {
555  w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
556  w->registration->short_name, w->instance_id, '\0');
557  vlib_set_thread_name ((char *) w->name);
558  }
559 
560  if (!w->registration->use_pthreads)
561  {
562 
563  /* Initial barrier sync, for both worker and i/o threads */
564  clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
565 
566  while (*vlib_worker_threads->wait_at_barrier)
567  ;
568 
569  clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
570  }
571 }
572 
573 void *
575 {
576  void *rv;
577  vlib_worker_thread_t *w = arg;
578 
579  w->lwp = syscall (SYS_gettid);
580  w->thread_id = pthread_self ();
581 
582  __os_thread_index = w - vlib_worker_threads;
583 
584  vlib_process_start_switch_stack (vlib_mains[__os_thread_index], 0);
585  rv = (void *) clib_calljmp
586  ((uword (*)(uword)) w->thread_function,
588  /* NOTREACHED, we hope */
589  return rv;
590 }
591 
592 void
594 {
595  const char *sys_cpu_path = "/sys/devices/system/cpu/cpu";
596  const char *sys_node_path = "/sys/devices/system/node/node";
597  clib_bitmap_t *nbmp = 0, *cbmp = 0;
598  u32 node;
599  u8 *p = 0;
600  int core_id = -1, numa_id = -1;
601 
602  p = format (p, "%s%u/topology/core_id%c", sys_cpu_path, cpu_id, 0);
603  clib_sysfs_read ((char *) p, "%d", &core_id);
604  vec_reset_length (p);
605 
606  /* *INDENT-OFF* */
607  clib_sysfs_read ("/sys/devices/system/node/online", "%U",
608  unformat_bitmap_list, &nbmp);
609  clib_bitmap_foreach (node, nbmp) {
610  p = format (p, "%s%u/cpulist%c", sys_node_path, node, 0);
611  clib_sysfs_read ((char *) p, "%U", unformat_bitmap_list, &cbmp);
612  if (clib_bitmap_get (cbmp, cpu_id))
613  numa_id = node;
614  vec_reset_length (cbmp);
615  vec_reset_length (p);
616  }
617  /* *INDENT-ON* */
618  vec_free (nbmp);
619  vec_free (cbmp);
620  vec_free (p);
621 
622  w->core_id = core_id;
623  w->numa_id = numa_id;
624 }
625 
626 static clib_error_t *
628 {
631  void *(*fp_arg) (void *) = fp;
632  void *numa_heap;
633 
634  w->cpu_id = cpu_id;
635  vlib_get_thread_core_numa (w, cpu_id);
636 
637  /* Set up NUMA-bound heap if indicated */
638  if (mm->per_numa_mheaps[w->numa_id] == 0)
639  {
640  /* If the user requested a NUMA heap, create it... */
641  if (tm->numa_heap_size)
642  {
643  clib_mem_set_numa_affinity (w->numa_id, 1 /* force */ );
644  numa_heap = clib_mem_create_heap (0 /* DIY */ , tm->numa_heap_size,
645  1 /* is_locked */ ,
646  "numa %u heap", w->numa_id);
648  mm->per_numa_mheaps[w->numa_id] = numa_heap;
649  }
650  else
651  {
652  /* Or, use the main heap */
653  mm->per_numa_mheaps[w->numa_id] = w->thread_mheap;
654  }
655  }
656 
658  return tm->cb.vlib_launch_thread_cb (fp, (void *) w, cpu_id);
659  else
660  {
661  pthread_t worker;
662  cpu_set_t cpuset;
663  CPU_ZERO (&cpuset);
664  CPU_SET (cpu_id, &cpuset);
665 
666  if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
667  return clib_error_return_unix (0, "pthread_create");
668 
669  if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
670  return clib_error_return_unix (0, "pthread_setaffinity_np");
671 
672  return 0;
673  }
674 }
675 
676 static clib_error_t *
678 {
679  int i, j;
681  vlib_main_t *vm_clone;
682  void *oldheap;
686  u32 n_vlib_mains = tm->n_vlib_mains;
687  u32 worker_thread_index;
689 
690  vec_reset_length (vlib_worker_threads);
691 
692  /* Set up the main thread */
693  vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
694  w->elog_track.name = "main thread";
696 
697  if (vec_len (tm->thread_prefix))
698  {
699  w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
700  vlib_set_thread_name ((char *) w->name);
701  }
702 
703  vm->elog_main.lock =
705  vm->elog_main.lock[0] = 0;
706 
709 
710  /* Replace hand-crafted length-1 vector with a real vector */
711  vlib_mains = 0;
712 
714  _vec_len (vlib_mains) = 0;
716 
717  if (n_vlib_mains > 1)
718  {
719  vlib_worker_threads->wait_at_barrier =
721  vlib_worker_threads->workers_at_barrier =
723 
724  vlib_worker_threads->node_reforks_required =
726 
727  /* We'll need the rpc vector lock... */
729 
730  /* Ask for an initial barrier sync */
731  *vlib_worker_threads->workers_at_barrier = 0;
732  *vlib_worker_threads->wait_at_barrier = 1;
733 
734  /* Without update or refork */
735  *vlib_worker_threads->node_reforks_required = 0;
737 
738  /* init timing */
739  vm->barrier_epoch = 0;
740  vm->barrier_no_close_before = 0;
741 
742  worker_thread_index = 1;
744 
745  for (i = 0; i < vec_len (tm->registrations); i++)
746  {
747  vlib_node_main_t *nm, *nm_clone;
748  int k;
749 
750  tr = tm->registrations[i];
751 
752  if (tr->count == 0)
753  continue;
754 
755  for (k = 0; k < tr->count; k++)
756  {
757  vlib_node_t *n;
758 
759  vec_add2 (vlib_worker_threads, w, 1);
760  /* Currently unused, may not really work */
761  if (tr->mheap_size)
763  /* unlocked */ 0,
764  "%s%d heap",
765  tr->name, k);
766  else
767  w->thread_mheap = main_heap;
768 
769  w->thread_stack =
770  vlib_thread_stack_init (w - vlib_worker_threads);
771  w->thread_function = tr->function;
772  w->thread_function_arg = w;
773  w->instance_id = k;
774  w->registration = tr;
775 
776  w->elog_track.name =
777  (char *) format (0, "%s %d", tr->name, k + 1);
778  vec_add1 (w->elog_track.name, 0);
780 
781  if (tr->no_data_structure_clone)
782  continue;
783 
784  /* Fork vlib_global_main et al. Look for bugs here */
785  oldheap = clib_mem_set_heap (w->thread_mheap);
786 
787  vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
789  clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
790 
791  vm_clone->thread_index = worker_thread_index;
792  vm_clone->heap_base = w->thread_mheap;
793  vm_clone->heap_aligned_base = (void *)
794  (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
795  vm_clone->init_functions_called =
796  hash_create (0, /* value bytes */ 0);
797  vm_clone->pending_rpc_requests = 0;
798  vec_validate (vm_clone->pending_rpc_requests, 0);
799  _vec_len (vm_clone->pending_rpc_requests) = 0;
800  clib_memset (&vm_clone->random_buffer, 0,
801  sizeof (vm_clone->random_buffer));
807 
808  nm = &vlib_mains[0]->node_main;
809  nm_clone = &vm_clone->node_main;
810  /* fork next frames array, preserving node runtime indices */
811  nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
813  for (j = 0; j < vec_len (nm_clone->next_frames); j++)
814  {
815  vlib_next_frame_t *nf = &nm_clone->next_frames[j];
816  u32 save_node_runtime_index;
817  u32 save_flags;
818 
819  save_node_runtime_index = nf->node_runtime_index;
820  save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
822  nf->node_runtime_index = save_node_runtime_index;
823  nf->flags = save_flags;
824  }
825 
826  /* fork the frame dispatch queue */
827  nm_clone->pending_frames = 0;
828  vec_validate (nm_clone->pending_frames, 10);
829  _vec_len (nm_clone->pending_frames) = 0;
830 
831  /* fork nodes */
832  nm_clone->nodes = 0;
833 
834  /* Allocate all nodes in single block for speed */
835  n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
836 
837  for (j = 0; j < vec_len (nm->nodes); j++)
838  {
839  clib_memcpy (n, nm->nodes[j], sizeof (*n));
840  /* none of the copied nodes have enqueue rights given out */
842  clib_memset (&n->stats_total, 0, sizeof (n->stats_total));
844  sizeof (n->stats_last_clear));
845  vec_add1 (nm_clone->nodes, n);
846  n++;
847  }
851  vec_foreach (rt,
853  {
854  vlib_node_t *n = vlib_get_node (vm, rt->node_index);
855  rt->thread_index = vm_clone->thread_index;
856  /* copy initial runtime_data from node */
857  if (n->runtime_data && n->runtime_data_bytes > 0)
860  n->runtime_data_bytes));
861  }
862 
867  {
868  vlib_node_t *n = vlib_get_node (vm, rt->node_index);
869  rt->thread_index = vm_clone->thread_index;
870  /* copy initial runtime_data from node */
871  if (n->runtime_data && n->runtime_data_bytes > 0)
874  n->runtime_data_bytes));
875  }
876 
880  vec_foreach (rt,
882  {
883  vlib_node_t *n = vlib_get_node (vm, rt->node_index);
884  rt->thread_index = vm_clone->thread_index;
885  /* copy initial runtime_data from node */
886  if (n->runtime_data && n->runtime_data_bytes > 0)
889  n->runtime_data_bytes));
890  }
891 
892  nm_clone->processes = vec_dup_aligned (nm->processes,
894 
895  /* Create per-thread frame freelist */
896  nm_clone->frame_sizes = vec_new (vlib_frame_size_t, 1);
897 #ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
898  nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
899 #endif
900  nm_clone->node_by_error = nm->node_by_error;
901 
902  /* Packet trace buffers are guaranteed to be empty, nothing to do here */
903 
904  clib_mem_set_heap (oldheap);
906 
907  /* Switch to the stats segment ... */
908  void *oldheap = vlib_stats_push_heap (0);
910  (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
912  worker_thread_index, oldheap, 1);
913 
915  (vlib_mains[0]->error_main.counters_last_clear,
917 
918  worker_thread_index++;
919  }
920  }
921  }
922  else
923  {
924  /* only have non-data-structure copy threads to create... */
925  for (i = 0; i < vec_len (tm->registrations); i++)
926  {
927  tr = tm->registrations[i];
928 
929  for (j = 0; j < tr->count; j++)
930  {
931  vec_add2 (vlib_worker_threads, w, 1);
932  if (tr->mheap_size)
933  {
935  /* locked */ 0,
936  "%s%d heap",
937  tr->name, j);
938  }
939  else
940  w->thread_mheap = main_heap;
941  w->thread_stack =
942  vlib_thread_stack_init (w - vlib_worker_threads);
943  w->thread_function = tr->function;
944  w->thread_function_arg = w;
945  w->instance_id = j;
946  w->elog_track.name =
947  (char *) format (0, "%s %d", tr->name, j + 1);
948  w->registration = tr;
949  vec_add1 (w->elog_track.name, 0);
951  }
952  }
953  }
954 
955  worker_thread_index = 1;
956 
957  for (i = 0; i < vec_len (tm->registrations); i++)
958  {
959  clib_error_t *err;
960  int j;
961 
962  tr = tm->registrations[i];
963 
964  if (tr->use_pthreads || tm->use_pthreads)
965  {
966  for (j = 0; j < tr->count; j++)
967  {
968  w = vlib_worker_threads + worker_thread_index++;
970  w, 0);
971  if (err)
972  clib_error_report (err);
973  }
974  }
975  else
976  {
977  uword c;
978  /* *INDENT-OFF* */
979  clib_bitmap_foreach (c, tr->coremask) {
980  w = vlib_worker_threads + worker_thread_index++;
982  w, c);
983  if (err)
984  clib_error_report (err);
985  }
986  /* *INDENT-ON* */
987  }
988  }
991  return 0;
992 }
993 
995 
996 
997 static inline void
999 {
1000  int i, j;
1001  vlib_main_t *vm;
1002  vlib_node_main_t *nm, *nm_clone;
1003  vlib_main_t *vm_clone;
1004  vlib_node_runtime_t *rt;
1005  never_inline void
1007  vlib_node_runtime_t * r,
1008  uword n_calls,
1009  uword n_vectors, uword n_clocks);
1010 
1011  ASSERT (vlib_get_thread_index () == 0);
1012 
1013  vm = vlib_mains[0];
1014  nm = &vm->node_main;
1015 
1016  ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1017 
1018  /*
1019  * Scrape all runtime stats, so we don't lose node runtime(s) with
1020  * pending counts, or throw away worker / io thread counts.
1021  */
1022  for (j = 0; j < vec_len (nm->nodes); j++)
1023  {
1024  vlib_node_t *n;
1025  n = nm->nodes[j];
1026  vlib_node_sync_stats (vm, n);
1027  }
1028 
1029  for (i = 1; i < vec_len (vlib_mains); i++)
1030  {
1031  vlib_node_t *n;
1032 
1033  vm_clone = vlib_mains[i];
1034  nm_clone = &vm_clone->node_main;
1035 
1036  for (j = 0; j < vec_len (nm_clone->nodes); j++)
1037  {
1038  n = nm_clone->nodes[j];
1039 
1040  rt = vlib_node_get_runtime (vm_clone, n->index);
1041  vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1042  }
1043  }
1044 
1045  /* Per-worker clone rebuilds are now done on each thread */
1046 }
1047 
1048 
1049 void
1051 {
1052  vlib_main_t *vm, *vm_clone;
1053  vlib_node_main_t *nm, *nm_clone;
1054  vlib_node_t **old_nodes_clone;
1055  vlib_node_runtime_t *rt, *old_rt;
1056 
1057  vlib_node_t *new_n_clone;
1058 
1059  int j;
1060 
1061  vm = vlib_mains[0];
1062  nm = &vm->node_main;
1063  vm_clone = vlib_get_main ();
1064  nm_clone = &vm_clone->node_main;
1065 
1066  /* Re-clone error heap */
1067  u64 *old_counters = vm_clone->error_main.counters;
1068  u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1069 
1070  clib_memcpy_fast (&vm_clone->error_main, &vm->error_main,
1071  sizeof (vm->error_main));
1072  j = vec_len (vm->error_main.counters) - 1;
1073 
1074  /* Switch to the stats segment ... */
1075  void *oldheap = vlib_stats_push_heap (0);
1076  vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
1077  vm_clone->error_main.counters = old_counters;
1078  vlib_stats_pop_heap2 (vm_clone->error_main.counters, vm_clone->thread_index,
1079  oldheap, 0);
1080 
1081  vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
1082  vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1083 
1084  nm_clone = &vm_clone->node_main;
1085  vec_free (nm_clone->next_frames);
1086  nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1088 
1089  for (j = 0; j < vec_len (nm_clone->next_frames); j++)
1090  {
1091  vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1092  u32 save_node_runtime_index;
1093  u32 save_flags;
1094 
1095  save_node_runtime_index = nf->node_runtime_index;
1096  save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1097  vlib_next_frame_init (nf);
1098  nf->node_runtime_index = save_node_runtime_index;
1099  nf->flags = save_flags;
1100  }
1101 
1102  old_nodes_clone = nm_clone->nodes;
1103  nm_clone->nodes = 0;
1104 
1105  /* re-fork nodes */
1106 
1107  /* Allocate all nodes in single block for speed */
1108  new_n_clone =
1109  clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1110  for (j = 0; j < vec_len (nm->nodes); j++)
1111  {
1112  vlib_node_t *new_n = nm->nodes[j];
1113 
1114  clib_memcpy_fast (new_n_clone, new_n, sizeof (*new_n));
1115  /* none of the copied nodes have enqueue rights given out */
1117 
1118  if (j >= vec_len (old_nodes_clone))
1119  {
1120  /* new node, set to zero */
1121  clib_memset (&new_n_clone->stats_total, 0,
1122  sizeof (new_n_clone->stats_total));
1123  clib_memset (&new_n_clone->stats_last_clear, 0,
1124  sizeof (new_n_clone->stats_last_clear));
1125  }
1126  else
1127  {
1128  vlib_node_t *old_n_clone = old_nodes_clone[j];
1129  /* Copy stats if the old data is valid */
1130  clib_memcpy_fast (&new_n_clone->stats_total,
1131  &old_n_clone->stats_total,
1132  sizeof (new_n_clone->stats_total));
1133  clib_memcpy_fast (&new_n_clone->stats_last_clear,
1134  &old_n_clone->stats_last_clear,
1135  sizeof (new_n_clone->stats_last_clear));
1136 
1137  /* keep previous node state */
1138  new_n_clone->state = old_n_clone->state;
1139  }
1140  vec_add1 (nm_clone->nodes, new_n_clone);
1141  new_n_clone++;
1142  }
1143  /* Free the old node clones */
1144  clib_mem_free (old_nodes_clone[0]);
1145 
1146  vec_free (old_nodes_clone);
1147 
1148 
1149  /* re-clone internal nodes */
1150  old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1154 
1156  {
1157  vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1158  rt->thread_index = vm_clone->thread_index;
1159  /* copy runtime_data, will be overwritten later for existing rt */
1160  if (n->runtime_data && n->runtime_data_bytes > 0)
1163  n->runtime_data_bytes));
1164  }
1165 
1166  for (j = 0; j < vec_len (old_rt); j++)
1167  {
1168  rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1169  rt->state = old_rt[j].state;
1170  clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1172  }
1173 
1174  vec_free (old_rt);
1175 
1176  /* re-clone input nodes */
1177  old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1178  nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
1181 
1183  {
1184  vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1185  rt->thread_index = vm_clone->thread_index;
1186  /* copy runtime_data, will be overwritten later for existing rt */
1187  if (n->runtime_data && n->runtime_data_bytes > 0)
1190  n->runtime_data_bytes));
1191  }
1192 
1193  for (j = 0; j < vec_len (old_rt); j++)
1194  {
1195  rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1196  rt->state = old_rt[j].state;
1197  clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1199  }
1200 
1201  vec_free (old_rt);
1202 
1203  /* re-clone pre-input nodes */
1204  old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT];
1208 
1210  {
1211  vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1212  rt->thread_index = vm_clone->thread_index;
1213  /* copy runtime_data, will be overwritten later for existing rt */
1214  if (n->runtime_data && n->runtime_data_bytes > 0)
1217  n->runtime_data_bytes));
1218  }
1219 
1220  for (j = 0; j < vec_len (old_rt); j++)
1221  {
1222  rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1223  rt->state = old_rt[j].state;
1224  clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1226  }
1227 
1228  vec_free (old_rt);
1229 
1230  nm_clone->processes = vec_dup_aligned (nm->processes,
1232  nm_clone->node_by_error = nm->node_by_error;
1233 }
1234 
1235 void
1237 {
1238  /*
1239  * Make a note that we need to do a node runtime update
1240  * prior to releasing the barrier.
1241  */
1243 }
1244 
1245 u32
1246 unformat_sched_policy (unformat_input_t * input, va_list * args)
1247 {
1248  u32 *r = va_arg (*args, u32 *);
1249 
1250  if (0);
1251 #define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1253 #undef _
1254  else
1255  return 0;
1256  return 1;
1257 }
1258 
1259 static clib_error_t *
1261 {
1263  uword *p;
1265  u8 *name;
1266  uword *bitmap;
1267  u32 count;
1268 
1270 
1271  tm->n_thread_stacks = 1; /* account for main thread */
1272  tm->sched_policy = ~0;
1273  tm->sched_priority = ~0;
1274  tm->main_lcore = ~0;
1275 
1276  tr = tm->next;
1277 
1278  while (tr)
1279  {
1281  tr = tr->next;
1282  }
1283 
1284  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1285  {
1286  if (unformat (input, "use-pthreads"))
1287  tm->use_pthreads = 1;
1288  else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
1289  ;
1290  else if (unformat (input, "main-core %u", &tm->main_lcore))
1291  ;
1292  else if (unformat (input, "skip-cores %u", &tm->skip_cores))
1293  ;
1294  else if (unformat (input, "numa-heap-size %U",
1296  ;
1297  else if (unformat (input, "coremask-%s %U", &name,
1298  unformat_bitmap_mask, &bitmap) ||
1299  unformat (input, "corelist-%s %U", &name,
1300  unformat_bitmap_list, &bitmap))
1301  {
1303  if (p == 0)
1304  return clib_error_return (0, "no such thread type '%s'", name);
1305 
1306  tr = (vlib_thread_registration_t *) p[0];
1307 
1308  if (tr->use_pthreads)
1309  return clib_error_return (0,
1310  "corelist cannot be set for '%s' threads",
1311  name);
1312  if (tr->count)
1313  return clib_error_return
1314  (0, "core placement of '%s' threads is already configured",
1315  name);
1316 
1317  tr->coremask = bitmap;
1319  }
1320  else
1321  if (unformat
1322  (input, "scheduler-policy %U", unformat_sched_policy,
1323  &tm->sched_policy))
1324  ;
1325  else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
1326  ;
1327  else if (unformat (input, "%s %u", &name, &count))
1328  {
1330  if (p == 0)
1331  return clib_error_return (0, "no such thread type 3 '%s'", name);
1332 
1333  tr = (vlib_thread_registration_t *) p[0];
1334 
1335  if (tr->fixed_count)
1336  return clib_error_return
1337  (0, "number of '%s' threads not configurable", name);
1338  if (tr->count)
1339  return clib_error_return
1340  (0, "number of '%s' threads is already configured", name);
1341 
1342  tr->count = count;
1343  }
1344  else
1345  break;
1346  }
1347 
1348  if (tm->sched_priority != ~0)
1349  {
1350  if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
1351  {
1352  u32 prio_max = sched_get_priority_max (tm->sched_policy);
1353  u32 prio_min = sched_get_priority_min (tm->sched_policy);
1354  if (tm->sched_priority > prio_max)
1355  tm->sched_priority = prio_max;
1356  if (tm->sched_priority < prio_min)
1357  tm->sched_priority = prio_min;
1358  }
1359  else
1360  {
1361  return clib_error_return
1362  (0,
1363  "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1364  tm->sched_priority);
1365  }
1366  }
1367  tr = tm->next;
1368 
1369  if (!tm->thread_prefix)
1370  tm->thread_prefix = format (0, "vpp");
1371 
1372  while (tr)
1373  {
1374  tm->n_thread_stacks += tr->count;
1375  tm->n_pthreads += tr->count * tr->use_pthreads;
1376  tm->n_threads += tr->count * (tr->use_pthreads == 0);
1377  tr = tr->next;
1378  }
1379 
1380  return 0;
1381 }
1382 
1384 
1385 void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
1386 void
1388 {
1389 }
1390 
1391 void
1393 {
1394  vlib_main_t *vm = vlib_get_main ();
1395 
1396  if (vlib_mains == 0)
1397  return;
1398 
1399  ASSERT (vlib_get_thread_index () == 0);
1401 
1402  switch (which)
1403  {
1406  break;
1407 
1408  default:
1409  ASSERT (0);
1410  }
1412 }
1413 
1414  /*
1415  * Enforce minimum open time to minimize packet loss due to Rx overflow,
1416  * based on a test based heuristic that barrier should be open for at least
1417  * 3 time as long as it is closed (with an upper bound of 1ms because by that
1418  * point it is probably too late to make a difference)
1419  */
1420 
1421 #ifndef BARRIER_MINIMUM_OPEN_LIMIT
1422 #define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1423 #endif
1424 
1425 #ifndef BARRIER_MINIMUM_OPEN_FACTOR
1426 #define BARRIER_MINIMUM_OPEN_FACTOR 3
1427 #endif
1428 
1429 void
1431 {
1432  f64 deadline;
1433  f64 now = vlib_time_now (vm);
1434  u32 count = vec_len (vlib_mains) - 1;
1435 
1436  /* No worker threads? */
1437  if (count == 0)
1438  return;
1439 
1440  deadline = now + BARRIER_SYNC_TIMEOUT;
1441  *vlib_worker_threads->wait_at_barrier = 1;
1442  while (*vlib_worker_threads->workers_at_barrier != count)
1443  {
1444  if ((now = vlib_time_now (vm)) > deadline)
1445  {
1446  fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1447  os_panic ();
1448  }
1449  CLIB_PAUSE ();
1450  }
1451  *vlib_worker_threads->wait_at_barrier = 0;
1452 }
1453 
1454 /**
1455  * Return true if the wroker thread barrier is held
1456  */
1457 u8
1459 {
1460  if (vec_len (vlib_mains) < 2)
1461  return (1);
1462 
1463  return (*vlib_worker_threads->wait_at_barrier == 1);
1464 }
1465 
1466 void
1468 {
1469  f64 deadline;
1470  f64 now;
1471  f64 t_entry;
1472  f64 t_open;
1473  f64 t_closed;
1474  f64 max_vector_rate;
1475  u32 count;
1476  int i;
1477 
1478  if (vec_len (vlib_mains) < 2)
1479  return;
1480 
1481  ASSERT (vlib_get_thread_index () == 0);
1482 
1483  vlib_worker_threads[0].barrier_caller = func_name;
1484  count = vec_len (vlib_mains) - 1;
1485 
1486  /* Record entry relative to last close */
1487  now = vlib_time_now (vm);
1488  t_entry = now - vm->barrier_epoch;
1489 
1490  /* Tolerate recursive calls */
1491  if (++vlib_worker_threads[0].recursion_level > 1)
1492  {
1493  barrier_trace_sync_rec (t_entry);
1494  return;
1495  }
1496 
1497  if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1499  vm->clib_time.last_cpu_time, 0 /* enter */ );
1500 
1501  /*
1502  * Need data to decide if we're working hard enough to honor
1503  * the barrier hold-down timer.
1504  */
1505  max_vector_rate = 0.0;
1506  for (i = 1; i < vec_len (vlib_mains); i++)
1507  max_vector_rate =
1508  clib_max (max_vector_rate,
1510 
1511  vlib_worker_threads[0].barrier_sync_count++;
1512 
1513  /* Enforce minimum barrier open time to minimize packet loss */
1515 
1516  /*
1517  * If any worker thread seems busy, which we define
1518  * as a vector rate above 10, we enforce the barrier hold-down timer
1519  */
1520  if (max_vector_rate > 10.0)
1521  {
1522  while (1)
1523  {
1524  now = vlib_time_now (vm);
1525  /* Barrier hold-down timer expired? */
1526  if (now >= vm->barrier_no_close_before)
1527  break;
1528  if ((vm->barrier_no_close_before - now)
1529  > (2.0 * BARRIER_MINIMUM_OPEN_LIMIT))
1530  {
1531  clib_warning
1532  ("clock change: would have waited for %.4f seconds",
1533  (vm->barrier_no_close_before - now));
1534  break;
1535  }
1536  }
1537  }
1538  /* Record time of closure */
1539  t_open = now - vm->barrier_epoch;
1540  vm->barrier_epoch = now;
1541 
1542  deadline = now + BARRIER_SYNC_TIMEOUT;
1543 
1544  *vlib_worker_threads->wait_at_barrier = 1;
1545  while (*vlib_worker_threads->workers_at_barrier != count)
1546  {
1547  if ((now = vlib_time_now (vm)) > deadline)
1548  {
1549  fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1550  os_panic ();
1551  }
1552  }
1553 
1554  t_closed = now - vm->barrier_epoch;
1555 
1556  barrier_trace_sync (t_entry, t_open, t_closed);
1557 
1558 }
1559 
1560 void
1562 {
1563  f64 deadline;
1564  f64 now;
1565  f64 minimum_open;
1566  f64 t_entry;
1567  f64 t_closed_total;
1568  f64 t_update_main = 0.0;
1569  int refork_needed = 0;
1570 
1571  if (vec_len (vlib_mains) < 2)
1572  return;
1573 
1574  ASSERT (vlib_get_thread_index () == 0);
1575 
1576 
1577  now = vlib_time_now (vm);
1578  t_entry = now - vm->barrier_epoch;
1579 
1580  if (--vlib_worker_threads[0].recursion_level > 0)
1581  {
1582  barrier_trace_release_rec (t_entry);
1583  return;
1584  }
1585 
1586  /* Update (all) node runtimes before releasing the barrier, if needed */
1588  {
1589  /*
1590  * Lock stat segment here, so we's safe when
1591  * rebuilding the stat segment node clones from the
1592  * stat thread...
1593  */
1595 
1596  /* Do stats elements on main thread */
1599 
1600  /* Do per thread rebuilds in parallel */
1601  refork_needed = 1;
1602  clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
1603  (vec_len (vlib_mains) - 1));
1604  now = vlib_time_now (vm);
1605  t_update_main = now - vm->barrier_epoch;
1606  }
1607 
1608  deadline = now + BARRIER_SYNC_TIMEOUT;
1609 
1610  /*
1611  * Note when we let go of the barrier.
1612  * Workers can use this to derive a reasonably accurate
1613  * time offset. See vlib_time_now(...)
1614  */
1617 
1618  *vlib_worker_threads->wait_at_barrier = 0;
1619 
1620  while (*vlib_worker_threads->workers_at_barrier > 0)
1621  {
1622  if ((now = vlib_time_now (vm)) > deadline)
1623  {
1624  fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1625  os_panic ();
1626  }
1627  }
1628 
1629  /* Wait for reforks before continuing */
1630  if (refork_needed)
1631  {
1632  now = vlib_time_now (vm);
1633 
1634  deadline = now + BARRIER_SYNC_TIMEOUT;
1635 
1636  while (*vlib_worker_threads->node_reforks_required > 0)
1637  {
1638  if ((now = vlib_time_now (vm)) > deadline)
1639  {
1640  fformat (stderr, "%s: worker thread refork deadlock\n",
1641  __FUNCTION__);
1642  os_panic ();
1643  }
1644  }
1646  }
1647 
1648  t_closed_total = now - vm->barrier_epoch;
1649 
1650  minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1651 
1652  if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1653  {
1654  minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1655  }
1656 
1657  vm->barrier_no_close_before = now + minimum_open;
1658 
1659  /* Record barrier epoch (used to enforce minimum open time) */
1660  vm->barrier_epoch = now;
1661 
1662  barrier_trace_release (t_entry, t_closed_total, t_update_main);
1663 
1664  if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1666  vm->clib_time.last_cpu_time, 1 /* leave */ );
1667 }
1668 
1669 /**
1670  * Wait until each of the workers has been once around the track
1671  */
1672 void
1674 {
1675  ASSERT (vlib_get_thread_index () == 0);
1676 
1677  if (vec_len (vlib_mains) < 2)
1678  return;
1679 
1681  return;
1682 
1683  u32 *counts = 0;
1684  u32 ii;
1685 
1686  vec_validate (counts, vec_len (vlib_mains) - 1);
1687 
1688  /* record the current loop counts */
1690  counts[ii] = vlib_mains[ii]->main_loop_count;
1691 
1692  /* spin until each changes, apart from the main thread, or we'd be
1693  * a while */
1694  for (ii = 1; ii < vec_len (counts); ii++)
1695  {
1696  while (counts[ii] == vlib_mains[ii]->main_loop_count)
1697  CLIB_PAUSE ();
1698  }
1699 
1700  vec_free (counts);
1701  return;
1702 }
1703 
1704 /*
1705  * Check the frame queue to see if any frames are available.
1706  * If so, pull the packets off the frames and put them to
1707  * the handoff node.
1708  */
1709 int
1711 {
1712  u32 thread_id = vm->thread_index;
1713  vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
1715  u32 *from, *to;
1716  vlib_frame_t *f;
1717  int msg_type;
1718  int processed = 0;
1719  u32 n_left_to_node;
1720  u32 vectors = 0;
1721 
1722  ASSERT (fq);
1723  ASSERT (vm == vlib_mains[thread_id]);
1724 
1725  if (PREDICT_FALSE (fqm->node_index == ~0))
1726  return 0;
1727  /*
1728  * Gather trace data for frame queues
1729  */
1730  if (PREDICT_FALSE (fq->trace))
1731  {
1732  frame_queue_trace_t *fqt;
1734  u32 elix;
1735 
1736  fqt = &fqm->frame_queue_traces[thread_id];
1737 
1738  fqt->nelts = fq->nelts;
1739  fqt->head = fq->head;
1740  fqt->head_hint = fq->head_hint;
1741  fqt->tail = fq->tail;
1742  fqt->threshold = fq->vector_threshold;
1743  fqt->n_in_use = fqt->tail - fqt->head;
1744  if (fqt->n_in_use >= fqt->nelts)
1745  {
1746  // if beyond max then use max
1747  fqt->n_in_use = fqt->nelts - 1;
1748  }
1749 
1750  /* Record the number of elements in use in the histogram */
1751  fqh = &fqm->frame_queue_histogram[thread_id];
1752  fqh->count[fqt->n_in_use]++;
1753 
1754  /* Record a snapshot of the elements in use */
1755  for (elix = 0; elix < fqt->nelts; elix++)
1756  {
1757  elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1758  if (1 || elt->valid)
1759  {
1760  fqt->n_vectors[elix] = elt->n_vectors;
1761  }
1762  }
1763  fqt->written = 1;
1764  }
1765 
1766  while (1)
1767  {
1768  vlib_buffer_t *b;
1769  if (fq->head == fq->tail)
1770  {
1771  fq->head_hint = fq->head;
1772  return processed;
1773  }
1774 
1775  elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
1776 
1777  if (!elt->valid)
1778  {
1779  fq->head_hint = fq->head;
1780  return processed;
1781  }
1782 
1783  from = elt->buffer_index;
1784  msg_type = elt->msg_type;
1785 
1787  ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1788 
1789  f = vlib_get_frame_to_node (vm, fqm->node_index);
1790 
1791  /* If the first vector is traced, set the frame trace flag */
1792  b = vlib_get_buffer (vm, from[0]);
1793  if (b->flags & VLIB_BUFFER_IS_TRACED)
1795 
1796  to = vlib_frame_vector_args (f);
1797 
1798  n_left_to_node = elt->n_vectors;
1799 
1800  while (n_left_to_node >= 4)
1801  {
1802  to[0] = from[0];
1803  to[1] = from[1];
1804  to[2] = from[2];
1805  to[3] = from[3];
1806  to += 4;
1807  from += 4;
1808  n_left_to_node -= 4;
1809  }
1810 
1811  while (n_left_to_node > 0)
1812  {
1813  to[0] = from[0];
1814  to++;
1815  from++;
1816  n_left_to_node--;
1817  }
1818 
1819  vectors += elt->n_vectors;
1820  f->n_vectors = elt->n_vectors;
1821  vlib_put_frame_to_node (vm, fqm->node_index, f);
1822 
1823  elt->valid = 0;
1824  elt->n_vectors = 0;
1825  elt->msg_type = 0xfefefefe;
1827  fq->head++;
1828  processed++;
1829 
1830  /*
1831  * Limit the number of packets pushed into the graph
1832  */
1833  if (vectors >= fq->vector_threshold)
1834  {
1835  fq->head_hint = fq->head;
1836  return processed;
1837  }
1838  }
1839  ASSERT (0);
1840  return processed;
1841 }
1842 
1843 void
1845 {
1848  vlib_main_t *vm = vlib_get_main ();
1849  clib_error_t *e;
1850 
1852 
1854 
1856  clib_time_init (&vm->clib_time);
1858 
1860  (vm, &vm->worker_init_function_registrations, 1 /* call_once */ );
1861  if (e)
1862  clib_error_report (e);
1863 
1864  /* Wait until the dpdk init sequence is complete */
1865  while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1867 
1868  vlib_worker_loop (vm);
1869 }
1870 
1871 /* *INDENT-OFF* */
1872 VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1873  .name = "workers",
1874  .short_name = "wk",
1875  .function = vlib_worker_thread_fn,
1876 };
1877 /* *INDENT-ON* */
1878 
1879 u32
1880 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1881 {
1884  vlib_frame_queue_t *fq;
1885  int i;
1886  u32 num_threads;
1887 
1888  if (frame_queue_nelts == 0)
1889  frame_queue_nelts = FRAME_QUEUE_MAX_NELTS;
1890 
1891  num_threads = 1 /* main thread */ + tm->n_threads;
1892  ASSERT (frame_queue_nelts >= 8 + num_threads);
1893 
1894  vec_add2 (tm->frame_queue_mains, fqm, 1);
1895 
1896  fqm->node_index = node_index;
1897  fqm->frame_queue_nelts = frame_queue_nelts;
1898  fqm->queue_hi_thresh = frame_queue_nelts - num_threads;
1899 
1901  vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
1902  _vec_len (fqm->vlib_frame_queues) = 0;
1903  for (i = 0; i < tm->n_vlib_mains; i++)
1904  {
1906  fq = vlib_frame_queue_alloc (frame_queue_nelts);
1907  vec_add1 (fqm->vlib_frame_queues, fq);
1908 
1909  ptd = vec_elt_at_index (fqm->per_thread_data, i);
1911  tm->n_vlib_mains - 1);
1913  tm->n_vlib_mains - 1,
1914  (vlib_frame_queue_t *) (~0));
1915  }
1916 
1917  return (fqm - tm->frame_queue_mains);
1918 }
1919 
1920 int
1922 {
1924 
1925  if (tm->extern_thread_mgmt)
1926  return -1;
1927 
1929  tm->extern_thread_mgmt = 1;
1930  return 0;
1931 }
1932 
1933 void
1935  args)
1936 {
1937  ASSERT (vlib_get_thread_index () == 0);
1939  args->type_opaque, args->data);
1940 }
1941 
1943 
1944 void
1945 vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1946 {
1948  {
1949  void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1950  (*fp) (callback, args, arg_size);
1951  }
1952  else
1953  clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1954 }
1955 
1956 clib_error_t *
1958 {
1959  return 0;
1960 }
1961 
1963 
1964 
1965 static clib_error_t *
1967  unformat_input_t * input, vlib_cli_command_t * cmd)
1968 {
1969  int i;
1970  int verbose = 0;
1971  clib_timebase_t _tb, *tb = &_tb;
1972 
1973  (void) unformat (input, "verbose %=", &verbose, 1);
1974 
1976  &vm->clib_time);
1977 
1978  vlib_cli_output (vm, "%U, %U GMT", format_clib_time, &vm->clib_time,
1979  verbose, format_clib_timebase_time,
1980  clib_timebase_now (tb));
1981 
1982  if (vec_len (vlib_mains) == 1)
1983  return 0;
1984 
1985  vlib_cli_output (vm, "Time last barrier release %.9f",
1987 
1988  for (i = 1; i < vec_len (vlib_mains); i++)
1989  {
1990  if (vlib_mains[i] == 0)
1991  continue;
1992 
1993  vlib_cli_output (vm, "%d: %U", i, format_clib_time,
1994  &vlib_mains[i]->clib_time, verbose);
1995 
1996  vlib_cli_output (vm, "Thread %d offset %.9f error %.9f", i,
1997  vlib_mains[i]->time_offset,
2000  }
2001  return 0;
2002 }
2003 
2004 /* *INDENT-OFF* */
2005 VLIB_CLI_COMMAND (f_command, static) =
2006 {
2007  .path = "show clock",
2008  .short_help = "show clock",
2009  .function = show_clock_command_fn,
2010 };
2011 /* *INDENT-ON* */
2012 
2015 {
2016  return vlib_get_thread_main ();
2017 }
2018 
2019 /*
2020  * fd.io coding-style-patch-verification: ON
2021  *
2022  * Local Variables:
2023  * eval: (c-set-style "gnu")
2024  * End:
2025  */
_vlib_init_function_list_elt_t * worker_init_function_registrations
Definition: main.h:256
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:509
volatile u32 main_loop_count
Definition: main.h:135
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
static void barrier_trace_release_rec(f64 t_entry)
Definition: threads.c:96
static void barrier_trace_sync(f64 t_entry, f64 t_open, f64 t_closed)
Definition: threads.c:45
#define CLIB_PAUSE()
Definition: lock.h:23
u32 vl(void *p)
Definition: threads.c:29
#define clib_callback_data_init(set_, lock_)
Initialize a callback set.
Definition: callback_data.h:41
uword * pending_rpc_requests
Definition: main.h:314
vlib_main_t vlib_global_main
Definition: main.c:2041
#define vec_foreach_index(var, v)
Iterate over vector indices.
never_inline void vlib_node_runtime_sync_stats(vlib_main_t *vm, vlib_node_runtime_t *r, uword n_calls, uword n_vectors, uword n_clocks)
Definition: main.c:569
void vlib_worker_wait_one_loop(void)
Wait until each of the workers has been once around the track.
Definition: threads.c:1673
#define clib_min(x, y)
Definition: clib.h:328
void vlib_stats_pop_heap2(u64 *error_vector, u32 thread_index, void *oldheap, int lock)
Definition: stat_segment.c:290
clib_spinlock_t pending_rpc_lock
Definition: main.h:316
vlib_process_t ** processes
Definition: node.h:723
#define VLIB_PENDING_FRAME_NO_NEXT_FRAME
Definition: node.h:461
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:937
u8 runtime_data[0]
Function dependent node-runtime data.
Definition: node.h:519
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)
#define clib_atomic_add_fetch(a, b)
Definition: atomics.h:30
#define VLIB_MAIN_LOOP_ENTER_FUNCTION(x)
Definition: init.h:176
clib_mem_heap_t * clib_mem_create_heap(void *base, uword size, int is_locked, char *fmt,...)
Definition: mem_dlmalloc.c:533
unsigned long u64
Definition: types.h:89
clib_spinlock_t worker_thread_main_loop_callback_lock
Definition: main.h:273
#define CLIB_MEMORY_STORE_BARRIER()
Definition: clib.h:136
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
u32 index
Definition: node.h:280
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:334
#define vec_add2_aligned(V, P, N, A)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:642
clib_error_t * threads_init(vlib_main_t *vm)
Definition: threads.c:1957
static clib_mem_heap_t * clib_mem_set_heap(clib_mem_heap_t *heap)
Definition: mem.h:365
format_function_t format_clib_time
Definition: time.h:76
void os_panic(void)
Definition: unix-misc.c:175
#define clib_bitmap_foreach(i, ai)
Macro to iterate across set bits in a bitmap.
Definition: bitmap.h:361
uword numa_heap_size
Definition: threads.h:349
u32 vlib_frame_queue_main_init(u32 node_index, u32 frame_queue_nelts)
Definition: threads.c:1880
u32 thread_index
Definition: main.h:250
void * thread_function_arg
Definition: threads.h:99
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
static int sort_registrations_by_no_clone(void *a0, void *a1)
Definition: threads.c:167
static u64 clib_cpu_time_now(void)
Definition: time.h:81
frame_queue_trace_t * frame_queue_traces
Definition: threads.h:166
void vlib_process_signal_event_mt_helper(vlib_process_signal_event_mt_args_t *args)
Definition: threads.c:1934
elog_track_t elog_track
Definition: threads.h:101
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:630
void vnet_main_fixup(vlib_fork_fixup_t which)
Definition: threads.c:1387
void * vlib_stats_push_heap(void *old)
Definition: stat_segment.c:52
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
Definition: bitmap.h:167
#define hash_set_mem(h, key, value)
Definition: hash.h:275
vlib_main_t * vm
Definition: in2out_ed.c:1580
void vlib_worker_thread_fn(void *arg)
Definition: threads.c:1844
clib_time_t clib_time
Definition: main.h:123
u32 unformat_sched_policy(unformat_input_t *input, va_list *args)
Definition: threads.c:1246
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:520
struct vlib_thread_registration_ * next
Definition: threads.h:32
u32 buffer_index[VLIB_FRAME_SIZE]
Definition: threads.h:83
void * runtime_data
Definition: node.h:286
volatile u32 valid
Definition: threads.h:77
void vlib_worker_thread_barrier_sync_int(vlib_main_t *vm, const char *func_name)
Definition: threads.c:1467
static u32 vlib_last_vectors_per_main_loop(vlib_main_t *vm)
Definition: main.h:436
vlib_main_t ** vlib_mains
Definition: buffer.c:332
unsigned char u8
Definition: types.h:56
#define clib_bitmap_dup(v)
Duplicate a bitmap.
Definition: bitmap.h:87
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
u8 state
Definition: node.h:309
u16 thread_index
thread this node runs on
Definition: node.h:517
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:205
#define clib_memcpy(d, s, n)
Definition: string.h:180
u64 * counters_last_clear
Definition: error.h:65
static void vlib_worker_thread_barrier_check(void)
Definition: threads.h:401
vlib_thread_registration_t * next
Definition: threads.h:290
__clib_export word fformat(FILE *f, char *fmt,...)
Definition: format.c:462
#define vec_add1_aligned(V, E, A)
Add 1 element to end of vector (alignment specified).
Definition: vec.h:601
#define VLIB_NODE_RUNTIME_DATA_SIZE
Definition: node.h:530
vlib_node_stats_t stats_last_clear
Definition: node.h:274
void vlib_worker_thread_node_runtime_update(void)
Definition: threads.c:1236
u64 count[FRAME_QUEUE_MAX_NELTS]
Definition: node.h:786
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
int which
Definition: cJSON.h:234
#define VLIB_INVALID_NODE_INDEX
Definition: node.h:375
#define vec_new(T, N)
Create new vector of given type and length (unspecified alignment, no header).
Definition: vec.h:350
void * heap_aligned_base
Definition: main.h:176
static f64 clib_timebase_now(clib_timebase_t *tb)
Definition: time_range.h:88
vlib_frame_queue_msg_type_t
Definition: threads.h:69
vlib_node_t ** nodes
Definition: node.h:680
description fragment has unexpected format
Definition: map.api:433
vlib_frame_queue_elt_t ** handoff_queue_elt_by_thread_index
Definition: threads.h:152
clib_error_t * vlib_call_init_exit_functions_no_sort(vlib_main_t *vm, _vlib_init_function_list_elt_t **headp, int call_once)
Definition: init.c:369
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:182
#define clib_error_return(e, args...)
Definition: error.h:99
#define VLIB_FRAME_ALIGN
Definition: node.h:379
__clib_export int clib_mem_set_numa_affinity(u8 numa_node, int force)
Definition: mem.c:635
uword * lock
SMP lock, non-zero means locking required.
Definition: elog.h:175
uword * cpu_core_bitmap
Definition: threads.h:327
#define BARRIER_MINIMUM_OPEN_FACTOR
Definition: threads.c:1426
const cJSON *const b
Definition: cJSON.h:255
vlib_frame_queue_elt_t * elts
Definition: threads.h:145
pthread_t thread[MAX_CONNS]
Definition: main.c:142
f64 time_last_barrier_release
Definition: main.h:126
static_always_inline void vlib_process_start_switch_stack(vlib_main_t *vm, vlib_process_t *p)
Definition: node_funcs.h:56
unsigned int u32
Definition: types.h:88
vlib_node_runtime_t * nodes_by_type[VLIB_N_NODE_TYPE]
Definition: node.h:690
#define VLIB_FRAME_SIZE
Definition: node.h:378
void vlib_set_thread_name(char *name)
Definition: threads.c:152
void vl_msg_api_handler_no_free(void *)
Definition: threads.c:410
u32 cpu_id
Definition: vpe.api:222
format_function_t format_clib_timebase_time
Definition: time_range.h:70
#define hash_create_string(elts, value_bytes)
Definition: hash.h:690
void unformat_init_string(unformat_input_t *input, char *string, int string_len)
Definition: unformat.c:1029
vlib_fork_fixup_t
Definition: threads.h:234
#define BARRIER_SYNC_TIMEOUT
Definition: threads.h:200
static void clib_spinlock_init(clib_spinlock_t *p)
Definition: lock.h:65
void * rpc_call_main_thread_cb_fn
Definition: threads.c:1942
vl_api_fib_path_type_t type
Definition: fib_types.api:123
VLIB_REGISTER_THREAD(worker_thread_reg, static)
int extern_thread_mgmt
Definition: threads.h:346
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:34
void * thread_mheap
Definition: threads.h:96
u32 next_frame_index
Definition: node.h:458
vlib_node_stats_t stats_total
Definition: node.h:270
volatile u64 head
Definition: threads.h:132
u16 state
Input node state.
Definition: node.h:503
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:1015
static uword clib_bitmap_first_set(uword *ai)
Return the lowest numbered set bit in a bitmap.
Definition: bitmap.h:391
u8 * vlib_thread_stack_init(uword thread_index)
Definition: main.c:677
static void vlib_next_frame_init(vlib_next_frame_t *nf)
Definition: node.h:442
vlib_error_main_t error_main
Definition: main.h:210
u16 frame_flags
Definition: node.h:385
vlib_thread_callbacks_t cb
Definition: threads.h:345
#define VLIB_FRAME_NO_FREE_AFTER_DISPATCH
Definition: node.h:415
int vlib_thread_cb_register(struct vlib_main_t *vm, vlib_thread_callbacks_t *cb)
Definition: threads.c:1921
void vlib_stat_segment_unlock(void)
Definition: stat_segment.c:40
u8 vlib_worker_thread_barrier_held(void)
Return true if the wroker thread barrier is held.
Definition: threads.c:1458
struct _unformat_input_t unformat_input_t
const char * barrier_context
Definition: threads.h:108
char * name
Track name vector.
Definition: elog.h:116
#define clib_error_return_unix(e, args...)
Definition: error.h:102
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:216
u32 * node_by_error
Definition: node.h:750
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:238
#define ELOG_DATA(em, f)
Definition: elog.h:484
#define PREDICT_FALSE(x)
Definition: clib.h:121
static clib_error_t * vlib_launch_thread_int(void *fp, vlib_worker_thread_t *w, unsigned cpu_id)
Definition: threads.c:627
void vlib_worker_thread_node_refork(void)
Definition: threads.c:1050
clib_error_t *(* vlib_thread_set_lcore_cb)(u32 thread, u16 cpu)
Definition: threads.h:284
u32 node_index
Node index.
Definition: node.h:488
uword * init_functions_called
Definition: main.h:247
static clib_mem_heap_t * clib_mem_get_per_cpu_heap(void)
Definition: mem.h:161
uword * frame_size_hash
Definition: node.h:738
vlib_thread_main_t vlib_thread_main
Definition: threads.c:35
void(* thread_function)(void *)
Definition: threads.h:98
static clib_error_t * cpu_config(vlib_main_t *vm, unformat_input_t *input)
Definition: threads.c:1260
i32 n_vectors[FRAME_QUEUE_MAX_NELTS]
Definition: node.h:781
u64 * counters
Definition: error.h:62
u32 owner_node_index
Definition: node.h:355
vlib_frame_queue_t * vlib_frame_queue_alloc(int nelts)
Definition: threads.c:376
volatile u64 tail
Definition: threads.h:124
#define clib_mem_alloc_no_fail(size)
Definition: mem.h:297
#define VLIB_EARLY_CONFIG_FUNCTION(x, n,...)
Definition: init.h:226
__clib_export void clib_timebase_init(clib_timebase_t *tb, i32 timezone_offset_in_hours, clib_timebase_daylight_time_t daylight_type, clib_time_t *clib_time)
Definition: time_range.c:19
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
svmdb_client_t * c
u16 n_vectors
Definition: node.h:397
vlib_frame_queue_t ** vlib_frame_queues
Definition: threads.h:162
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:219
u32 node_runtime_index
Definition: node.h:452
vlib_pending_frame_t * pending_frames
Definition: node.h:708
vlib_thread_function_t * function
Definition: threads.h:37
int vlib_frame_queue_dequeue(vlib_main_t *vm, vlib_frame_queue_main_t *fqm)
Definition: threads.c:1710
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
void * heap_base
Definition: main.h:173
char * buffer
Definition: cJSON.h:163
#define clib_warning(format, args...)
Definition: error.h:59
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:115
void vlib_stat_segment_lock(void)
Definition: stat_segment.c:32
elog_main_t elog_main
Definition: main.h:224
frame_queue_nelt_counter_t * frame_queue_histogram
Definition: threads.h:167
#define VLIB_FRAME_PENDING
Definition: node.h:429
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
Definition: bitmap.h:197
#define ELOG_TYPE_DECLARE(f)
Definition: elog.h:442
string name[64]
Definition: ip.api:44
vlib_node_runtime_perf_callback_set_t vlib_node_runtime_perf_callbacks
Definition: main.h:151
void vlib_worker_thread_init(vlib_worker_thread_t *w)
Definition: threads.c:537
uword os_get_nthreads(void)
Definition: threads.c:146
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1580
volatile u32 * wait_at_barrier
Definition: threads.h:91
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
static clib_mem_heap_t * clib_mem_get_heap(void)
Definition: mem.h:359
vlib_frame_queue_per_thread_data_t * per_thread_data
Definition: threads.h:163
vlib_frame_queue_t ** congested_handoff_queue_by_thread_index
Definition: threads.h:153
#define never_inline
Definition: clib.h:105
signed int i32
Definition: types.h:77
#define hash_create(elts, value_bytes)
Definition: hash.h:696
#define ASSERT(truth)
u64 last_cpu_time
Definition: time.h:51
static clib_error_t * show_clock_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: threads.c:1966
static void barrier_trace_sync_rec(f64 t_entry)
Definition: threads.c:72
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:696
vlib_frame_queue_main_t * frame_queue_mains
Definition: threads.h:333
__clib_export void clib_time_init(clib_time_t *c)
Definition: time.c:207
u16 flags
Definition: node.h:388
static void clib_mem_free(void *p)
Definition: mem.h:311
void vlib_worker_thread_initial_barrier_sync_and_release(vlib_main_t *vm)
Definition: threads.c:1430
static_always_inline void vlib_process_finish_switch_stack(vlib_main_t *vm)
Definition: node_funcs.h:66
#define clib_error_report(e)
Definition: error.h:113
#define clib_bitmap_free(v)
Free a bitmap.
Definition: bitmap.h:92
int need_vlib_worker_thread_node_runtime_update
Definition: main.h:285
uword * thread_registrations_by_name
Definition: threads.h:295
#define BARRIER_MINIMUM_OPEN_LIMIT
Definition: threads.c:1422
clib_error_t *(* vlib_launch_thread_cb)(void *fp, vlib_worker_thread_t *w, unsigned cpu_id)
Definition: threads.h:282
volatile u32 * node_reforks_required
Definition: threads.h:109
const char * barrier_caller
Definition: threads.h:107
#define clib_max(x, y)
Definition: clib.h:321
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
#define clib_atomic_fetch_add(a, b)
Definition: atomics.h:23
void vlib_node_sync_stats(vlib_main_t *vm, vlib_node_t *n)
Definition: main.c:599
void vlib_get_thread_core_numa(vlib_worker_thread_t *w, unsigned cpu_id)
Definition: threads.c:593
static uword clib_bitmap_count_set_bits(uword *ai)
Return the number of set bits in a bitmap.
Definition: bitmap.h:468
static void barrier_trace_release(f64 t_entry, f64 t_closed_total, f64 t_update_main)
Definition: threads.c:118
void vlib_worker_loop(vlib_main_t *vm)
Definition: main.c:2036
void(**volatile barrier_perf_callbacks)(struct vlib_main_t *, u64 t, int leave)
Definition: main.h:306
vlib_thread_main_t * vlib_get_thread_main_not_inline(void)
Definition: threads.c:2014
#define vec_dup_aligned(V, A)
Return copy of vector (no header, alignment specified).
Definition: vec.h:438
f64 barrier_no_close_before
Definition: main.h:302
static clib_error_t * start_workers(vlib_main_t *vm)
Definition: threads.c:677
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
void vlib_rpc_call_main_thread(void *callback, u8 *args, u32 arg_size)
Definition: threads.c:1945
vlib_node_main_t node_main
Definition: main.h:188
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: in2out_ed.c:1581
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
vlib_next_frame_t * next_frames
Definition: node.h:705
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
Definition: vec.h:1055
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:297
__clib_export u32 elog_string(elog_main_t *em, char *fmt,...)
add a string to the event-log string table
Definition: elog.c:582
__clib_export clib_mem_main_t clib_mem_main
Definition: mem.c:22
volatile u64 head_hint
Definition: threads.h:141
#define VLIB_THREAD_STACK_SIZE
Definition: threads.h:67
f64 barrier_epoch
Definition: main.h:299
vlib_frame_size_t * frame_sizes
Definition: node.h:741
#define hash_get_mem(h, key)
Definition: hash.h:269
unformat_function_t unformat_memory_size
Definition: format.h:295
static void worker_thread_node_runtime_update_internal(void)
Definition: threads.c:998
static void * clib_mem_alloc_aligned(uword size, uword align)
Definition: mem.h:261
volatile u32 * workers_at_barrier
Definition: threads.h:92
uword clib_calljmp(uword(*func)(uword func_arg), uword func_arg, void *stack)
static uword * clib_sysfs_list_to_bitmap(char *filename)
Definition: threads.c:177
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1561
#define clib_call_callbacks(h,...)
call the specified callback set
Definition: callback.h:67
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
static f64 vlib_time_now_ticks(vlib_main_t *vm, u64 n)
Definition: main.h:347
uword clib_bitmap_t
Definition: bitmap.h:50
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:85
#define vec_foreach(var, vec)
Vector iterator.
__clib_export clib_error_t * clib_sysfs_read(char *file_name, char *fmt,...)
Definition: sysfs.c:50
void * vlib_worker_thread_bootstrap_fn(void *arg)
Definition: threads.c:574
#define SYS_gettid
u8 count
Definition: dhcp.api:208
#define CLIB_MEMORY_BARRIER()
Definition: clib.h:133
u32 node_runtime_index
Definition: node.h:409
uword * cpu_socket_bitmap
Definition: threads.h:330
#define foreach_sched_policy
Definition: threads.h:265
void * per_numa_mheaps[CLIB_MAX_NUMAS]
Definition: mem.h:143
vlib_thread_registration_t ** registrations
Definition: threads.h:293
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:302
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:556
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
u8 ** vlib_thread_stacks
Definition: main.c:658
pthread_t thread_id
Definition: threads.h:115
vlib_thread_registration_t * registration
Definition: threads.h:103
__clib_export word elog_track_register(elog_main_t *em, elog_track_t *t)
register an event track
Definition: elog.c:198
volatile u32 worker_thread_release
Definition: threads.h:336
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
void vlib_worker_thread_fork_fixup(vlib_fork_fixup_t which)
Definition: threads.c:1392
__clib_export int clib_mem_set_default_numa_affinity()
Definition: mem.c:670
clib_random_buffer_t random_buffer
Definition: main.h:244
u8 runtime_data_bytes
Definition: node.h:312
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
#define FRAME_QUEUE_MAX_NELTS
Definition: node.h:770
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
#define VLIB_FRAME_FREE_AFTER_DISPATCH
Definition: node.h:432
clib_error_t * vlib_thread_init(vlib_main_t *vm)
Definition: threads.c:207