blob: ea63653c53cec6950e0fe8053af12874339b1d1d [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 */
Christophe Fontainefef15b42016-04-09 12:38:49 +090015#define _GNU_SOURCE
Christophe Fontainefef15b42016-04-09 12:38:49 +090016
Ed Warnickecb9cada2015-12-08 15:45:58 -070017#include <signal.h>
18#include <math.h>
19#include <vppinfra/format.h>
Dave Barach19718002020-03-11 10:31:36 -040020#include <vppinfra/time_range.h>
Damjan Marion94100532020-11-06 23:25:57 +010021#include <vppinfra/interrupt.h>
Mohsin Kazmi5d64c782018-09-11 20:27:09 +020022#include <vppinfra/linux/sysfs.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070023#include <vlib/vlib.h>
24
25#include <vlib/threads.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Ole Troan233e4682019-05-16 15:01:34 +020027#include <vlib/stat_weak_inlines.h>
28
Dave Barach9b8ffd92016-07-08 08:13:45 -040029u32
30vl (void *p)
Ed Warnickecb9cada2015-12-08 15:45:58 -070031{
32 return vec_len (p);
33}
34
Damjan Marion6a7acc22016-12-19 16:28:36 +010035vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -070036vlib_thread_main_t vlib_thread_main;
37
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010038/*
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
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010045static inline void
46barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
47{
Dave Barach88c6e002018-09-30 15:54:06 -040048 if (!vlib_worker_threads->barrier_elog_enabled)
49 return;
50
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010051 /* *INDENT-OFF* */
52 ELOG_TYPE_DECLARE (e) =
53 {
Dave Barach88c6e002018-09-30 15:54:06 -040054 .format = "bar-trace-%s-#%d",
55 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010056 };
57 /* *INDENT-ON* */
58 struct
59 {
Dave Barach88c6e002018-09-30 15:54:06 -040060 u32 caller, count, t_entry, t_open, t_closed;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010061 } *ed = 0;
62
63 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
64 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
Dave Barachb09f4d02019-07-15 16:00:03 -040065 ed->caller = elog_string (&vlib_global_main.elog_main,
66 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010067 ed->t_entry = (int) (1000000.0 * t_entry);
68 ed->t_open = (int) (1000000.0 * t_open);
69 ed->t_closed = (int) (1000000.0 * t_closed);
70}
71
72static inline void
73barrier_trace_sync_rec (f64 t_entry)
74{
Dave Barach88c6e002018-09-30 15:54:06 -040075 if (!vlib_worker_threads->barrier_elog_enabled)
76 return;
77
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010078 /* *INDENT-OFF* */
79 ELOG_TYPE_DECLARE (e) =
80 {
Dave Barach88c6e002018-09-30 15:54:06 -040081 .format = "bar-syncrec-%s-#%d",
82 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010083 };
84 /* *INDENT-ON* */
85 struct
86 {
Dave Barach88c6e002018-09-30 15:54:06 -040087 u32 caller, depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010088 } *ed = 0;
89
90 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
91 ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
Dave Barachb09f4d02019-07-15 16:00:03 -040092 ed->caller = elog_string (&vlib_global_main.elog_main,
93 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010094}
95
96static inline void
97barrier_trace_release_rec (f64 t_entry)
98{
Dave Barach88c6e002018-09-30 15:54:06 -040099 if (!vlib_worker_threads->barrier_elog_enabled)
100 return;
101
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100102 /* *INDENT-OFF* */
103 ELOG_TYPE_DECLARE (e) =
104 {
Dave Barach88c6e002018-09-30 15:54:06 -0400105 .format = "bar-relrrec-#%d",
106 .format_args = "i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100107 };
108 /* *INDENT-ON* */
109 struct
110 {
Dave Barach88c6e002018-09-30 15:54:06 -0400111 u32 depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100112 } *ed = 0;
113
114 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100115 ed->depth = (int) vlib_worker_threads[0].recursion_level;
116}
117
118static inline void
119barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
120{
Dave Barach88c6e002018-09-30 15:54:06 -0400121 if (!vlib_worker_threads->barrier_elog_enabled)
122 return;
123
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100124 /* *INDENT-OFF* */
125 ELOG_TYPE_DECLARE (e) =
126 {
Dave Barach88c6e002018-09-30 15:54:06 -0400127 .format = "bar-rel-#%d-e%d-u%d-t%d",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100128 .format_args = "i4i4i4i4",
129 };
130 /* *INDENT-ON* */
131 struct
132 {
Dave Barach88c6e002018-09-30 15:54:06 -0400133 u32 count, t_entry, t_update_main, t_closed_total;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100134 } *ed = 0;
135
136 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
137 ed->t_entry = (int) (1000000.0 * t_entry);
138 ed->t_update_main = (int) (1000000.0 * t_update_main);
139 ed->t_closed_total = (int) (1000000.0 * t_closed_total);
140 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
141
142 /* Reset context for next trace */
143 vlib_worker_threads[0].barrier_context = NULL;
144}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100145
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146uword
Damjan Marionf55f9b82017-05-10 21:06:28 +0200147os_get_nthreads (void)
Dave Barach01d86c72016-08-08 15:13:42 -0400148{
Dave Barach2180bac2019-05-10 15:25:10 -0400149 return vec_len (vlib_thread_stacks);
Dave Barach01d86c72016-08-08 15:13:42 -0400150}
151
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152void
153vlib_set_thread_name (char *name)
154{
155 int pthread_setname_np (pthread_t __target_thread, const char *__name);
Dave Barachb2a6e252016-07-27 10:00:58 -0400156 int rv;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400157 pthread_t thread = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
Dave Barach9b8ffd92016-07-08 08:13:45 -0400159 if (thread)
Dave Barachb2a6e252016-07-27 10:00:58 -0400160 {
161 rv = pthread_setname_np (thread, name);
162 if (rv)
Ed Warnicke853e7202016-08-12 11:42:26 -0700163 clib_warning ("pthread_setname_np returned %d", rv);
Dave Barachb2a6e252016-07-27 10:00:58 -0400164 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165}
166
Dave Barach9b8ffd92016-07-08 08:13:45 -0400167static int
168sort_registrations_by_no_clone (void *a0, void *a1)
169{
170 vlib_thread_registration_t **tr0 = a0;
171 vlib_thread_registration_t **tr1 = a1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
Dave Barach9b8ffd92016-07-08 08:13:45 -0400173 return ((i32) ((*tr0)->no_data_structure_clone)
174 - ((i32) ((*tr1)->no_data_structure_clone)));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175}
176
177static uword *
Damjan Marion01914ce2017-09-14 19:04:50 +0200178clib_sysfs_list_to_bitmap (char *filename)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179{
180 FILE *fp;
181 uword *r = 0;
182
183 fp = fopen (filename, "r");
184
185 if (fp != NULL)
186 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400187 u8 *buffer = 0;
188 vec_validate (buffer, 256 - 1);
189 if (fgets ((char *) buffer, 256, fp))
190 {
191 unformat_input_t in;
192 unformat_init_string (&in, (char *) buffer,
193 strlen ((char *) buffer));
Dave Barachb2a6e252016-07-27 10:00:58 -0400194 if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
Ed Warnicke853e7202016-08-12 11:42:26 -0700195 clib_warning ("unformat_bitmap_list failed");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400196 unformat_free (&in);
197 }
198 vec_free (buffer);
199 fclose (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200 }
201 return r;
202}
203
204
205/* Called early in the init sequence */
206
207clib_error_t *
208vlib_thread_init (vlib_main_t * vm)
209{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400210 vlib_thread_main_t *tm = &vlib_thread_main;
211 vlib_worker_thread_t *w;
212 vlib_thread_registration_t *tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 u32 n_vlib_mains = 1;
214 u32 first_index = 1;
215 u32 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216 uword *avail_cpu;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
218 /* get bitmaps of active cpu cores and sockets */
219 tm->cpu_core_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200220 clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 tm->cpu_socket_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200222 clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223
Dave Barach9b8ffd92016-07-08 08:13:45 -0400224 avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
226 /* skip cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400227 for (i = 0; i < tm->skip_cores; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400229 uword c = clib_bitmap_first_set (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 if (c == ~0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400231 return clib_error_return (0, "no available cpus to skip");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
Dave Barach9b8ffd92016-07-08 08:13:45 -0400233 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 }
235
236 /* grab cpu for main thread */
Damjan Marion858151f2018-07-11 10:51:00 +0200237 if (tm->main_lcore == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 {
Damjan Marion858151f2018-07-11 10:51:00 +0200239 /* if main-lcore is not set, we try to use lcore 1 */
240 if (clib_bitmap_get (avail_cpu, 1))
241 tm->main_lcore = 1;
242 else
243 tm->main_lcore = clib_bitmap_first_set (avail_cpu);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400244 if (tm->main_lcore == (u8) ~ 0)
245 return clib_error_return (0, "no available cpus to be used for the"
246 " main thread");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 }
248 else
249 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400250 if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
251 return clib_error_return (0, "cpu %u is not available to be used"
252 " for the main thread", tm->main_lcore);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400254 avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255
256 /* assume that there is socket 0 only if there is no data from sysfs */
257 if (!tm->cpu_socket_bitmap)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400258 tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Christophe Fontainefef15b42016-04-09 12:38:49 +0900260 /* pin main thread to main_lcore */
Damjan Marion878c6092017-01-04 13:19:27 +0100261 if (tm->cb.vlib_thread_set_lcore_cb)
262 {
263 tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
264 }
Damjan Marion858151f2018-07-11 10:51:00 +0200265 else
266 {
267 cpu_set_t cpuset;
268 CPU_ZERO (&cpuset);
269 CPU_SET (tm->main_lcore, &cpuset);
270 pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
271 }
Christophe Fontainefef15b42016-04-09 12:38:49 +0900272
Dave Barach2180bac2019-05-10 15:25:10 -0400273 /* Set up thread 0 */
274 vec_validate_aligned (vlib_worker_threads, 0, CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275 _vec_len (vlib_worker_threads) = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 w = vlib_worker_threads;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400277 w->thread_mheap = clib_mem_get_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 w->thread_stack = vlib_thread_stacks[0];
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200279 w->cpu_id = tm->main_lcore;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400280 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200281 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 tm->n_vlib_mains = 1;
283
Jon Loeligerf617b142020-01-30 18:37:47 -0600284 vlib_get_thread_core_numa (w, w->cpu_id);
285
Pavel Kotucek1e765832016-09-23 08:54:14 +0200286 if (tm->sched_policy != ~0)
287 {
288 struct sched_param sched_param;
289 if (!sched_getparam (w->lwp, &sched_param))
290 {
291 if (tm->sched_priority != ~0)
292 sched_param.sched_priority = tm->sched_priority;
293 sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
294 }
295 }
296
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 /* assign threads to cores and set n_vlib_mains */
298 tr = tm->next;
299
300 while (tr)
301 {
302 vec_add1 (tm->registrations, tr);
303 tr = tr->next;
304 }
305
Dave Barach9b8ffd92016-07-08 08:13:45 -0400306 vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
308 for (i = 0; i < vec_len (tm->registrations); i++)
309 {
310 int j;
311 tr = tm->registrations[i];
312 tr->first_index = first_index;
313 first_index += tr->count;
314 n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
315
316 /* construct coremask */
317 if (tr->use_pthreads || !tr->count)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400318 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
320 if (tr->coremask)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321 {
322 uword c;
323 /* *INDENT-OFF* */
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100324 clib_bitmap_foreach (c, tr->coremask) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 if (clib_bitmap_get(avail_cpu, c) == 0)
326 return clib_error_return (0, "cpu %u is not available to be used"
327 " for the '%s' thread",c, tr->name);
328
329 avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100330 }
Dave Barach2180bac2019-05-10 15:25:10 -0400331 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 {
335 for (j = 0; j < tr->count; j++)
336 {
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300337 /* Do not use CPU 0 by default - leave it to the host and IRQs */
338 uword avail_c0 = clib_bitmap_get (avail_cpu, 0);
339 avail_cpu = clib_bitmap_set (avail_cpu, 0, 0);
340
Dave Barach9b8ffd92016-07-08 08:13:45 -0400341 uword c = clib_bitmap_first_set (avail_cpu);
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300342 /* Use CPU 0 as a last resort */
343 if (c == ~0 && avail_c0)
344 {
345 c = 0;
346 avail_c0 = 0;
347 }
348
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349 if (c == ~0)
350 return clib_error_return (0,
351 "no available cpus to be used for"
352 " the '%s' thread", tr->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300354 avail_cpu = clib_bitmap_set (avail_cpu, 0, avail_c0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400355 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
356 tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
357 }
358 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 }
360
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361 clib_bitmap_free (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362
363 tm->n_vlib_mains = n_vlib_mains;
364
Dave Barach2180bac2019-05-10 15:25:10 -0400365 /*
366 * Allocate the remaining worker threads, and thread stack vector slots
367 * from now on, calls to os_get_nthreads() will return the correct
368 * answer.
369 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400370 vec_validate_aligned (vlib_worker_threads, first_index - 1,
371 CLIB_CACHE_LINE_BYTES);
Dave Barach2180bac2019-05-10 15:25:10 -0400372 vec_validate (vlib_thread_stacks, vec_len (vlib_worker_threads) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 return 0;
374}
375
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376vlib_frame_queue_t *
377vlib_frame_queue_alloc (int nelts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379 vlib_frame_queue_t *fq;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380
Dave Barach9b8ffd92016-07-08 08:13:45 -0400381 fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400382 clib_memset (fq, 0, sizeof (*fq));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 fq->nelts = nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 fq->vector_threshold = 128; // packets
385 vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
387 if (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400388 {
389 if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
390 fformat (stderr, "WARNING: fq->tail unaligned\n");
391 if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
392 fformat (stderr, "WARNING: fq->head unaligned\n");
393 if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
394 fformat (stderr, "WARNING: fq->elts unaligned\n");
395
396 if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
397 fformat (stderr, "WARNING: fq->elts[0] size %d\n",
398 sizeof (fq->elts[0]));
399 if (nelts & (nelts - 1))
400 {
401 fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
402 abort ();
403 }
404 }
405
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 return (fq);
407}
408
409void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400410void
411vl_msg_api_handler_no_free (void *v)
412{
413}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
415/* Turned off, save as reference material... */
416#if 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400417static inline int
418vlib_frame_queue_dequeue_internal (int thread_id,
419 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420{
421 vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
422 vlib_frame_queue_elt_t *elt;
423 vlib_frame_t *f;
424 vlib_pending_frame_t *p;
425 vlib_node_runtime_t *r;
426 u32 node_runtime_index;
427 int msg_type;
428 u64 before;
429 int processed = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400430
431 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432
433 while (1)
434 {
435 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400436 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
Dave Barach9b8ffd92016-07-08 08:13:45 -0400438 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
440 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400441 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442
Dave Barach9b8ffd92016-07-08 08:13:45 -0400443 before = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444
445 f = elt->frame;
446 node_runtime_index = elt->node_runtime_index;
447 msg_type = elt->msg_type;
448
449 switch (msg_type)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400450 {
451 case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
452 vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
453 /* note fallthrough... */
454 case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
455 r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
456 node_runtime_index);
457 vlib_frame_free (vm, r, f);
458 break;
459 case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
460 vec_add2 (vm->node_main.pending_frames, p, 1);
461 f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
462 p->node_runtime_index = elt->node_runtime_index;
463 p->frame_index = vlib_frame_index (vm, f);
464 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
465 fq->dequeue_vectors += (u64) f->n_vectors;
466 break;
467 case VLIB_FRAME_QUEUE_ELT_API_MSG:
468 vl_msg_api_handler_no_free (f);
469 break;
470 default:
471 clib_warning ("bogus frame queue message, type %d", msg_type);
472 break;
473 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474 elt->valid = 0;
475 fq->dequeues++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400476 fq->dequeue_ticks += clib_cpu_time_now () - before;
477 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478 fq->head++;
479 processed++;
480 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400481 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482 return processed;
483}
484
Dave Barach9b8ffd92016-07-08 08:13:45 -0400485int
486vlib_frame_queue_dequeue (int thread_id,
487 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488{
489 return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
490}
491
Dave Barach9b8ffd92016-07-08 08:13:45 -0400492int
493vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
494 u32 frame_queue_index, vlib_frame_t * frame,
495 vlib_frame_queue_msg_type_t type)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496{
497 vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
498 vlib_frame_queue_elt_t *elt;
499 u32 save_count;
500 u64 new_tail;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400501 u64 before = clib_cpu_time_now ();
502
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 ASSERT (fq);
504
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000505 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506
507 /* Wait until a ring slot is available */
508 while (new_tail >= fq->head + fq->nelts)
509 {
510 f64 b4 = vlib_time_now_ticks (vm, before);
511 vlib_worker_thread_barrier_check (vm, b4);
512 /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
Damjan Marion586afd72017-04-05 19:18:20 +0200513 // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 }
515
Dave Barach9b8ffd92016-07-08 08:13:45 -0400516 elt = fq->elts + (new_tail & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
518 /* this would be very bad... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400519 while (elt->valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520 {
521 }
522
523 /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
524 save_count = frame->n_vectors;
525
526 elt->frame = frame;
527 elt->node_runtime_index = node_runtime_index;
528 elt->msg_type = type;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400529 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 elt->valid = 1;
531
532 return save_count;
533}
534#endif /* 0 */
535
536/* To be called by vlib worker threads upon startup */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400537void
538vlib_worker_thread_init (vlib_worker_thread_t * w)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400540 vlib_thread_main_t *tm = vlib_get_thread_main ();
541
Dave Barachfdf49442016-12-20 12:48:14 -0500542 /*
543 * Note: disabling signals in worker threads as follows
544 * prevents the api post-mortem dump scheme from working
545 * {
546 * sigset_t s;
547 * sigfillset (&s);
548 * pthread_sigmask (SIG_SETMASK, &s, 0);
549 * }
550 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551
552 clib_mem_set_heap (w->thread_mheap);
553
Dave Barach9b8ffd92016-07-08 08:13:45 -0400554 if (vec_len (tm->thread_prefix) && w->registration->short_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556 w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
557 w->registration->short_name, w->instance_id, '\0');
558 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 }
560
561 if (!w->registration->use_pthreads)
562 {
563
564 /* Initial barrier sync, for both worker and i/o threads */
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000565 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566
567 while (*vlib_worker_threads->wait_at_barrier)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400568 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000570 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 }
572}
573
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574void *
575vlib_worker_thread_bootstrap_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576{
577 void *rv;
578 vlib_worker_thread_t *w = arg;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400579
580 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200581 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582
Damjan Marionf55f9b82017-05-10 21:06:28 +0200583 __os_thread_index = w - vlib_worker_threads;
Damjan Marion586afd72017-04-05 19:18:20 +0200584
Damjan Marioncea46522020-05-21 16:47:05 +0200585 vlib_process_start_switch_stack (vlib_mains[__os_thread_index], 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400586 rv = (void *) clib_calljmp
587 ((uword (*)(uword)) w->thread_function,
588 (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589 /* NOTREACHED, we hope */
590 return rv;
591}
592
Dave Baracha690fdb2020-01-21 12:34:55 -0500593void
594vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200595{
596 const char *sys_cpu_path = "/sys/devices/system/cpu/cpu";
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800597 const char *sys_node_path = "/sys/devices/system/node/node";
598 clib_bitmap_t *nbmp = 0, *cbmp = 0;
599 u32 node;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200600 u8 *p = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500601 int core_id = -1, numa_id = -1;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200602
603 p = format (p, "%s%u/topology/core_id%c", sys_cpu_path, cpu_id, 0);
604 clib_sysfs_read ((char *) p, "%d", &core_id);
605 vec_reset_length (p);
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800606
607 /* *INDENT-OFF* */
608 clib_sysfs_read ("/sys/devices/system/node/online", "%U",
609 unformat_bitmap_list, &nbmp);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100610 clib_bitmap_foreach (node, nbmp) {
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800611 p = format (p, "%s%u/cpulist%c", sys_node_path, node, 0);
612 clib_sysfs_read ((char *) p, "%U", unformat_bitmap_list, &cbmp);
613 if (clib_bitmap_get (cbmp, cpu_id))
614 numa_id = node;
615 vec_reset_length (cbmp);
616 vec_reset_length (p);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100617 }
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800618 /* *INDENT-ON* */
619 vec_free (nbmp);
620 vec_free (cbmp);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200621 vec_free (p);
622
623 w->core_id = core_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500624 w->numa_id = numa_id;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200625}
626
Damjan Marion878c6092017-01-04 13:19:27 +0100627static clib_error_t *
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200628vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned cpu_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629{
Damjan Marion57d1ec02020-09-16 21:15:44 +0200630 clib_mem_main_t *mm = &clib_mem_main;
Damjan Marion878c6092017-01-04 13:19:27 +0100631 vlib_thread_main_t *tm = &vlib_thread_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400632 void *(*fp_arg) (void *) = fp;
Dave Baracha690fdb2020-01-21 12:34:55 -0500633 void *numa_heap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200635 w->cpu_id = cpu_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500636 vlib_get_thread_core_numa (w, cpu_id);
Dave Baracha690fdb2020-01-21 12:34:55 -0500637
638 /* Set up NUMA-bound heap if indicated */
Damjan Marion57d1ec02020-09-16 21:15:44 +0200639 if (mm->per_numa_mheaps[w->numa_id] == 0)
Dave Baracha690fdb2020-01-21 12:34:55 -0500640 {
641 /* If the user requested a NUMA heap, create it... */
642 if (tm->numa_heap_size)
643 {
Damjan Marion2bc1af52020-10-02 15:01:12 +0200644 clib_mem_set_numa_affinity (w->numa_id, 1 /* force */ );
645 numa_heap = clib_mem_create_heap (0 /* DIY */ , tm->numa_heap_size,
646 1 /* is_locked */ ,
647 "numa %u heap", w->numa_id);
648 clib_mem_set_default_numa_affinity ();
Damjan Marion57d1ec02020-09-16 21:15:44 +0200649 mm->per_numa_mheaps[w->numa_id] = numa_heap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500650 }
651 else
652 {
653 /* Or, use the main heap */
Damjan Marion57d1ec02020-09-16 21:15:44 +0200654 mm->per_numa_mheaps[w->numa_id] = w->thread_mheap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500655 }
656 }
657
Damjan Marion878c6092017-01-04 13:19:27 +0100658 if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200659 return tm->cb.vlib_launch_thread_cb (fp, (void *) w, cpu_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400661 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400662 pthread_t worker;
663 cpu_set_t cpuset;
664 CPU_ZERO (&cpuset);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200665 CPU_SET (cpu_id, &cpuset);
Christophe Fontainefef15b42016-04-09 12:38:49 +0900666
Damjan Marion878c6092017-01-04 13:19:27 +0100667 if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
668 return clib_error_return_unix (0, "pthread_create");
669
670 if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
671 return clib_error_return_unix (0, "pthread_setaffinity_np");
672
673 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400674 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675}
676
Dave Barach9b8ffd92016-07-08 08:13:45 -0400677static clib_error_t *
678start_workers (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679{
680 int i, j;
681 vlib_worker_thread_t *w;
682 vlib_main_t *vm_clone;
683 void *oldheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400684 vlib_thread_main_t *tm = &vlib_thread_main;
685 vlib_thread_registration_t *tr;
686 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 u32 n_vlib_mains = tm->n_vlib_mains;
688 u32 worker_thread_index;
Damjan Marionbfa75d62020-10-06 17:46:06 +0200689 clib_mem_heap_t *main_heap = clib_mem_get_per_cpu_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400690
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 vec_reset_length (vlib_worker_threads);
692
693 /* Set up the main thread */
694 vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
Dave Barach3e7deb12016-02-05 16:29:53 -0500695 w->elog_track.name = "main thread";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 elog_track_register (&vm->elog_main, &w->elog_track);
697
Dave Barach9b8ffd92016-07-08 08:13:45 -0400698 if (vec_len (tm->thread_prefix))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400700 w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
701 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702 }
703
Dave Barach9b8ffd92016-07-08 08:13:45 -0400704 vm->elog_main.lock =
705 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Dave Barach848191d2016-04-28 16:24:15 -0400706 vm->elog_main.lock[0] = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400707
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000708 clib_callback_data_init (&vm->vlib_node_runtime_perf_callbacks,
709 &vm->worker_thread_main_loop_callback_lock);
710
Dave Barach1c556d12020-10-02 11:35:44 -0400711 /* Replace hand-crafted length-1 vector with a real vector */
712 vlib_mains = 0;
713
714 vec_validate_aligned (vlib_mains, n_vlib_mains - 1, CLIB_CACHE_LINE_BYTES);
715 _vec_len (vlib_mains) = 0;
716 vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
717
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718 if (n_vlib_mains > 1)
719 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400720 vlib_worker_threads->wait_at_barrier =
721 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 vlib_worker_threads->workers_at_barrier =
Dave Barach9b8ffd92016-07-08 08:13:45 -0400723 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100725 vlib_worker_threads->node_reforks_required =
726 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
727
Dave Barachf6c68d72018-11-01 08:12:52 -0400728 /* We'll need the rpc vector lock... */
729 clib_spinlock_init (&vm->pending_rpc_lock);
730
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731 /* Ask for an initial barrier sync */
732 *vlib_worker_threads->workers_at_barrier = 0;
733 *vlib_worker_threads->wait_at_barrier = 1;
734
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100735 /* Without update or refork */
736 *vlib_worker_threads->node_reforks_required = 0;
737 vm->need_vlib_worker_thread_node_runtime_update = 0;
738
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100739 /* init timing */
740 vm->barrier_epoch = 0;
741 vm->barrier_no_close_before = 0;
742
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743 worker_thread_index = 1;
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000744 clib_spinlock_init (&vm->worker_thread_main_loop_callback_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745
Dave Barach9b8ffd92016-07-08 08:13:45 -0400746 for (i = 0; i < vec_len (tm->registrations); i++)
747 {
748 vlib_node_main_t *nm, *nm_clone;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400749 int k;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
Dave Barach9b8ffd92016-07-08 08:13:45 -0400751 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752
Dave Barach9b8ffd92016-07-08 08:13:45 -0400753 if (tr->count == 0)
754 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
Dave Barach9b8ffd92016-07-08 08:13:45 -0400756 for (k = 0; k < tr->count; k++)
757 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100758 vlib_node_t *n;
759
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 vec_add2 (vlib_worker_threads, w, 1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400761 /* Currently unused, may not really work */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400762 if (tr->mheap_size)
Damjan Marion4537c302020-09-28 19:03:37 +0200763 w->thread_mheap = clib_mem_create_heap (0, tr->mheap_size,
764 /* unlocked */ 0,
765 "%s%d heap",
766 tr->name, k);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400767 else
768 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200769
770 w->thread_stack =
771 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400772 w->thread_function = tr->function;
773 w->thread_function_arg = w;
774 w->instance_id = k;
775 w->registration = tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 w->elog_track.name =
778 (char *) format (0, "%s %d", tr->name, k + 1);
779 vec_add1 (w->elog_track.name, 0);
780 elog_track_register (&vm->elog_main, &w->elog_track);
Bud Grise68adab92016-02-12 10:36:11 -0500781
Dave Barach9b8ffd92016-07-08 08:13:45 -0400782 if (tr->no_data_structure_clone)
783 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784
Dave Barach9b8ffd92016-07-08 08:13:45 -0400785 /* Fork vlib_global_main et al. Look for bugs here */
786 oldheap = clib_mem_set_heap (w->thread_mheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200788 vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
789 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400790 clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791
Damjan Marion586afd72017-04-05 19:18:20 +0200792 vm_clone->thread_index = worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400793 vm_clone->heap_base = w->thread_mheap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400794 vm_clone->heap_aligned_base = (void *)
795 (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
Damjan Marione9f929b2017-03-16 11:32:09 +0100796 vm_clone->init_functions_called =
797 hash_create (0, /* value bytes */ 0);
Dave Barach2877eee2017-12-15 12:22:57 -0500798 vm_clone->pending_rpc_requests = 0;
799 vec_validate (vm_clone->pending_rpc_requests, 0);
800 _vec_len (vm_clone->pending_rpc_requests) = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400801 clib_memset (&vm_clone->random_buffer, 0,
802 sizeof (vm_clone->random_buffer));
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000803 clib_spinlock_init
804 (&vm_clone->worker_thread_main_loop_callback_lock);
805 clib_callback_data_init
806 (&vm_clone->vlib_node_runtime_perf_callbacks,
807 &vm_clone->worker_thread_main_loop_callback_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808
Dave Barach9b8ffd92016-07-08 08:13:45 -0400809 nm = &vlib_mains[0]->node_main;
810 nm_clone = &vm_clone->node_main;
811 /* fork next frames array, preserving node runtime indices */
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200812 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
813 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400814 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
815 {
816 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
817 u32 save_node_runtime_index;
818 u32 save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819
Dave Barach9b8ffd92016-07-08 08:13:45 -0400820 save_node_runtime_index = nf->node_runtime_index;
821 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
822 vlib_next_frame_init (nf);
823 nf->node_runtime_index = save_node_runtime_index;
824 nf->flags = save_flags;
825 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826
Dave Barach9b8ffd92016-07-08 08:13:45 -0400827 /* fork the frame dispatch queue */
828 nm_clone->pending_frames = 0;
Dave Barach53fe4a72019-01-26 09:50:26 -0500829 vec_validate (nm_clone->pending_frames, 10);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400830 _vec_len (nm_clone->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831
Dave Barach9b8ffd92016-07-08 08:13:45 -0400832 /* fork nodes */
833 nm_clone->nodes = 0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100834
835 /* Allocate all nodes in single block for speed */
836 n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
837
Dave Barach9b8ffd92016-07-08 08:13:45 -0400838 for (j = 0; j < vec_len (nm->nodes); j++)
839 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400840 clib_memcpy (n, nm->nodes[j], sizeof (*n));
841 /* none of the copied nodes have enqueue rights given out */
842 n->owner_node_index = VLIB_INVALID_NODE_INDEX;
Dave Barachb7b92992018-10-17 10:38:51 -0400843 clib_memset (&n->stats_total, 0, sizeof (n->stats_total));
844 clib_memset (&n->stats_last_clear, 0,
845 sizeof (n->stats_last_clear));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846 vec_add1 (nm_clone->nodes, n);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100847 n++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400848 }
849 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200850 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
851 CLIB_CACHE_LINE_BYTES);
JingLiuZTE30af5da2017-07-24 10:53:31 +0800852 vec_foreach (rt,
853 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Damjan Marione9f929b2017-03-16 11:32:09 +0100854 {
855 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200856 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100857 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100858 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100859 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100860 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
861 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100862 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863
Dave Barach9b8ffd92016-07-08 08:13:45 -0400864 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200865 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
866 CLIB_CACHE_LINE_BYTES);
Damjan Marion94100532020-11-06 23:25:57 +0100867 clib_interrupt_init (
868 &nm_clone->interrupts,
869 vec_len (nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT]));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400870 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
Damjan Marione9f929b2017-03-16 11:32:09 +0100871 {
872 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200873 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100874 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100875 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100876 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100877 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
878 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100879 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880
Dave Barach53fe4a72019-01-26 09:50:26 -0500881 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
882 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
883 CLIB_CACHE_LINE_BYTES);
884 vec_foreach (rt,
885 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
886 {
887 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
888 rt->thread_index = vm_clone->thread_index;
889 /* copy initial runtime_data from node */
890 if (n->runtime_data && n->runtime_data_bytes > 0)
891 clib_memcpy (rt->runtime_data, n->runtime_data,
892 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
893 n->runtime_data_bytes));
894 }
895
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200896 nm_clone->processes = vec_dup_aligned (nm->processes,
897 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898
Dave Barach593eedf2019-03-10 09:44:51 -0400899 /* Create per-thread frame freelist */
900 nm_clone->frame_sizes = vec_new (vlib_frame_size_t, 1);
901#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Florin Coras93992a92017-05-24 18:03:56 -0700902 nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
Dave Barach593eedf2019-03-10 09:44:51 -0400903#endif
Dave Barach687c9022019-07-23 10:22:31 -0400904 nm_clone->node_by_error = nm->node_by_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700905
Dave Barach9b8ffd92016-07-08 08:13:45 -0400906 /* Packet trace buffers are guaranteed to be empty, nothing to do here */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100907
Dave Barach9b8ffd92016-07-08 08:13:45 -0400908 clib_mem_set_heap (oldheap);
Dave Barach80f54e22017-03-08 19:08:56 -0500909 vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910
Ole Troan233e4682019-05-16 15:01:34 +0200911 /* Switch to the stats segment ... */
912 void *oldheap = vlib_stats_push_heap (0);
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200913 vm_clone->error_main.counters = vec_dup_aligned
914 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
Ole Troan233e4682019-05-16 15:01:34 +0200915 vlib_stats_pop_heap2 (vm_clone->error_main.counters,
916 worker_thread_index, oldheap, 1);
917
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200918 vm_clone->error_main.counters_last_clear = vec_dup_aligned
919 (vlib_mains[0]->error_main.counters_last_clear,
920 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921
Dave Barach9b8ffd92016-07-08 08:13:45 -0400922 worker_thread_index++;
923 }
924 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700925 }
926 else
927 {
928 /* only have non-data-structure copy threads to create... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929 for (i = 0; i < vec_len (tm->registrations); i++)
930 {
931 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932
Dave Barach9b8ffd92016-07-08 08:13:45 -0400933 for (j = 0; j < tr->count; j++)
934 {
935 vec_add2 (vlib_worker_threads, w, 1);
936 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400937 {
Damjan Marion4537c302020-09-28 19:03:37 +0200938 w->thread_mheap = clib_mem_create_heap (0, tr->mheap_size,
939 /* locked */ 0,
940 "%s%d heap",
941 tr->name, j);
Dave Barach6a5adc32018-07-04 10:56:23 -0400942 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400943 else
944 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200945 w->thread_stack =
946 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400947 w->thread_function = tr->function;
948 w->thread_function_arg = w;
949 w->instance_id = j;
950 w->elog_track.name =
951 (char *) format (0, "%s %d", tr->name, j + 1);
952 w->registration = tr;
953 vec_add1 (w->elog_track.name, 0);
954 elog_track_register (&vm->elog_main, &w->elog_track);
955 }
956 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957 }
958
959 worker_thread_index = 1;
960
961 for (i = 0; i < vec_len (tm->registrations); i++)
962 {
Damjan Marion878c6092017-01-04 13:19:27 +0100963 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964 int j;
965
966 tr = tm->registrations[i];
967
968 if (tr->use_pthreads || tm->use_pthreads)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400969 {
970 for (j = 0; j < tr->count; j++)
971 {
972 w = vlib_worker_threads + worker_thread_index++;
Damjan Marion878c6092017-01-04 13:19:27 +0100973 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
974 w, 0);
975 if (err)
976 clib_error_report (err);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400977 }
978 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400980 {
981 uword c;
Damjan Marion878c6092017-01-04 13:19:27 +0100982 /* *INDENT-OFF* */
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100983 clib_bitmap_foreach (c, tr->coremask) {
Damjan Marion878c6092017-01-04 13:19:27 +0100984 w = vlib_worker_threads + worker_thread_index++;
985 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
986 w, c);
987 if (err)
988 clib_error_report (err);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100989 }
Damjan Marion878c6092017-01-04 13:19:27 +0100990 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400991 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400993 vlib_worker_thread_barrier_sync (vm);
994 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995 return 0;
996}
997
998VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
999
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001000
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001001static inline void
1002worker_thread_node_runtime_update_internal (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003{
1004 int i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005 vlib_main_t *vm;
1006 vlib_node_main_t *nm, *nm_clone;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007 vlib_main_t *vm_clone;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001008 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 never_inline void
1010 vlib_node_runtime_sync_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001011 vlib_node_runtime_t * r,
1012 uword n_calls,
1013 uword n_vectors, uword n_clocks);
1014
Damjan Marion586afd72017-04-05 19:18:20 +02001015 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017 vm = vlib_mains[0];
1018 nm = &vm->node_main;
1019
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1021
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 * Scrape all runtime stats, so we don't lose node runtime(s) with
1024 * pending counts, or throw away worker / io thread counts.
1025 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001026 for (j = 0; j < vec_len (nm->nodes); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001028 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001029 n = nm->nodes[j];
1030 vlib_node_sync_stats (vm, n);
1031 }
1032
1033 for (i = 1; i < vec_len (vlib_mains); i++)
1034 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001035 vlib_node_t *n;
1036
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037 vm_clone = vlib_mains[i];
1038 nm_clone = &vm_clone->node_main;
1039
Dave Barach9b8ffd92016-07-08 08:13:45 -04001040 for (j = 0; j < vec_len (nm_clone->nodes); j++)
1041 {
1042 n = nm_clone->nodes[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043
Dave Barach9b8ffd92016-07-08 08:13:45 -04001044 rt = vlib_node_get_runtime (vm_clone, n->index);
1045 vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1046 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001047 }
1048
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001049 /* Per-worker clone rebuilds are now done on each thread */
1050}
1051
1052
1053void
1054vlib_worker_thread_node_refork (void)
1055{
1056 vlib_main_t *vm, *vm_clone;
1057 vlib_node_main_t *nm, *nm_clone;
1058 vlib_node_t **old_nodes_clone;
1059 vlib_node_runtime_t *rt, *old_rt;
1060
1061 vlib_node_t *new_n_clone;
1062
1063 int j;
1064
1065 vm = vlib_mains[0];
1066 nm = &vm->node_main;
1067 vm_clone = vlib_get_main ();
1068 nm_clone = &vm_clone->node_main;
1069
1070 /* Re-clone error heap */
1071 u64 *old_counters = vm_clone->error_main.counters;
1072 u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1073
Dave Barach178cf492018-11-13 16:34:13 -05001074 clib_memcpy_fast (&vm_clone->error_main, &vm->error_main,
1075 sizeof (vm->error_main));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001076 j = vec_len (vm->error_main.counters) - 1;
Ole Troan233e4682019-05-16 15:01:34 +02001077
1078 /* Switch to the stats segment ... */
1079 void *oldheap = vlib_stats_push_heap (0);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001080 vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001081 vm_clone->error_main.counters = old_counters;
Ole Troan233e4682019-05-16 15:01:34 +02001082 vlib_stats_pop_heap2 (vm_clone->error_main.counters, vm_clone->thread_index,
1083 oldheap, 0);
1084
1085 vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001086 vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1087
1088 nm_clone = &vm_clone->node_main;
1089 vec_free (nm_clone->next_frames);
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001090 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1091 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001092
1093 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001095 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1096 u32 save_node_runtime_index;
1097 u32 save_flags;
Damjan Marionbc20bdf2015-12-17 14:28:18 +01001098
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001099 save_node_runtime_index = nf->node_runtime_index;
1100 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1101 vlib_next_frame_init (nf);
1102 nf->node_runtime_index = save_node_runtime_index;
1103 nf->flags = save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001105
1106 old_nodes_clone = nm_clone->nodes;
1107 nm_clone->nodes = 0;
1108
1109 /* re-fork nodes */
1110
1111 /* Allocate all nodes in single block for speed */
1112 new_n_clone =
1113 clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1114 for (j = 0; j < vec_len (nm->nodes); j++)
1115 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001116 vlib_node_t *new_n = nm->nodes[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001117
Dave Barach178cf492018-11-13 16:34:13 -05001118 clib_memcpy_fast (new_n_clone, new_n, sizeof (*new_n));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001119 /* none of the copied nodes have enqueue rights given out */
1120 new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1121
1122 if (j >= vec_len (old_nodes_clone))
1123 {
1124 /* new node, set to zero */
Dave Barachb7b92992018-10-17 10:38:51 -04001125 clib_memset (&new_n_clone->stats_total, 0,
1126 sizeof (new_n_clone->stats_total));
1127 clib_memset (&new_n_clone->stats_last_clear, 0,
1128 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001129 }
1130 else
1131 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001132 vlib_node_t *old_n_clone = old_nodes_clone[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001133 /* Copy stats if the old data is valid */
Dave Barach178cf492018-11-13 16:34:13 -05001134 clib_memcpy_fast (&new_n_clone->stats_total,
1135 &old_n_clone->stats_total,
1136 sizeof (new_n_clone->stats_total));
1137 clib_memcpy_fast (&new_n_clone->stats_last_clear,
1138 &old_n_clone->stats_last_clear,
1139 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001140
1141 /* keep previous node state */
1142 new_n_clone->state = old_n_clone->state;
1143 }
1144 vec_add1 (nm_clone->nodes, new_n_clone);
1145 new_n_clone++;
1146 }
1147 /* Free the old node clones */
1148 clib_mem_free (old_nodes_clone[0]);
1149
1150 vec_free (old_nodes_clone);
1151
1152
1153 /* re-clone internal nodes */
1154 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1155 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001156 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1157 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001158
1159 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1160 {
1161 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1162 rt->thread_index = vm_clone->thread_index;
1163 /* copy runtime_data, will be overwritten later for existing rt */
1164 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001165 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1166 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1167 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001168 }
1169
1170 for (j = 0; j < vec_len (old_rt); j++)
1171 {
1172 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1173 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001174 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1175 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001176 }
1177
1178 vec_free (old_rt);
1179
1180 /* re-clone input nodes */
1181 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1182 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001183 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1184 CLIB_CACHE_LINE_BYTES);
Damjan Marion94100532020-11-06 23:25:57 +01001185 clib_interrupt_resize (
1186 &nm_clone->interrupts,
1187 vec_len (nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT]));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001188
1189 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1190 {
1191 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1192 rt->thread_index = vm_clone->thread_index;
1193 /* copy runtime_data, will be overwritten later for existing rt */
1194 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001195 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1196 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1197 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001198 }
1199
1200 for (j = 0; j < vec_len (old_rt); j++)
1201 {
1202 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1203 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001204 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1205 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001206 }
1207
1208 vec_free (old_rt);
1209
Dave Barach53fe4a72019-01-26 09:50:26 -05001210 /* re-clone pre-input nodes */
1211 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT];
1212 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
1213 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
1214 CLIB_CACHE_LINE_BYTES);
1215
1216 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1217 {
1218 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1219 rt->thread_index = vm_clone->thread_index;
1220 /* copy runtime_data, will be overwritten later for existing rt */
1221 if (n->runtime_data && n->runtime_data_bytes > 0)
1222 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1223 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1224 n->runtime_data_bytes));
1225 }
1226
1227 for (j = 0; j < vec_len (old_rt); j++)
1228 {
1229 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1230 rt->state = old_rt[j].state;
1231 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1232 VLIB_NODE_RUNTIME_DATA_SIZE);
1233 }
1234
1235 vec_free (old_rt);
1236
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001237 nm_clone->processes = vec_dup_aligned (nm->processes,
1238 CLIB_CACHE_LINE_BYTES);
Dave Barach687c9022019-07-23 10:22:31 -04001239 nm_clone->node_by_error = nm->node_by_error;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001240}
1241
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001242void
1243vlib_worker_thread_node_runtime_update (void)
1244{
1245 /*
1246 * Make a note that we need to do a node runtime update
1247 * prior to releasing the barrier.
1248 */
1249 vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001250}
1251
Pavel Kotucek1e765832016-09-23 08:54:14 +02001252u32
1253unformat_sched_policy (unformat_input_t * input, va_list * args)
1254{
1255 u32 *r = va_arg (*args, u32 *);
1256
1257 if (0);
1258#define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1259 foreach_sched_policy
1260#undef _
1261 else
1262 return 0;
1263 return 1;
1264}
1265
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266static clib_error_t *
1267cpu_config (vlib_main_t * vm, unformat_input_t * input)
1268{
1269 vlib_thread_registration_t *tr;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001270 uword *p;
1271 vlib_thread_main_t *tm = &vlib_thread_main;
1272 u8 *name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001273 uword *bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274 u32 count;
1275
1276 tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
Pavel Kotucek1e765832016-09-23 08:54:14 +02001277
Dave Barach9b8ffd92016-07-08 08:13:45 -04001278 tm->n_thread_stacks = 1; /* account for main thread */
Pavel Kotucek1e765832016-09-23 08:54:14 +02001279 tm->sched_policy = ~0;
1280 tm->sched_priority = ~0;
Damjan Marion858151f2018-07-11 10:51:00 +02001281 tm->main_lcore = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282
1283 tr = tm->next;
1284
1285 while (tr)
1286 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001287 hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001288 tr = tr->next;
1289 }
1290
Dave Barach9b8ffd92016-07-08 08:13:45 -04001291 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292 {
Damjan Marionbf741472016-06-13 22:49:44 +02001293 if (unformat (input, "use-pthreads"))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001294 tm->use_pthreads = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295 else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001296 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297 else if (unformat (input, "main-core %u", &tm->main_lcore))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001298 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001299 else if (unformat (input, "skip-cores %u", &tm->skip_cores))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001300 ;
Dave Baracha690fdb2020-01-21 12:34:55 -05001301 else if (unformat (input, "numa-heap-size %U",
1302 unformat_memory_size, &tm->numa_heap_size))
1303 ;
Yi Hee4a9eb72018-07-17 14:18:41 +08001304 else if (unformat (input, "coremask-%s %U", &name,
1305 unformat_bitmap_mask, &bitmap) ||
1306 unformat (input, "corelist-%s %U", &name,
1307 unformat_bitmap_list, &bitmap))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001308 {
1309 p = hash_get_mem (tm->thread_registrations_by_name, name);
1310 if (p == 0)
1311 return clib_error_return (0, "no such thread type '%s'", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001312
Dave Barach9b8ffd92016-07-08 08:13:45 -04001313 tr = (vlib_thread_registration_t *) p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001314
Dave Barach9b8ffd92016-07-08 08:13:45 -04001315 if (tr->use_pthreads)
1316 return clib_error_return (0,
1317 "corelist cannot be set for '%s' threads",
1318 name);
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001319 if (tr->count)
1320 return clib_error_return
1321 (0, "core placement of '%s' threads is already configured",
1322 name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323
Dave Barach9b8ffd92016-07-08 08:13:45 -04001324 tr->coremask = bitmap;
1325 tr->count = clib_bitmap_count_set_bits (tr->coremask);
1326 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001327 else
1328 if (unformat
1329 (input, "scheduler-policy %U", unformat_sched_policy,
1330 &tm->sched_policy))
1331 ;
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001332 else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
Pavel Kotucek1e765832016-09-23 08:54:14 +02001333 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334 else if (unformat (input, "%s %u", &name, &count))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001335 {
1336 p = hash_get_mem (tm->thread_registrations_by_name, name);
1337 if (p == 0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001338 return clib_error_return (0, "no such thread type 3 '%s'", name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001339
1340 tr = (vlib_thread_registration_t *) p[0];
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001341
Dave Barach9b8ffd92016-07-08 08:13:45 -04001342 if (tr->fixed_count)
1343 return clib_error_return
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001344 (0, "number of '%s' threads not configurable", name);
1345 if (tr->count)
1346 return clib_error_return
1347 (0, "number of '%s' threads is already configured", name);
1348
Dave Barach9b8ffd92016-07-08 08:13:45 -04001349 tr->count = count;
1350 }
1351 else
1352 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353 }
1354
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001355 if (tm->sched_priority != ~0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001356 {
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001357 if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001358 {
1359 u32 prio_max = sched_get_priority_max (tm->sched_policy);
1360 u32 prio_min = sched_get_priority_min (tm->sched_policy);
1361 if (tm->sched_priority > prio_max)
1362 tm->sched_priority = prio_max;
1363 if (tm->sched_priority < prio_min)
1364 tm->sched_priority = prio_min;
1365 }
1366 else
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001367 {
1368 return clib_error_return
1369 (0,
1370 "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1371 tm->sched_priority);
1372 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001373 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001374 tr = tm->next;
1375
1376 if (!tm->thread_prefix)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001377 tm->thread_prefix = format (0, "vpp");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378
1379 while (tr)
1380 {
1381 tm->n_thread_stacks += tr->count;
1382 tm->n_pthreads += tr->count * tr->use_pthreads;
Damjan Marion878c6092017-01-04 13:19:27 +01001383 tm->n_threads += tr->count * (tr->use_pthreads == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 tr = tr->next;
1385 }
1386
1387 return 0;
1388}
1389
1390VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1391
Ed Warnickecb9cada2015-12-08 15:45:58 -07001392void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -04001393void
1394vnet_main_fixup (vlib_fork_fixup_t which)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001395{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001396}
1397
1398void
1399vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1400{
1401 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001402
1403 if (vlib_mains == 0)
1404 return;
1405
Damjan Marion586afd72017-04-05 19:18:20 +02001406 ASSERT (vlib_get_thread_index () == 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001407 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408
1409 switch (which)
1410 {
1411 case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1412 vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1413 break;
1414
1415 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001416 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001417 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001418 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001419}
1420
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001421 /*
1422 * Enforce minimum open time to minimize packet loss due to Rx overflow,
1423 * based on a test based heuristic that barrier should be open for at least
1424 * 3 time as long as it is closed (with an upper bound of 1ms because by that
1425 * point it is probably too late to make a difference)
1426 */
1427
1428#ifndef BARRIER_MINIMUM_OPEN_LIMIT
1429#define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1430#endif
1431
1432#ifndef BARRIER_MINIMUM_OPEN_FACTOR
1433#define BARRIER_MINIMUM_OPEN_FACTOR 3
1434#endif
1435
Dave Barach9b8ffd92016-07-08 08:13:45 -04001436void
Dave Barachc602b382019-06-03 19:48:22 -04001437vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm)
1438{
1439 f64 deadline;
1440 f64 now = vlib_time_now (vm);
1441 u32 count = vec_len (vlib_mains) - 1;
1442
1443 /* No worker threads? */
1444 if (count == 0)
1445 return;
1446
1447 deadline = now + BARRIER_SYNC_TIMEOUT;
1448 *vlib_worker_threads->wait_at_barrier = 1;
1449 while (*vlib_worker_threads->workers_at_barrier != count)
1450 {
1451 if ((now = vlib_time_now (vm)) > deadline)
1452 {
1453 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1454 os_panic ();
1455 }
1456 CLIB_PAUSE ();
1457 }
1458 *vlib_worker_threads->wait_at_barrier = 0;
1459}
1460
Neale Ranns42845dd2020-05-26 13:12:17 +00001461/**
1462 * Return true if the wroker thread barrier is held
1463 */
1464u8
1465vlib_worker_thread_barrier_held (void)
1466{
1467 if (vec_len (vlib_mains) < 2)
1468 return (1);
1469
1470 return (*vlib_worker_threads->wait_at_barrier == 1);
1471}
1472
Dave Barachc602b382019-06-03 19:48:22 -04001473void
Damjan Marion8343ee52019-02-26 17:15:48 +01001474vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, const char *func_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001475{
1476 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001477 f64 now;
1478 f64 t_entry;
1479 f64 t_open;
1480 f64 t_closed;
Dave Barach9ae190e2019-04-23 10:07:24 -04001481 f64 max_vector_rate;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001482 u32 count;
Dave Barach9ae190e2019-04-23 10:07:24 -04001483 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001484
Dave Barach80f54e22017-03-08 19:08:56 -05001485 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001486 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001487
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001488 ASSERT (vlib_get_thread_index () == 0);
1489
Damjan Marion8343ee52019-02-26 17:15:48 +01001490 vlib_worker_threads[0].barrier_caller = func_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001491 count = vec_len (vlib_mains) - 1;
1492
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001493 /* Record entry relative to last close */
1494 now = vlib_time_now (vm);
1495 t_entry = now - vm->barrier_epoch;
1496
Ed Warnickecb9cada2015-12-08 15:45:58 -07001497 /* Tolerate recursive calls */
1498 if (++vlib_worker_threads[0].recursion_level > 1)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001499 {
1500 barrier_trace_sync_rec (t_entry);
1501 return;
1502 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001503
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001504 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1505 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
1506 vm->clib_time.last_cpu_time, 0 /* enter */ );
1507
Dave Barach9ae190e2019-04-23 10:07:24 -04001508 /*
1509 * Need data to decide if we're working hard enough to honor
1510 * the barrier hold-down timer.
1511 */
1512 max_vector_rate = 0.0;
1513 for (i = 1; i < vec_len (vlib_mains); i++)
1514 max_vector_rate =
1515 clib_max (max_vector_rate,
Dave Baracha8df85c2019-10-01 13:34:23 -04001516 (f64) vlib_last_vectors_per_main_loop (vlib_mains[i]));
Dave Barach9ae190e2019-04-23 10:07:24 -04001517
Bud Grise42f20062016-03-16 13:09:46 -04001518 vlib_worker_threads[0].barrier_sync_count++;
1519
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001520 /* Enforce minimum barrier open time to minimize packet loss */
1521 ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001522
Dave Barach9ae190e2019-04-23 10:07:24 -04001523 /*
1524 * If any worker thread seems busy, which we define
1525 * as a vector rate above 10, we enforce the barrier hold-down timer
1526 */
1527 if (max_vector_rate > 10.0)
Dave Barach36feebb2018-09-07 11:12:27 -04001528 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001529 while (1)
Dave Barach36feebb2018-09-07 11:12:27 -04001530 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001531 now = vlib_time_now (vm);
1532 /* Barrier hold-down timer expired? */
1533 if (now >= vm->barrier_no_close_before)
1534 break;
1535 if ((vm->barrier_no_close_before - now)
1536 > (2.0 * BARRIER_MINIMUM_OPEN_LIMIT))
1537 {
1538 clib_warning
1539 ("clock change: would have waited for %.4f seconds",
1540 (vm->barrier_no_close_before - now));
1541 break;
1542 }
Dave Barach36feebb2018-09-07 11:12:27 -04001543 }
1544 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001545 /* Record time of closure */
1546 t_open = now - vm->barrier_epoch;
1547 vm->barrier_epoch = now;
1548
1549 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001550
1551 *vlib_worker_threads->wait_at_barrier = 1;
1552 while (*vlib_worker_threads->workers_at_barrier != count)
1553 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001554 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001555 {
1556 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1557 os_panic ();
1558 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001559 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001560
1561 t_closed = now - vm->barrier_epoch;
1562
1563 barrier_trace_sync (t_entry, t_open, t_closed);
1564
Ed Warnickecb9cada2015-12-08 15:45:58 -07001565}
1566
Dave Barach9b8ffd92016-07-08 08:13:45 -04001567void
1568vlib_worker_thread_barrier_release (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001569{
1570 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001571 f64 now;
1572 f64 minimum_open;
1573 f64 t_entry;
1574 f64 t_closed_total;
1575 f64 t_update_main = 0.0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001576 int refork_needed = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001577
Dave Barach80f54e22017-03-08 19:08:56 -05001578 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001579 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001580
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001581 ASSERT (vlib_get_thread_index () == 0);
1582
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001583
1584 now = vlib_time_now (vm);
1585 t_entry = now - vm->barrier_epoch;
1586
Ed Warnickecb9cada2015-12-08 15:45:58 -07001587 if (--vlib_worker_threads[0].recursion_level > 0)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001588 {
1589 barrier_trace_release_rec (t_entry);
1590 return;
1591 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001592
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001593 /* Update (all) node runtimes before releasing the barrier, if needed */
1594 if (vm->need_vlib_worker_thread_node_runtime_update)
1595 {
Dave Barach1ddbc012018-06-13 09:26:05 -04001596 /*
1597 * Lock stat segment here, so we's safe when
1598 * rebuilding the stat segment node clones from the
1599 * stat thread...
1600 */
1601 vlib_stat_segment_lock ();
1602
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001603 /* Do stats elements on main thread */
1604 worker_thread_node_runtime_update_internal ();
1605 vm->need_vlib_worker_thread_node_runtime_update = 0;
1606
1607 /* Do per thread rebuilds in parallel */
1608 refork_needed = 1;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +00001609 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
1610 (vec_len (vlib_mains) - 1));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001611 now = vlib_time_now (vm);
1612 t_update_main = now - vm->barrier_epoch;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001613 }
1614
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001615 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001616
Dave Baracha4324a92019-02-19 17:05:30 -05001617 /*
1618 * Note when we let go of the barrier.
1619 * Workers can use this to derive a reasonably accurate
1620 * time offset. See vlib_time_now(...)
1621 */
1622 vm->time_last_barrier_release = vlib_time_now (vm);
1623 CLIB_MEMORY_STORE_BARRIER ();
1624
Ed Warnickecb9cada2015-12-08 15:45:58 -07001625 *vlib_worker_threads->wait_at_barrier = 0;
1626
1627 while (*vlib_worker_threads->workers_at_barrier > 0)
1628 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001629 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001630 {
1631 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1632 os_panic ();
1633 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001634 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001635
1636 /* Wait for reforks before continuing */
1637 if (refork_needed)
1638 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001639 now = vlib_time_now (vm);
1640
1641 deadline = now + BARRIER_SYNC_TIMEOUT;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001642
1643 while (*vlib_worker_threads->node_reforks_required > 0)
1644 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001645 if ((now = vlib_time_now (vm)) > deadline)
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001646 {
1647 fformat (stderr, "%s: worker thread refork deadlock\n",
1648 __FUNCTION__);
1649 os_panic ();
1650 }
1651 }
Dave Barach1ddbc012018-06-13 09:26:05 -04001652 vlib_stat_segment_unlock ();
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001653 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001654
1655 t_closed_total = now - vm->barrier_epoch;
1656
1657 minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1658
1659 if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1660 {
1661 minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1662 }
1663
1664 vm->barrier_no_close_before = now + minimum_open;
1665
1666 /* Record barrier epoch (used to enforce minimum open time) */
1667 vm->barrier_epoch = now;
1668
1669 barrier_trace_release (t_entry, t_closed_total, t_update_main);
1670
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001671 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1672 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
1673 vm->clib_time.last_cpu_time, 1 /* leave */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001674}
1675
Neale Ranns42845dd2020-05-26 13:12:17 +00001676/**
1677 * Wait until each of the workers has been once around the track
1678 */
1679void
1680vlib_worker_wait_one_loop (void)
1681{
1682 ASSERT (vlib_get_thread_index () == 0);
1683
1684 if (vec_len (vlib_mains) < 2)
1685 return;
1686
1687 if (vlib_worker_thread_barrier_held ())
1688 return;
1689
1690 u32 *counts = 0;
1691 u32 ii;
1692
1693 vec_validate (counts, vec_len (vlib_mains) - 1);
1694
1695 /* record the current loop counts */
1696 vec_foreach_index (ii, vlib_mains)
1697 counts[ii] = vlib_mains[ii]->main_loop_count;
1698
1699 /* spin until each changes, apart from the main thread, or we'd be
1700 * a while */
1701 for (ii = 1; ii < vec_len (counts); ii++)
1702 {
1703 while (counts[ii] == vlib_mains[ii]->main_loop_count)
1704 CLIB_PAUSE ();
1705 }
1706
1707 vec_free (counts);
1708 return;
1709}
1710
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001711/*
1712 * Check the frame queue to see if any frames are available.
Dave Barach9b8ffd92016-07-08 08:13:45 -04001713 * If so, pull the packets off the frames and put them to
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001714 * the handoff node.
1715 */
Damjan Marione9d52d52017-03-09 15:42:26 +01001716int
1717vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001718{
Damjan Marion586afd72017-04-05 19:18:20 +02001719 u32 thread_id = vm->thread_index;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001720 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001721 vlib_frame_queue_elt_t *elt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001722 u32 *from, *to;
1723 vlib_frame_t *f;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001724 int msg_type;
1725 int processed = 0;
1726 u32 n_left_to_node;
1727 u32 vectors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001728
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001729 ASSERT (fq);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001730 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001731
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001732 if (PREDICT_FALSE (fqm->node_index == ~0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001733 return 0;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001734 /*
1735 * Gather trace data for frame queues
1736 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001737 if (PREDICT_FALSE (fq->trace))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001738 {
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001739 frame_queue_trace_t *fqt;
1740 frame_queue_nelt_counter_t *fqh;
1741 u32 elix;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001742
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001743 fqt = &fqm->frame_queue_traces[thread_id];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001744
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001745 fqt->nelts = fq->nelts;
1746 fqt->head = fq->head;
1747 fqt->head_hint = fq->head_hint;
1748 fqt->tail = fq->tail;
1749 fqt->threshold = fq->vector_threshold;
1750 fqt->n_in_use = fqt->tail - fqt->head;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001751 if (fqt->n_in_use >= fqt->nelts)
1752 {
1753 // if beyond max then use max
1754 fqt->n_in_use = fqt->nelts - 1;
1755 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001756
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001757 /* Record the number of elements in use in the histogram */
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001758 fqh = &fqm->frame_queue_histogram[thread_id];
Dave Barach9b8ffd92016-07-08 08:13:45 -04001759 fqh->count[fqt->n_in_use]++;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001760
1761 /* Record a snapshot of the elements in use */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001762 for (elix = 0; elix < fqt->nelts; elix++)
1763 {
1764 elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1765 if (1 || elt->valid)
1766 {
1767 fqt->n_vectors[elix] = elt->n_vectors;
1768 }
1769 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001770 fqt->written = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001771 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001772
1773 while (1)
1774 {
Dave Baracha638c182019-06-21 18:24:07 -04001775 vlib_buffer_t *b;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001776 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001777 {
1778 fq->head_hint = fq->head;
1779 return processed;
1780 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001781
Dave Barach9b8ffd92016-07-08 08:13:45 -04001782 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001783
1784 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001785 {
1786 fq->head_hint = fq->head;
1787 return processed;
1788 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001789
1790 from = elt->buffer_index;
1791 msg_type = elt->msg_type;
1792
1793 ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1794 ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1795
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001796 f = vlib_get_frame_to_node (vm, fqm->node_index);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001797
Dave Baracha638c182019-06-21 18:24:07 -04001798 /* If the first vector is traced, set the frame trace flag */
1799 b = vlib_get_buffer (vm, from[0]);
1800 if (b->flags & VLIB_BUFFER_IS_TRACED)
1801 f->frame_flags |= VLIB_NODE_FLAG_TRACE;
1802
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001803 to = vlib_frame_vector_args (f);
1804
1805 n_left_to_node = elt->n_vectors;
1806
1807 while (n_left_to_node >= 4)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001808 {
1809 to[0] = from[0];
1810 to[1] = from[1];
1811 to[2] = from[2];
1812 to[3] = from[3];
1813 to += 4;
1814 from += 4;
1815 n_left_to_node -= 4;
1816 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001817
1818 while (n_left_to_node > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001819 {
1820 to[0] = from[0];
1821 to++;
1822 from++;
1823 n_left_to_node--;
1824 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001825
1826 vectors += elt->n_vectors;
1827 f->n_vectors = elt->n_vectors;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001828 vlib_put_frame_to_node (vm, fqm->node_index, f);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001829
1830 elt->valid = 0;
1831 elt->n_vectors = 0;
1832 elt->msg_type = 0xfefefefe;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001833 CLIB_MEMORY_BARRIER ();
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001834 fq->head++;
1835 processed++;
1836
1837 /*
1838 * Limit the number of packets pushed into the graph
1839 */
1840 if (vectors >= fq->vector_threshold)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001841 {
1842 fq->head_hint = fq->head;
1843 return processed;
1844 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001845 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001846 ASSERT (0);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001847 return processed;
1848}
1849
Dave Barach9b8ffd92016-07-08 08:13:45 -04001850void
1851vlib_worker_thread_fn (void *arg)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001852{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001853 vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
Damjan Marion878c6092017-01-04 13:19:27 +01001854 vlib_thread_main_t *tm = vlib_get_thread_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001855 vlib_main_t *vm = vlib_get_main ();
Damjan Marione9f929b2017-03-16 11:32:09 +01001856 clib_error_t *e;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001857
Damjan Marioncea46522020-05-21 16:47:05 +02001858 vlib_process_finish_switch_stack (vm);
1859
Damjan Marion586afd72017-04-05 19:18:20 +02001860 ASSERT (vm->thread_index == vlib_get_thread_index ());
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001861
1862 vlib_worker_thread_init (w);
1863 clib_time_init (&vm->clib_time);
1864 clib_mem_set_heap (w->thread_mheap);
1865
Dave Barachc602b382019-06-03 19:48:22 -04001866 e = vlib_call_init_exit_functions_no_sort
Dave Barachf8d50682019-05-14 18:01:44 -04001867 (vm, &vm->worker_init_function_registrations, 1 /* call_once */ );
Damjan Marione9f929b2017-03-16 11:32:09 +01001868 if (e)
1869 clib_error_report (e);
1870
Dave Barachc602b382019-06-03 19:48:22 -04001871 /* Wait until the dpdk init sequence is complete */
1872 while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1873 vlib_worker_thread_barrier_check ();
1874
Damjan Marione9d52d52017-03-09 15:42:26 +01001875 vlib_worker_loop (vm);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001876}
1877
Dave Barach9b8ffd92016-07-08 08:13:45 -04001878/* *INDENT-OFF* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001879VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1880 .name = "workers",
1881 .short_name = "wk",
1882 .function = vlib_worker_thread_fn,
1883};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001884/* *INDENT-ON* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001885
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001886u32
1887vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1888{
1889 vlib_thread_main_t *tm = vlib_get_thread_main ();
1890 vlib_frame_queue_main_t *fqm;
1891 vlib_frame_queue_t *fq;
1892 int i;
Elias Rudberg368104d2020-04-16 16:01:52 +02001893 u32 num_threads;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001894
1895 if (frame_queue_nelts == 0)
dongjuan88752482019-06-04 10:59:02 +08001896 frame_queue_nelts = FRAME_QUEUE_MAX_NELTS;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001897
Elias Rudberg368104d2020-04-16 16:01:52 +02001898 num_threads = 1 /* main thread */ + tm->n_threads;
1899 ASSERT (frame_queue_nelts >= 8 + num_threads);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001900
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001901 vec_add2 (tm->frame_queue_mains, fqm, 1);
1902
1903 fqm->node_index = node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +02001904 fqm->frame_queue_nelts = frame_queue_nelts;
Elias Rudberg368104d2020-04-16 16:01:52 +02001905 fqm->queue_hi_thresh = frame_queue_nelts - num_threads;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001906
1907 vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001908 vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001909 _vec_len (fqm->vlib_frame_queues) = 0;
1910 for (i = 0; i < tm->n_vlib_mains; i++)
1911 {
Damjan Marion78fd7e82018-07-20 18:47:05 +02001912 vlib_frame_queue_per_thread_data_t *ptd;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001913 fq = vlib_frame_queue_alloc (frame_queue_nelts);
1914 vec_add1 (fqm->vlib_frame_queues, fq);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001915
1916 ptd = vec_elt_at_index (fqm->per_thread_data, i);
1917 vec_validate (ptd->handoff_queue_elt_by_thread_index,
1918 tm->n_vlib_mains - 1);
1919 vec_validate_init_empty (ptd->congested_handoff_queue_by_thread_index,
1920 tm->n_vlib_mains - 1,
1921 (vlib_frame_queue_t *) (~0));
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001922 }
1923
1924 return (fqm - tm->frame_queue_mains);
1925}
1926
Damjan Marion878c6092017-01-04 13:19:27 +01001927int
1928vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1929{
1930 vlib_thread_main_t *tm = vlib_get_thread_main ();
1931
1932 if (tm->extern_thread_mgmt)
1933 return -1;
1934
1935 tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1936 tm->extern_thread_mgmt = 1;
1937 return 0;
1938}
1939
Dave Barach69128d02017-09-26 10:54:34 -04001940void
1941vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1942 args)
1943{
1944 ASSERT (vlib_get_thread_index () == 0);
1945 vlib_process_signal_event (vlib_get_main (), args->node_index,
1946 args->type_opaque, args->data);
1947}
1948
1949void *rpc_call_main_thread_cb_fn;
1950
1951void
1952vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1953{
1954 if (rpc_call_main_thread_cb_fn)
1955 {
1956 void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1957 (*fp) (callback, args, arg_size);
1958 }
1959 else
1960 clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1961}
1962
Dave Barach9b8ffd92016-07-08 08:13:45 -04001963clib_error_t *
1964threads_init (vlib_main_t * vm)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001965{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001966 return 0;
1967}
1968
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001969VLIB_INIT_FUNCTION (threads_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001970
Dave Baracha4324a92019-02-19 17:05:30 -05001971
1972static clib_error_t *
1973show_clock_command_fn (vlib_main_t * vm,
1974 unformat_input_t * input, vlib_cli_command_t * cmd)
1975{
1976 int i;
Dave Barachc25048b2020-01-29 18:05:24 -05001977 int verbose = 0;
Dave Barach19718002020-03-11 10:31:36 -04001978 clib_timebase_t _tb, *tb = &_tb;
Dave Baracha4324a92019-02-19 17:05:30 -05001979
Dave Barachc25048b2020-01-29 18:05:24 -05001980 (void) unformat (input, "verbose %=", &verbose, 1);
Dave Baracha4324a92019-02-19 17:05:30 -05001981
Dave Barach19718002020-03-11 10:31:36 -04001982 clib_timebase_init (tb, 0 /* GMT */ , CLIB_TIMEBASE_DAYLIGHT_NONE,
1983 &vm->clib_time);
1984
1985 vlib_cli_output (vm, "%U, %U GMT", format_clib_time, &vm->clib_time,
1986 verbose, format_clib_timebase_time,
1987 clib_timebase_now (tb));
Dave Baracha4324a92019-02-19 17:05:30 -05001988
1989 if (vec_len (vlib_mains) == 1)
1990 return 0;
1991
1992 vlib_cli_output (vm, "Time last barrier release %.9f",
1993 vm->time_last_barrier_release);
1994
1995 for (i = 1; i < vec_len (vlib_mains); i++)
1996 {
1997 if (vlib_mains[i] == 0)
1998 continue;
Dave Barachc25048b2020-01-29 18:05:24 -05001999
2000 vlib_cli_output (vm, "%d: %U", i, format_clib_time,
2001 &vlib_mains[i]->clib_time, verbose);
2002
Dave Baracha4324a92019-02-19 17:05:30 -05002003 vlib_cli_output (vm, "Thread %d offset %.9f error %.9f", i,
2004 vlib_mains[i]->time_offset,
2005 vm->time_last_barrier_release -
2006 vlib_mains[i]->time_last_barrier_release);
2007 }
2008 return 0;
2009}
2010
2011/* *INDENT-OFF* */
2012VLIB_CLI_COMMAND (f_command, static) =
2013{
2014 .path = "show clock",
2015 .short_help = "show clock",
2016 .function = show_clock_command_fn,
2017};
2018/* *INDENT-ON* */
2019
Dave Barachab1a50c2020-10-06 14:08:16 -04002020vlib_thread_main_t *
2021vlib_get_thread_main_not_inline (void)
2022{
2023 return vlib_get_thread_main ();
2024}
2025
Dave Barach9b8ffd92016-07-08 08:13:45 -04002026/*
2027 * fd.io coding-style-patch-verification: ON
2028 *
2029 * Local Variables:
2030 * eval: (c-set-style "gnu")
2031 * End:
2032 */