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