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