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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include <vppinfra/format.h>
20 #include <vlib/vlib.h>
22 #include <vlib/threads.h>
23 #include <vlib/unix/cj.h>
25 DECLARE_CJ_GLOBAL_LOG;
27 #define FRAME_QUEUE_NELTS 64
35 vlib_worker_thread_t *vlib_worker_threads;
36 vlib_thread_main_t vlib_thread_main;
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.
45 #ifdef BARRIER_TRACING
47 * Output of barrier tracing can be to syslog or elog as suits
49 #ifdef BARRIER_TRACING_ELOG
51 elog_id_for_msg_name (const char *msg_name)
58 h = hash_create_string (0, sizeof (uword));
60 p = hash_get_mem (h, msg_name);
63 r = elog_string (&vlib_global_main.elog_main, "%s", msg_name);
65 name_copy = format (0, "%s%c", msg_name, 0);
67 hash_set_mem (h, name_copy, r);
73 * elog Barrier trace functions, which are nulled out if BARRIER_TRACING isn't
78 barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
81 ELOG_TYPE_DECLARE (e) =
83 .format = "barrier <%d#%s(O:%dus:%dus)(%dus)",
84 .format_args = "i4T4i4i4i4",
89 u32 count, caller, t_entry, t_open, t_closed;
92 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
93 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
94 ed->caller = elog_id_for_msg_name (vlib_worker_threads[0].barrier_caller);
95 ed->t_entry = (int) (1000000.0 * t_entry);
96 ed->t_open = (int) (1000000.0 * t_open);
97 ed->t_closed = (int) (1000000.0 * t_closed);
101 barrier_trace_sync_rec (f64 t_entry)
104 ELOG_TYPE_DECLARE (e) =
106 .format = "barrier <%d(%dus)%s",
107 .format_args = "i4i4T4",
112 u32 depth, t_entry, caller;
115 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
116 ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
117 ed->t_entry = (int) (1000000.0 * t_entry);
118 ed->caller = elog_id_for_msg_name (vlib_worker_threads[0].barrier_caller);
122 barrier_trace_release_rec (f64 t_entry)
125 ELOG_TYPE_DECLARE (e) =
127 .format = "barrier (%dus)%d>",
128 .format_args = "i4i4",
136 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
137 ed->t_entry = (int) (1000000.0 * t_entry);
138 ed->depth = (int) vlib_worker_threads[0].recursion_level;
142 barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
145 ELOG_TYPE_DECLARE (e) =
147 .format = "barrier (%dus){%d}(C:%dus)#%d>",
148 .format_args = "i4i4i4i4",
153 u32 t_entry, t_update_main, t_closed_total, count;
156 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
157 ed->t_entry = (int) (1000000.0 * t_entry);
158 ed->t_update_main = (int) (1000000.0 * t_update_main);
159 ed->t_closed_total = (int) (1000000.0 * t_closed_total);
160 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
162 /* Reset context for next trace */
163 vlib_worker_threads[0].barrier_context = NULL;
166 char barrier_trace[65536];
167 char *btp = barrier_trace;
170 * syslog Barrier trace functions, which are nulled out if BARRIER_TRACING
176 barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
178 btp += sprintf (btp, "<%u#%s",
179 (unsigned int) vlib_worker_threads[0].barrier_sync_count,
180 vlib_worker_threads[0].barrier_caller);
182 if (vlib_worker_threads[0].barrier_context)
184 btp += sprintf (btp, "[%s]", vlib_worker_threads[0].barrier_context);
188 btp += sprintf (btp, "(O:%dus:%dus)(%dus):",
189 (int) (1000000.0 * t_entry),
190 (int) (1000000.0 * t_open), (int) (1000000.0 * t_closed));
195 barrier_trace_sync_rec (f64 t_entry)
197 btp += sprintf (btp, "<%u(%dus)%s:",
198 (int) vlib_worker_threads[0].recursion_level - 1,
199 (int) (1000000.0 * t_entry),
200 vlib_worker_threads[0].barrier_caller);
204 barrier_trace_release_rec (f64 t_entry)
206 btp += sprintf (btp, ":(%dus)%u>", (int) (1000000.0 * t_entry),
207 (int) vlib_worker_threads[0].recursion_level);
211 barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
214 btp += sprintf (btp, ":(%dus)", (int) (1000000.0 * t_entry));
215 if (t_update_main > 0)
217 btp += sprintf (btp, "{%dus}", (int) (1000000.0 * t_update_main));
220 btp += sprintf (btp, "(C:%dus)#%u>",
221 (int) (1000000.0 * t_closed_total),
222 (int) vlib_worker_threads[0].barrier_sync_count);
224 /* Dump buffer to syslog, and reset for next trace */
225 fformat (stderr, "BTRC %s\n", barrier_trace);
227 vlib_worker_threads[0].barrier_context = NULL;
232 /* Null functions for default case where barrier tracing isn't used */
234 barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
239 barrier_trace_sync_rec (f64 t_entry)
244 barrier_trace_release_rec (f64 t_entry)
249 barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
255 os_get_nthreads (void)
259 len = vec_len (vlib_thread_stacks);
267 vlib_set_thread_name (char *name)
269 int pthread_setname_np (pthread_t __target_thread, const char *__name);
271 pthread_t thread = pthread_self ();
275 rv = pthread_setname_np (thread, name);
277 clib_warning ("pthread_setname_np returned %d", rv);
282 sort_registrations_by_no_clone (void *a0, void *a1)
284 vlib_thread_registration_t **tr0 = a0;
285 vlib_thread_registration_t **tr1 = a1;
287 return ((i32) ((*tr0)->no_data_structure_clone)
288 - ((i32) ((*tr1)->no_data_structure_clone)));
292 clib_sysfs_list_to_bitmap (char *filename)
297 fp = fopen (filename, "r");
302 vec_validate (buffer, 256 - 1);
303 if (fgets ((char *) buffer, 256, fp))
306 unformat_init_string (&in, (char *) buffer,
307 strlen ((char *) buffer));
308 if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
309 clib_warning ("unformat_bitmap_list failed");
319 /* Called early in the init sequence */
322 vlib_thread_init (vlib_main_t * vm)
324 vlib_thread_main_t *tm = &vlib_thread_main;
325 vlib_worker_thread_t *w;
326 vlib_thread_registration_t *tr;
327 u32 n_vlib_mains = 1;
332 /* get bitmaps of active cpu cores and sockets */
333 tm->cpu_core_bitmap =
334 clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
335 tm->cpu_socket_bitmap =
336 clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
338 avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
341 for (i = 0; i < tm->skip_cores; i++)
343 uword c = clib_bitmap_first_set (avail_cpu);
345 return clib_error_return (0, "no available cpus to skip");
347 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
350 /* grab cpu for main thread */
351 if (tm->main_lcore == ~0)
353 /* if main-lcore is not set, we try to use lcore 1 */
354 if (clib_bitmap_get (avail_cpu, 1))
357 tm->main_lcore = clib_bitmap_first_set (avail_cpu);
358 if (tm->main_lcore == (u8) ~ 0)
359 return clib_error_return (0, "no available cpus to be used for the"
364 if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
365 return clib_error_return (0, "cpu %u is not available to be used"
366 " for the main thread", tm->main_lcore);
368 avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
370 /* assume that there is socket 0 only if there is no data from sysfs */
371 if (!tm->cpu_socket_bitmap)
372 tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
374 /* pin main thread to main_lcore */
375 if (tm->cb.vlib_thread_set_lcore_cb)
377 tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
383 CPU_SET (tm->main_lcore, &cpuset);
384 pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
387 /* as many threads as stacks... */
388 vec_validate_aligned (vlib_worker_threads, vec_len (vlib_thread_stacks) - 1,
389 CLIB_CACHE_LINE_BYTES);
391 /* Preallocate thread 0 */
392 _vec_len (vlib_worker_threads) = 1;
393 w = vlib_worker_threads;
394 w->thread_mheap = clib_mem_get_heap ();
395 w->thread_stack = vlib_thread_stacks[0];
396 w->lcore_id = tm->main_lcore;
397 w->lwp = syscall (SYS_gettid);
398 w->thread_id = pthread_self ();
399 tm->n_vlib_mains = 1;
401 if (tm->sched_policy != ~0)
403 struct sched_param sched_param;
404 if (!sched_getparam (w->lwp, &sched_param))
406 if (tm->sched_priority != ~0)
407 sched_param.sched_priority = tm->sched_priority;
408 sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
412 /* assign threads to cores and set n_vlib_mains */
417 vec_add1 (tm->registrations, tr);
421 vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
423 for (i = 0; i < vec_len (tm->registrations); i++)
426 tr = tm->registrations[i];
427 tr->first_index = first_index;
428 first_index += tr->count;
429 n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
431 /* construct coremask */
432 if (tr->use_pthreads || !tr->count)
439 clib_bitmap_foreach (c, tr->coremask, ({
440 if (clib_bitmap_get(avail_cpu, c) == 0)
441 return clib_error_return (0, "cpu %u is not available to be used"
442 " for the '%s' thread",c, tr->name);
444 avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
451 for (j = 0; j < tr->count; j++)
453 uword c = clib_bitmap_first_set (avail_cpu);
455 return clib_error_return (0,
456 "no available cpus to be used for"
457 " the '%s' thread", tr->name);
459 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
460 tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
465 clib_bitmap_free (avail_cpu);
467 tm->n_vlib_mains = n_vlib_mains;
469 vec_validate_aligned (vlib_worker_threads, first_index - 1,
470 CLIB_CACHE_LINE_BYTES);
476 vlib_frame_queue_alloc (int nelts)
478 vlib_frame_queue_t *fq;
480 fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
481 memset (fq, 0, sizeof (*fq));
483 fq->vector_threshold = 128; // packets
484 vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
488 if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
489 fformat (stderr, "WARNING: fq->tail unaligned\n");
490 if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
491 fformat (stderr, "WARNING: fq->head unaligned\n");
492 if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
493 fformat (stderr, "WARNING: fq->elts unaligned\n");
495 if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
496 fformat (stderr, "WARNING: fq->elts[0] size %d\n",
497 sizeof (fq->elts[0]));
498 if (nelts & (nelts - 1))
500 fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
508 void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
510 vl_msg_api_handler_no_free (void *v)
514 /* Turned off, save as reference material... */
517 vlib_frame_queue_dequeue_internal (int thread_id,
518 vlib_main_t * vm, vlib_node_main_t * nm)
520 vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
521 vlib_frame_queue_elt_t *elt;
523 vlib_pending_frame_t *p;
524 vlib_node_runtime_t *r;
525 u32 node_runtime_index;
530 ASSERT (vm == vlib_mains[thread_id]);
534 if (fq->head == fq->tail)
537 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
542 before = clib_cpu_time_now ();
545 node_runtime_index = elt->node_runtime_index;
546 msg_type = elt->msg_type;
550 case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
551 vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
552 /* note fallthrough... */
553 case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
554 r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
556 vlib_frame_free (vm, r, f);
558 case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
559 vec_add2 (vm->node_main.pending_frames, p, 1);
560 f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
561 p->node_runtime_index = elt->node_runtime_index;
562 p->frame_index = vlib_frame_index (vm, f);
563 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
564 fq->dequeue_vectors += (u64) f->n_vectors;
566 case VLIB_FRAME_QUEUE_ELT_API_MSG:
567 vl_msg_api_handler_no_free (f);
570 clib_warning ("bogus frame queue message, type %d", msg_type);
575 fq->dequeue_ticks += clib_cpu_time_now () - before;
576 CLIB_MEMORY_BARRIER ();
585 vlib_frame_queue_dequeue (int thread_id,
586 vlib_main_t * vm, vlib_node_main_t * nm)
588 return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
592 vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
593 u32 frame_queue_index, vlib_frame_t * frame,
594 vlib_frame_queue_msg_type_t type)
596 vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
597 vlib_frame_queue_elt_t *elt;
600 u64 before = clib_cpu_time_now ();
604 new_tail = __sync_add_and_fetch (&fq->tail, 1);
606 /* Wait until a ring slot is available */
607 while (new_tail >= fq->head + fq->nelts)
609 f64 b4 = vlib_time_now_ticks (vm, before);
610 vlib_worker_thread_barrier_check (vm, b4);
611 /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
612 // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
615 elt = fq->elts + (new_tail & (fq->nelts - 1));
617 /* this would be very bad... */
622 /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
623 save_count = frame->n_vectors;
626 elt->node_runtime_index = node_runtime_index;
627 elt->msg_type = type;
628 CLIB_MEMORY_BARRIER ();
635 /* To be called by vlib worker threads upon startup */
637 vlib_worker_thread_init (vlib_worker_thread_t * w)
639 vlib_thread_main_t *tm = vlib_get_thread_main ();
642 * Note: disabling signals in worker threads as follows
643 * prevents the api post-mortem dump scheme from working
647 * pthread_sigmask (SIG_SETMASK, &s, 0);
651 clib_mem_set_heap (w->thread_mheap);
653 if (vec_len (tm->thread_prefix) && w->registration->short_name)
655 w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
656 w->registration->short_name, w->instance_id, '\0');
657 vlib_set_thread_name ((char *) w->name);
660 if (!w->registration->use_pthreads)
663 /* Initial barrier sync, for both worker and i/o threads */
664 clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, 1);
666 while (*vlib_worker_threads->wait_at_barrier)
669 clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, -1);
674 vlib_worker_thread_bootstrap_fn (void *arg)
677 vlib_worker_thread_t *w = arg;
679 w->lwp = syscall (SYS_gettid);
680 w->thread_id = pthread_self ();
682 __os_thread_index = w - vlib_worker_threads;
684 rv = (void *) clib_calljmp
685 ((uword (*)(uword)) w->thread_function,
686 (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
687 /* NOTREACHED, we hope */
691 static clib_error_t *
692 vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned lcore_id)
694 vlib_thread_main_t *tm = &vlib_thread_main;
695 void *(*fp_arg) (void *) = fp;
697 w->lcore_id = lcore_id;
698 if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
699 return tm->cb.vlib_launch_thread_cb (fp, (void *) w, lcore_id);
705 CPU_SET (lcore_id, &cpuset);
707 if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
708 return clib_error_return_unix (0, "pthread_create");
710 if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
711 return clib_error_return_unix (0, "pthread_setaffinity_np");
717 static clib_error_t *
718 start_workers (vlib_main_t * vm)
721 vlib_worker_thread_t *w;
722 vlib_main_t *vm_clone;
724 vlib_thread_main_t *tm = &vlib_thread_main;
725 vlib_thread_registration_t *tr;
726 vlib_node_runtime_t *rt;
727 u32 n_vlib_mains = tm->n_vlib_mains;
728 u32 worker_thread_index;
729 u8 *main_heap = clib_mem_get_per_cpu_heap ();
731 vec_reset_length (vlib_worker_threads);
733 /* Set up the main thread */
734 vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
735 w->elog_track.name = "main thread";
736 elog_track_register (&vm->elog_main, &w->elog_track);
738 if (vec_len (tm->thread_prefix))
740 w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
741 vlib_set_thread_name ((char *) w->name);
745 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
746 vm->elog_main.lock[0] = 0;
748 if (n_vlib_mains > 1)
750 /* Replace hand-crafted length-1 vector with a real vector */
753 vec_validate_aligned (vlib_mains, tm->n_vlib_mains - 1,
754 CLIB_CACHE_LINE_BYTES);
755 _vec_len (vlib_mains) = 0;
756 vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
758 vlib_worker_threads->wait_at_barrier =
759 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
760 vlib_worker_threads->workers_at_barrier =
761 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
763 vlib_worker_threads->node_reforks_required =
764 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
766 /* Ask for an initial barrier sync */
767 *vlib_worker_threads->workers_at_barrier = 0;
768 *vlib_worker_threads->wait_at_barrier = 1;
770 /* Without update or refork */
771 *vlib_worker_threads->node_reforks_required = 0;
772 vm->need_vlib_worker_thread_node_runtime_update = 0;
775 vm->barrier_epoch = 0;
776 vm->barrier_no_close_before = 0;
778 worker_thread_index = 1;
780 for (i = 0; i < vec_len (tm->registrations); i++)
782 vlib_node_main_t *nm, *nm_clone;
783 vlib_buffer_free_list_t *fl_clone, *fl_orig;
784 vlib_buffer_free_list_t *orig_freelist_pool;
787 tr = tm->registrations[i];
792 for (k = 0; k < tr->count; k++)
796 vec_add2 (vlib_worker_threads, w, 1);
797 /* Currently unused, may not really work */
800 #if USE_DLMALLOC == 0
802 mheap_alloc (0 /* use VM */ , tr->mheap_size);
804 w->thread_mheap = create_mspace (tr->mheap_size,
809 w->thread_mheap = main_heap;
812 vlib_thread_stack_init (w - vlib_worker_threads);
813 w->thread_function = tr->function;
814 w->thread_function_arg = w;
816 w->registration = tr;
819 (char *) format (0, "%s %d", tr->name, k + 1);
820 vec_add1 (w->elog_track.name, 0);
821 elog_track_register (&vm->elog_main, &w->elog_track);
823 if (tr->no_data_structure_clone)
826 /* Fork vlib_global_main et al. Look for bugs here */
827 oldheap = clib_mem_set_heap (w->thread_mheap);
829 vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
830 CLIB_CACHE_LINE_BYTES);
831 clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
833 vm_clone->thread_index = worker_thread_index;
834 vm_clone->heap_base = w->thread_mheap;
835 vm_clone->heap_aligned_base = (void *)
836 (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
837 vm_clone->init_functions_called =
838 hash_create (0, /* value bytes */ 0);
839 vm_clone->pending_rpc_requests = 0;
840 vec_validate (vm_clone->pending_rpc_requests, 0);
841 _vec_len (vm_clone->pending_rpc_requests) = 0;
842 memset (&vm_clone->random_buffer, 0,
843 sizeof (vm_clone->random_buffer));
845 nm = &vlib_mains[0]->node_main;
846 nm_clone = &vm_clone->node_main;
847 /* fork next frames array, preserving node runtime indices */
848 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
849 CLIB_CACHE_LINE_BYTES);
850 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
852 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
853 u32 save_node_runtime_index;
856 save_node_runtime_index = nf->node_runtime_index;
857 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
858 vlib_next_frame_init (nf);
859 nf->node_runtime_index = save_node_runtime_index;
860 nf->flags = save_flags;
863 /* fork the frame dispatch queue */
864 nm_clone->pending_frames = 0;
865 vec_validate (nm_clone->pending_frames, 10); /* $$$$$?????? */
866 _vec_len (nm_clone->pending_frames) = 0;
871 /* Allocate all nodes in single block for speed */
872 n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
874 for (j = 0; j < vec_len (nm->nodes); j++)
876 clib_memcpy (n, nm->nodes[j], sizeof (*n));
877 /* none of the copied nodes have enqueue rights given out */
878 n->owner_node_index = VLIB_INVALID_NODE_INDEX;
879 memset (&n->stats_total, 0, sizeof (n->stats_total));
880 memset (&n->stats_last_clear, 0,
881 sizeof (n->stats_last_clear));
882 vec_add1 (nm_clone->nodes, n);
885 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
886 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
887 CLIB_CACHE_LINE_BYTES);
889 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
891 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
892 rt->thread_index = vm_clone->thread_index;
893 /* copy initial runtime_data from node */
894 if (n->runtime_data && n->runtime_data_bytes > 0)
895 clib_memcpy (rt->runtime_data, n->runtime_data,
896 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
897 n->runtime_data_bytes));
900 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
901 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
902 CLIB_CACHE_LINE_BYTES);
903 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
905 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
906 rt->thread_index = vm_clone->thread_index;
907 /* copy initial runtime_data from node */
908 if (n->runtime_data && n->runtime_data_bytes > 0)
909 clib_memcpy (rt->runtime_data, n->runtime_data,
910 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
911 n->runtime_data_bytes));
914 nm_clone->processes = vec_dup_aligned (nm->processes,
915 CLIB_CACHE_LINE_BYTES);
917 /* zap the (per worker) frame freelists, etc */
918 nm_clone->frame_sizes = 0;
919 nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
921 /* Packet trace buffers are guaranteed to be empty, nothing to do here */
923 clib_mem_set_heap (oldheap);
924 vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
926 vm_clone->error_main.counters = vec_dup_aligned
927 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
928 vm_clone->error_main.counters_last_clear = vec_dup_aligned
929 (vlib_mains[0]->error_main.counters_last_clear,
930 CLIB_CACHE_LINE_BYTES);
932 /* Fork the vlib_buffer_main_t free lists, etc. */
933 orig_freelist_pool = vm_clone->buffer_free_list_pool;
934 vm_clone->buffer_free_list_pool = 0;
937 pool_foreach (fl_orig, orig_freelist_pool,
939 pool_get_aligned (vm_clone->buffer_free_list_pool,
940 fl_clone, CLIB_CACHE_LINE_BYTES);
941 ASSERT (fl_orig - orig_freelist_pool
942 == fl_clone - vm_clone->buffer_free_list_pool);
944 fl_clone[0] = fl_orig[0];
945 fl_clone->buffers = 0;
946 fl_clone->n_alloc = 0;
950 worker_thread_index++;
956 /* only have non-data-structure copy threads to create... */
957 for (i = 0; i < vec_len (tm->registrations); i++)
959 tr = tm->registrations[i];
961 for (j = 0; j < tr->count; j++)
963 vec_add2 (vlib_worker_threads, w, 1);
966 #if USE_DLMALLOC == 0
968 mheap_alloc (0 /* use VM */ , tr->mheap_size);
971 create_mspace (tr->mheap_size, 0 /* locked */ );
975 w->thread_mheap = main_heap;
977 vlib_thread_stack_init (w - vlib_worker_threads);
978 w->thread_function = tr->function;
979 w->thread_function_arg = w;
982 (char *) format (0, "%s %d", tr->name, j + 1);
983 w->registration = tr;
984 vec_add1 (w->elog_track.name, 0);
985 elog_track_register (&vm->elog_main, &w->elog_track);
990 worker_thread_index = 1;
992 for (i = 0; i < vec_len (tm->registrations); i++)
997 tr = tm->registrations[i];
999 if (tr->use_pthreads || tm->use_pthreads)
1001 for (j = 0; j < tr->count; j++)
1003 w = vlib_worker_threads + worker_thread_index++;
1004 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
1007 clib_error_report (err);
1014 clib_bitmap_foreach (c, tr->coremask, ({
1015 w = vlib_worker_threads + worker_thread_index++;
1016 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
1019 clib_error_report (err);
1024 vlib_worker_thread_barrier_sync (vm);
1025 vlib_worker_thread_barrier_release (vm);
1029 VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
1033 worker_thread_node_runtime_update_internal (void)
1037 vlib_node_main_t *nm, *nm_clone;
1038 vlib_main_t *vm_clone;
1039 vlib_node_runtime_t *rt;
1041 vlib_node_runtime_sync_stats (vlib_main_t * vm,
1042 vlib_node_runtime_t * r,
1044 uword n_vectors, uword n_clocks);
1046 ASSERT (vlib_get_thread_index () == 0);
1049 nm = &vm->node_main;
1051 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1054 * Scrape all runtime stats, so we don't lose node runtime(s) with
1055 * pending counts, or throw away worker / io thread counts.
1057 for (j = 0; j < vec_len (nm->nodes); j++)
1061 vlib_node_sync_stats (vm, n);
1064 for (i = 1; i < vec_len (vlib_mains); i++)
1068 vm_clone = vlib_mains[i];
1069 nm_clone = &vm_clone->node_main;
1071 for (j = 0; j < vec_len (nm_clone->nodes); j++)
1073 n = nm_clone->nodes[j];
1075 rt = vlib_node_get_runtime (vm_clone, n->index);
1076 vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1080 /* Per-worker clone rebuilds are now done on each thread */
1085 vlib_worker_thread_node_refork (void)
1087 vlib_main_t *vm, *vm_clone;
1088 vlib_node_main_t *nm, *nm_clone;
1089 vlib_node_t **old_nodes_clone;
1090 vlib_node_runtime_t *rt, *old_rt;
1092 vlib_node_t *new_n_clone;
1097 nm = &vm->node_main;
1098 vm_clone = vlib_get_main ();
1099 nm_clone = &vm_clone->node_main;
1101 /* Re-clone error heap */
1102 u64 *old_counters = vm_clone->error_main.counters;
1103 u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1105 clib_memcpy (&vm_clone->error_main, &vm->error_main,
1106 sizeof (vm->error_main));
1107 j = vec_len (vm->error_main.counters) - 1;
1108 vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
1109 vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
1110 vm_clone->error_main.counters = old_counters;
1111 vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1113 nm_clone = &vm_clone->node_main;
1114 vec_free (nm_clone->next_frames);
1115 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1116 CLIB_CACHE_LINE_BYTES);
1118 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
1120 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1121 u32 save_node_runtime_index;
1124 save_node_runtime_index = nf->node_runtime_index;
1125 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1126 vlib_next_frame_init (nf);
1127 nf->node_runtime_index = save_node_runtime_index;
1128 nf->flags = save_flags;
1131 old_nodes_clone = nm_clone->nodes;
1132 nm_clone->nodes = 0;
1136 /* Allocate all nodes in single block for speed */
1138 clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1139 for (j = 0; j < vec_len (nm->nodes); j++)
1141 vlib_node_t *old_n_clone;
1144 new_n = nm->nodes[j];
1145 old_n_clone = old_nodes_clone[j];
1147 clib_memcpy (new_n_clone, new_n, sizeof (*new_n));
1148 /* none of the copied nodes have enqueue rights given out */
1149 new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1151 if (j >= vec_len (old_nodes_clone))
1153 /* new node, set to zero */
1154 memset (&new_n_clone->stats_total, 0,
1155 sizeof (new_n_clone->stats_total));
1156 memset (&new_n_clone->stats_last_clear, 0,
1157 sizeof (new_n_clone->stats_last_clear));
1161 /* Copy stats if the old data is valid */
1162 clib_memcpy (&new_n_clone->stats_total,
1163 &old_n_clone->stats_total,
1164 sizeof (new_n_clone->stats_total));
1165 clib_memcpy (&new_n_clone->stats_last_clear,
1166 &old_n_clone->stats_last_clear,
1167 sizeof (new_n_clone->stats_last_clear));
1169 /* keep previous node state */
1170 new_n_clone->state = old_n_clone->state;
1172 vec_add1 (nm_clone->nodes, new_n_clone);
1175 /* Free the old node clones */
1176 clib_mem_free (old_nodes_clone[0]);
1178 vec_free (old_nodes_clone);
1181 /* re-clone internal nodes */
1182 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1183 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
1184 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1185 CLIB_CACHE_LINE_BYTES);
1187 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1189 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1190 rt->thread_index = vm_clone->thread_index;
1191 /* copy runtime_data, will be overwritten later for existing rt */
1192 if (n->runtime_data && n->runtime_data_bytes > 0)
1193 clib_memcpy (rt->runtime_data, n->runtime_data,
1194 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1195 n->runtime_data_bytes));
1198 for (j = 0; j < vec_len (old_rt); j++)
1200 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1201 rt->state = old_rt[j].state;
1202 clib_memcpy (rt->runtime_data, old_rt[j].runtime_data,
1203 VLIB_NODE_RUNTIME_DATA_SIZE);
1208 /* re-clone input nodes */
1209 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1210 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
1211 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1212 CLIB_CACHE_LINE_BYTES);
1214 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1216 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1217 rt->thread_index = vm_clone->thread_index;
1218 /* copy runtime_data, will be overwritten later for existing rt */
1219 if (n->runtime_data && n->runtime_data_bytes > 0)
1220 clib_memcpy (rt->runtime_data, n->runtime_data,
1221 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1222 n->runtime_data_bytes));
1225 for (j = 0; j < vec_len (old_rt); j++)
1227 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1228 rt->state = old_rt[j].state;
1229 clib_memcpy (rt->runtime_data, old_rt[j].runtime_data,
1230 VLIB_NODE_RUNTIME_DATA_SIZE);
1235 nm_clone->processes = vec_dup_aligned (nm->processes,
1236 CLIB_CACHE_LINE_BYTES);
1240 vlib_worker_thread_node_runtime_update (void)
1243 * Make a note that we need to do a node runtime update
1244 * prior to releasing the barrier.
1246 vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
1250 unformat_sched_policy (unformat_input_t * input, va_list * args)
1252 u32 *r = va_arg (*args, u32 *);
1255 #define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1256 foreach_sched_policy
1263 static clib_error_t *
1264 cpu_config (vlib_main_t * vm, unformat_input_t * input)
1266 vlib_thread_registration_t *tr;
1268 vlib_thread_main_t *tm = &vlib_thread_main;
1273 tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
1275 tm->n_thread_stacks = 1; /* account for main thread */
1276 tm->sched_policy = ~0;
1277 tm->sched_priority = ~0;
1278 tm->main_lcore = ~0;
1284 hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
1288 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1290 if (unformat (input, "use-pthreads"))
1291 tm->use_pthreads = 1;
1292 else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
1294 else if (unformat (input, "main-core %u", &tm->main_lcore))
1296 else if (unformat (input, "skip-cores %u", &tm->skip_cores))
1298 else if (unformat (input, "coremask-%s %U", &name,
1299 unformat_bitmap_mask, &bitmap) ||
1300 unformat (input, "corelist-%s %U", &name,
1301 unformat_bitmap_list, &bitmap))
1303 p = hash_get_mem (tm->thread_registrations_by_name, name);
1305 return clib_error_return (0, "no such thread type '%s'", name);
1307 tr = (vlib_thread_registration_t *) p[0];
1309 if (tr->use_pthreads)
1310 return clib_error_return (0,
1311 "corelist cannot be set for '%s' threads",
1314 tr->coremask = bitmap;
1315 tr->count = clib_bitmap_count_set_bits (tr->coremask);
1319 (input, "scheduler-policy %U", unformat_sched_policy,
1322 else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
1324 else if (unformat (input, "%s %u", &name, &count))
1326 p = hash_get_mem (tm->thread_registrations_by_name, name);
1328 return clib_error_return (0, "no such thread type 3 '%s'", name);
1330 tr = (vlib_thread_registration_t *) p[0];
1331 if (tr->fixed_count)
1332 return clib_error_return
1333 (0, "number of %s threads not configurable", tr->name);
1340 if (tm->sched_priority != ~0)
1342 if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
1344 u32 prio_max = sched_get_priority_max (tm->sched_policy);
1345 u32 prio_min = sched_get_priority_min (tm->sched_policy);
1346 if (tm->sched_priority > prio_max)
1347 tm->sched_priority = prio_max;
1348 if (tm->sched_priority < prio_min)
1349 tm->sched_priority = prio_min;
1353 return clib_error_return
1355 "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1356 tm->sched_priority);
1361 if (!tm->thread_prefix)
1362 tm->thread_prefix = format (0, "vpp");
1366 tm->n_thread_stacks += tr->count;
1367 tm->n_pthreads += tr->count * tr->use_pthreads;
1368 tm->n_threads += tr->count * (tr->use_pthreads == 0);
1375 VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1377 #if !defined (__x86_64__) && !defined (__i386__) && !defined (__aarch64__) && !defined (__powerpc64__) && !defined(__arm__)
1379 __sync_fetch_and_add_8 (void)
1381 fformat (stderr, "%s called\n", __FUNCTION__);
1386 __sync_add_and_fetch_8 (void)
1388 fformat (stderr, "%s called\n", __FUNCTION__);
1393 void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
1395 vnet_main_fixup (vlib_fork_fixup_t which)
1400 vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1402 vlib_main_t *vm = vlib_get_main ();
1404 if (vlib_mains == 0)
1407 ASSERT (vlib_get_thread_index () == 0);
1408 vlib_worker_thread_barrier_sync (vm);
1412 case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1413 vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1419 vlib_worker_thread_barrier_release (vm);
1423 * Enforce minimum open time to minimize packet loss due to Rx overflow,
1424 * based on a test based heuristic that barrier should be open for at least
1425 * 3 time as long as it is closed (with an upper bound of 1ms because by that
1426 * point it is probably too late to make a difference)
1429 #ifndef BARRIER_MINIMUM_OPEN_LIMIT
1430 #define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1433 #ifndef BARRIER_MINIMUM_OPEN_FACTOR
1434 #define BARRIER_MINIMUM_OPEN_FACTOR 3
1438 vlib_worker_thread_barrier_sync_int (vlib_main_t * vm)
1447 if (vec_len (vlib_mains) < 2)
1450 ASSERT (vlib_get_thread_index () == 0);
1452 count = vec_len (vlib_mains) - 1;
1454 /* Record entry relative to last close */
1455 now = vlib_time_now (vm);
1456 t_entry = now - vm->barrier_epoch;
1458 /* Tolerate recursive calls */
1459 if (++vlib_worker_threads[0].recursion_level > 1)
1461 barrier_trace_sync_rec (t_entry);
1465 vlib_worker_threads[0].barrier_sync_count++;
1467 /* Enforce minimum barrier open time to minimize packet loss */
1468 ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
1469 while ((now = vlib_time_now (vm)) < vm->barrier_no_close_before)
1472 /* Record time of closure */
1473 t_open = now - vm->barrier_epoch;
1474 vm->barrier_epoch = now;
1476 deadline = now + BARRIER_SYNC_TIMEOUT;
1478 *vlib_worker_threads->wait_at_barrier = 1;
1479 while (*vlib_worker_threads->workers_at_barrier != count)
1481 if ((now = vlib_time_now (vm)) > deadline)
1483 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1488 t_closed = now - vm->barrier_epoch;
1490 barrier_trace_sync (t_entry, t_open, t_closed);
1494 void vlib_stat_segment_lock (void) __attribute__ ((weak));
1496 vlib_stat_segment_lock (void)
1500 void vlib_stat_segment_unlock (void) __attribute__ ((weak));
1502 vlib_stat_segment_unlock (void)
1507 vlib_worker_thread_barrier_release (vlib_main_t * vm)
1514 f64 t_update_main = 0.0;
1515 int refork_needed = 0;
1517 if (vec_len (vlib_mains) < 2)
1520 ASSERT (vlib_get_thread_index () == 0);
1523 now = vlib_time_now (vm);
1524 t_entry = now - vm->barrier_epoch;
1526 if (--vlib_worker_threads[0].recursion_level > 0)
1528 barrier_trace_release_rec (t_entry);
1532 /* Update (all) node runtimes before releasing the barrier, if needed */
1533 if (vm->need_vlib_worker_thread_node_runtime_update)
1536 * Lock stat segment here, so we's safe when
1537 * rebuilding the stat segment node clones from the
1540 vlib_stat_segment_lock ();
1542 /* Do stats elements on main thread */
1543 worker_thread_node_runtime_update_internal ();
1544 vm->need_vlib_worker_thread_node_runtime_update = 0;
1546 /* Do per thread rebuilds in parallel */
1548 clib_smp_atomic_add (vlib_worker_threads->node_reforks_required,
1549 (vec_len (vlib_mains) - 1));
1550 now = vlib_time_now (vm);
1551 t_update_main = now - vm->barrier_epoch;
1554 deadline = now + BARRIER_SYNC_TIMEOUT;
1556 *vlib_worker_threads->wait_at_barrier = 0;
1558 while (*vlib_worker_threads->workers_at_barrier > 0)
1560 if ((now = vlib_time_now (vm)) > deadline)
1562 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1567 /* Wait for reforks before continuing */
1570 now = vlib_time_now (vm);
1572 deadline = now + BARRIER_SYNC_TIMEOUT;
1574 while (*vlib_worker_threads->node_reforks_required > 0)
1576 if ((now = vlib_time_now (vm)) > deadline)
1578 fformat (stderr, "%s: worker thread refork deadlock\n",
1583 vlib_stat_segment_unlock ();
1586 t_closed_total = now - vm->barrier_epoch;
1588 minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1590 if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1592 minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1595 vm->barrier_no_close_before = now + minimum_open;
1597 /* Record barrier epoch (used to enforce minimum open time) */
1598 vm->barrier_epoch = now;
1600 barrier_trace_release (t_entry, t_closed_total, t_update_main);
1605 * Check the frame queue to see if any frames are available.
1606 * If so, pull the packets off the frames and put them to
1610 vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
1612 u32 thread_id = vm->thread_index;
1613 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
1614 vlib_frame_queue_elt_t *elt;
1623 ASSERT (vm == vlib_mains[thread_id]);
1625 if (PREDICT_FALSE (fqm->node_index == ~0))
1628 * Gather trace data for frame queues
1630 if (PREDICT_FALSE (fq->trace))
1632 frame_queue_trace_t *fqt;
1633 frame_queue_nelt_counter_t *fqh;
1636 fqt = &fqm->frame_queue_traces[thread_id];
1638 fqt->nelts = fq->nelts;
1639 fqt->head = fq->head;
1640 fqt->head_hint = fq->head_hint;
1641 fqt->tail = fq->tail;
1642 fqt->threshold = fq->vector_threshold;
1643 fqt->n_in_use = fqt->tail - fqt->head;
1644 if (fqt->n_in_use >= fqt->nelts)
1646 // if beyond max then use max
1647 fqt->n_in_use = fqt->nelts - 1;
1650 /* Record the number of elements in use in the histogram */
1651 fqh = &fqm->frame_queue_histogram[thread_id];
1652 fqh->count[fqt->n_in_use]++;
1654 /* Record a snapshot of the elements in use */
1655 for (elix = 0; elix < fqt->nelts; elix++)
1657 elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1658 if (1 || elt->valid)
1660 fqt->n_vectors[elix] = elt->n_vectors;
1668 if (fq->head == fq->tail)
1670 fq->head_hint = fq->head;
1674 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
1678 fq->head_hint = fq->head;
1682 from = elt->buffer_index;
1683 msg_type = elt->msg_type;
1685 ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1686 ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1688 f = vlib_get_frame_to_node (vm, fqm->node_index);
1690 to = vlib_frame_vector_args (f);
1692 n_left_to_node = elt->n_vectors;
1694 while (n_left_to_node >= 4)
1702 n_left_to_node -= 4;
1705 while (n_left_to_node > 0)
1713 vectors += elt->n_vectors;
1714 f->n_vectors = elt->n_vectors;
1715 vlib_put_frame_to_node (vm, fqm->node_index, f);
1719 elt->msg_type = 0xfefefefe;
1720 CLIB_MEMORY_BARRIER ();
1725 * Limit the number of packets pushed into the graph
1727 if (vectors >= fq->vector_threshold)
1729 fq->head_hint = fq->head;
1738 vlib_worker_thread_fn (void *arg)
1740 vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
1741 vlib_thread_main_t *tm = vlib_get_thread_main ();
1742 vlib_main_t *vm = vlib_get_main ();
1745 ASSERT (vm->thread_index == vlib_get_thread_index ());
1747 vlib_worker_thread_init (w);
1748 clib_time_init (&vm->clib_time);
1749 clib_mem_set_heap (w->thread_mheap);
1751 /* Wait until the dpdk init sequence is complete */
1752 while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1753 vlib_worker_thread_barrier_check ();
1755 e = vlib_call_init_exit_functions
1756 (vm, vm->worker_init_function_registrations, 1 /* call_once */ );
1758 clib_error_report (e);
1760 vlib_worker_loop (vm);
1764 VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1767 .function = vlib_worker_thread_fn,
1772 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1774 vlib_thread_main_t *tm = vlib_get_thread_main ();
1775 vlib_frame_queue_main_t *fqm;
1776 vlib_frame_queue_t *fq;
1779 if (frame_queue_nelts == 0)
1780 frame_queue_nelts = FRAME_QUEUE_NELTS;
1782 ASSERT (frame_queue_nelts >= 8);
1784 vec_add2 (tm->frame_queue_mains, fqm, 1);
1786 fqm->node_index = node_index;
1787 fqm->frame_queue_nelts = frame_queue_nelts;
1788 fqm->queue_hi_thresh = frame_queue_nelts - 2;
1790 vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
1791 vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
1792 _vec_len (fqm->vlib_frame_queues) = 0;
1793 for (i = 0; i < tm->n_vlib_mains; i++)
1795 vlib_frame_queue_per_thread_data_t *ptd;
1796 fq = vlib_frame_queue_alloc (frame_queue_nelts);
1797 vec_add1 (fqm->vlib_frame_queues, fq);
1799 ptd = vec_elt_at_index (fqm->per_thread_data, i);
1800 vec_validate (ptd->handoff_queue_elt_by_thread_index,
1801 tm->n_vlib_mains - 1);
1802 vec_validate_init_empty (ptd->congested_handoff_queue_by_thread_index,
1803 tm->n_vlib_mains - 1,
1804 (vlib_frame_queue_t *) (~0));
1807 return (fqm - tm->frame_queue_mains);
1811 vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1813 vlib_thread_main_t *tm = vlib_get_thread_main ();
1815 if (tm->extern_thread_mgmt)
1818 tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1819 tm->extern_thread_mgmt = 1;
1824 vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1827 ASSERT (vlib_get_thread_index () == 0);
1828 vlib_process_signal_event (vlib_get_main (), args->node_index,
1829 args->type_opaque, args->data);
1832 void *rpc_call_main_thread_cb_fn;
1835 vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1837 if (rpc_call_main_thread_cb_fn)
1839 void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1840 (*fp) (callback, args, arg_size);
1843 clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1847 threads_init (vlib_main_t * vm)
1852 VLIB_INIT_FUNCTION (threads_init);
1855 * fd.io coding-style-patch-verification: ON
1858 * eval: (c-set-style "gnu")