blob: dd7de73ad8c4cb93a653605152b1865c1ace6757 [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
Damjan Marion14361002021-03-11 12:17:33 +010051 ELOG_TYPE_DECLARE (e) = {
52 .format = "bar-trace-%s-#%d",
53 .format_args = "T4i4",
54 };
55
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010056 struct
57 {
Dave Barach88c6e002018-09-30 15:54:06 -040058 u32 caller, count, t_entry, t_open, t_closed;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010059 } *ed = 0;
60
61 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
62 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
Dave Barachb09f4d02019-07-15 16:00:03 -040063 ed->caller = elog_string (&vlib_global_main.elog_main,
64 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010065 ed->t_entry = (int) (1000000.0 * t_entry);
66 ed->t_open = (int) (1000000.0 * t_open);
67 ed->t_closed = (int) (1000000.0 * t_closed);
68}
69
70static inline void
71barrier_trace_sync_rec (f64 t_entry)
72{
Dave Barach88c6e002018-09-30 15:54:06 -040073 if (!vlib_worker_threads->barrier_elog_enabled)
74 return;
75
Damjan Marion14361002021-03-11 12:17:33 +010076 ELOG_TYPE_DECLARE (e) = {
77 .format = "bar-syncrec-%s-#%d",
78 .format_args = "T4i4",
79 };
80
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010081 struct
82 {
Dave Barach88c6e002018-09-30 15:54:06 -040083 u32 caller, depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010084 } *ed = 0;
85
86 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
87 ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
Dave Barachb09f4d02019-07-15 16:00:03 -040088 ed->caller = elog_string (&vlib_global_main.elog_main,
89 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010090}
91
92static inline void
93barrier_trace_release_rec (f64 t_entry)
94{
Dave Barach88c6e002018-09-30 15:54:06 -040095 if (!vlib_worker_threads->barrier_elog_enabled)
96 return;
97
Damjan Marion14361002021-03-11 12:17:33 +010098 ELOG_TYPE_DECLARE (e) = {
99 .format = "bar-relrrec-#%d",
100 .format_args = "i4",
101 };
102
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100103 struct
104 {
Dave Barach88c6e002018-09-30 15:54:06 -0400105 u32 depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100106 } *ed = 0;
107
108 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100109 ed->depth = (int) vlib_worker_threads[0].recursion_level;
110}
111
112static inline void
113barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
114{
Dave Barach88c6e002018-09-30 15:54:06 -0400115 if (!vlib_worker_threads->barrier_elog_enabled)
116 return;
117
Damjan Marion14361002021-03-11 12:17:33 +0100118 ELOG_TYPE_DECLARE (e) = {
119 .format = "bar-rel-#%d-e%d-u%d-t%d",
120 .format_args = "i4i4i4i4",
121 };
122
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100123 struct
124 {
Dave Barach88c6e002018-09-30 15:54:06 -0400125 u32 count, t_entry, t_update_main, t_closed_total;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100126 } *ed = 0;
127
128 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
129 ed->t_entry = (int) (1000000.0 * t_entry);
130 ed->t_update_main = (int) (1000000.0 * t_update_main);
131 ed->t_closed_total = (int) (1000000.0 * t_closed_total);
132 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
133
134 /* Reset context for next trace */
135 vlib_worker_threads[0].barrier_context = NULL;
136}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100137
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138uword
Damjan Marionf55f9b82017-05-10 21:06:28 +0200139os_get_nthreads (void)
Dave Barach01d86c72016-08-08 15:13:42 -0400140{
Dave Barach2180bac2019-05-10 15:25:10 -0400141 return vec_len (vlib_thread_stacks);
Dave Barach01d86c72016-08-08 15:13:42 -0400142}
143
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144void
145vlib_set_thread_name (char *name)
146{
147 int pthread_setname_np (pthread_t __target_thread, const char *__name);
Dave Barachb2a6e252016-07-27 10:00:58 -0400148 int rv;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400149 pthread_t thread = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
Dave Barach9b8ffd92016-07-08 08:13:45 -0400151 if (thread)
Dave Barachb2a6e252016-07-27 10:00:58 -0400152 {
153 rv = pthread_setname_np (thread, name);
154 if (rv)
Ed Warnicke853e7202016-08-12 11:42:26 -0700155 clib_warning ("pthread_setname_np returned %d", rv);
Dave Barachb2a6e252016-07-27 10:00:58 -0400156 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157}
158
Dave Barach9b8ffd92016-07-08 08:13:45 -0400159static int
160sort_registrations_by_no_clone (void *a0, void *a1)
161{
162 vlib_thread_registration_t **tr0 = a0;
163 vlib_thread_registration_t **tr1 = a1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Dave Barach9b8ffd92016-07-08 08:13:45 -0400165 return ((i32) ((*tr0)->no_data_structure_clone)
166 - ((i32) ((*tr1)->no_data_structure_clone)));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167}
168
169static uword *
Damjan Marion01914ce2017-09-14 19:04:50 +0200170clib_sysfs_list_to_bitmap (char *filename)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171{
172 FILE *fp;
173 uword *r = 0;
174
175 fp = fopen (filename, "r");
176
177 if (fp != NULL)
178 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400179 u8 *buffer = 0;
180 vec_validate (buffer, 256 - 1);
181 if (fgets ((char *) buffer, 256, fp))
182 {
183 unformat_input_t in;
184 unformat_init_string (&in, (char *) buffer,
185 strlen ((char *) buffer));
Dave Barachb2a6e252016-07-27 10:00:58 -0400186 if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
Ed Warnicke853e7202016-08-12 11:42:26 -0700187 clib_warning ("unformat_bitmap_list failed");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400188 unformat_free (&in);
189 }
190 vec_free (buffer);
191 fclose (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 }
193 return r;
194}
195
196
197/* Called early in the init sequence */
198
199clib_error_t *
200vlib_thread_init (vlib_main_t * vm)
201{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400202 vlib_thread_main_t *tm = &vlib_thread_main;
203 vlib_worker_thread_t *w;
204 vlib_thread_registration_t *tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 u32 n_vlib_mains = 1;
206 u32 first_index = 1;
207 u32 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400208 uword *avail_cpu;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
210 /* get bitmaps of active cpu cores and sockets */
211 tm->cpu_core_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200212 clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 tm->cpu_socket_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200214 clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Dave Barach9b8ffd92016-07-08 08:13:45 -0400216 avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
218 /* skip cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219 for (i = 0; i < tm->skip_cores; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400221 uword c = clib_bitmap_first_set (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 if (c == ~0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400223 return clib_error_return (0, "no available cpus to skip");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224
Dave Barach9b8ffd92016-07-08 08:13:45 -0400225 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 }
227
228 /* grab cpu for main thread */
Damjan Marion858151f2018-07-11 10:51:00 +0200229 if (tm->main_lcore == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 {
Damjan Marion858151f2018-07-11 10:51:00 +0200231 /* if main-lcore is not set, we try to use lcore 1 */
232 if (clib_bitmap_get (avail_cpu, 1))
233 tm->main_lcore = 1;
234 else
235 tm->main_lcore = clib_bitmap_first_set (avail_cpu);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400236 if (tm->main_lcore == (u8) ~ 0)
237 return clib_error_return (0, "no available cpus to be used for the"
238 " main thread");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 }
240 else
241 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400242 if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
243 return clib_error_return (0, "cpu %u is not available to be used"
244 " for the main thread", tm->main_lcore);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
248 /* assume that there is socket 0 only if there is no data from sysfs */
249 if (!tm->cpu_socket_bitmap)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400250 tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251
Christophe Fontainefef15b42016-04-09 12:38:49 +0900252 /* pin main thread to main_lcore */
Damjan Marion878c6092017-01-04 13:19:27 +0100253 if (tm->cb.vlib_thread_set_lcore_cb)
254 {
255 tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
256 }
Damjan Marion858151f2018-07-11 10:51:00 +0200257 else
258 {
259 cpu_set_t cpuset;
260 CPU_ZERO (&cpuset);
261 CPU_SET (tm->main_lcore, &cpuset);
262 pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
263 }
Christophe Fontainefef15b42016-04-09 12:38:49 +0900264
Dave Barach2180bac2019-05-10 15:25:10 -0400265 /* Set up thread 0 */
266 vec_validate_aligned (vlib_worker_threads, 0, CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400267 _vec_len (vlib_worker_threads) = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268 w = vlib_worker_threads;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400269 w->thread_mheap = clib_mem_get_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 w->thread_stack = vlib_thread_stacks[0];
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200271 w->cpu_id = tm->main_lcore;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400272 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200273 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 tm->n_vlib_mains = 1;
275
Jon Loeligerf617b142020-01-30 18:37:47 -0600276 vlib_get_thread_core_numa (w, w->cpu_id);
277
Pavel Kotucek1e765832016-09-23 08:54:14 +0200278 if (tm->sched_policy != ~0)
279 {
280 struct sched_param sched_param;
281 if (!sched_getparam (w->lwp, &sched_param))
282 {
283 if (tm->sched_priority != ~0)
284 sched_param.sched_priority = tm->sched_priority;
285 sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
286 }
287 }
288
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289 /* assign threads to cores and set n_vlib_mains */
290 tr = tm->next;
291
292 while (tr)
293 {
294 vec_add1 (tm->registrations, tr);
295 tr = tr->next;
296 }
297
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298 vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
300 for (i = 0; i < vec_len (tm->registrations); i++)
301 {
302 int j;
303 tr = tm->registrations[i];
304 tr->first_index = first_index;
305 first_index += tr->count;
306 n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
307
308 /* construct coremask */
309 if (tr->use_pthreads || !tr->count)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400310 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311
312 if (tr->coremask)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313 {
314 uword c;
315 /* *INDENT-OFF* */
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100316 clib_bitmap_foreach (c, tr->coremask) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 if (clib_bitmap_get(avail_cpu, c) == 0)
318 return clib_error_return (0, "cpu %u is not available to be used"
319 " for the '%s' thread",c, tr->name);
320
321 avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100322 }
Dave Barach2180bac2019-05-10 15:25:10 -0400323 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400324 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326 {
327 for (j = 0; j < tr->count; j++)
328 {
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300329 /* Do not use CPU 0 by default - leave it to the host and IRQs */
330 uword avail_c0 = clib_bitmap_get (avail_cpu, 0);
331 avail_cpu = clib_bitmap_set (avail_cpu, 0, 0);
332
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333 uword c = clib_bitmap_first_set (avail_cpu);
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300334 /* Use CPU 0 as a last resort */
335 if (c == ~0 && avail_c0)
336 {
337 c = 0;
338 avail_c0 = 0;
339 }
340
Dave Barach9b8ffd92016-07-08 08:13:45 -0400341 if (c == ~0)
342 return clib_error_return (0,
343 "no available cpus to be used for"
344 " the '%s' thread", tr->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300346 avail_cpu = clib_bitmap_set (avail_cpu, 0, avail_c0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400347 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
348 tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
349 }
350 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 }
352
Dave Barach9b8ffd92016-07-08 08:13:45 -0400353 clib_bitmap_free (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354
355 tm->n_vlib_mains = n_vlib_mains;
356
Dave Barach2180bac2019-05-10 15:25:10 -0400357 /*
358 * Allocate the remaining worker threads, and thread stack vector slots
359 * from now on, calls to os_get_nthreads() will return the correct
360 * answer.
361 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400362 vec_validate_aligned (vlib_worker_threads, first_index - 1,
363 CLIB_CACHE_LINE_BYTES);
Dave Barach2180bac2019-05-10 15:25:10 -0400364 vec_validate (vlib_thread_stacks, vec_len (vlib_worker_threads) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 return 0;
366}
367
Dave Barach9b8ffd92016-07-08 08:13:45 -0400368vlib_frame_queue_t *
369vlib_frame_queue_alloc (int nelts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400371 vlib_frame_queue_t *fq;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372
Dave Barach9b8ffd92016-07-08 08:13:45 -0400373 fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400374 clib_memset (fq, 0, sizeof (*fq));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 fq->nelts = nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376 fq->vector_threshold = 128; // packets
377 vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
379 if (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400380 {
381 if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
382 fformat (stderr, "WARNING: fq->tail unaligned\n");
383 if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
384 fformat (stderr, "WARNING: fq->head unaligned\n");
385 if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
386 fformat (stderr, "WARNING: fq->elts unaligned\n");
387
388 if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
389 fformat (stderr, "WARNING: fq->elts[0] size %d\n",
390 sizeof (fq->elts[0]));
391 if (nelts & (nelts - 1))
392 {
393 fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
394 abort ();
395 }
396 }
397
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 return (fq);
399}
400
401void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400402void
403vl_msg_api_handler_no_free (void *v)
404{
405}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406
407/* Turned off, save as reference material... */
408#if 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400409static inline int
410vlib_frame_queue_dequeue_internal (int thread_id,
411 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412{
413 vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
414 vlib_frame_queue_elt_t *elt;
415 vlib_frame_t *f;
416 vlib_pending_frame_t *p;
417 vlib_node_runtime_t *r;
418 u32 node_runtime_index;
419 int msg_type;
420 u64 before;
421 int processed = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400422
423 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424
425 while (1)
426 {
427 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400428 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429
Dave Barach9b8ffd92016-07-08 08:13:45 -0400430 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
432 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400433 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435 before = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436
437 f = elt->frame;
438 node_runtime_index = elt->node_runtime_index;
439 msg_type = elt->msg_type;
440
441 switch (msg_type)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 {
443 case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
444 vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
445 /* note fallthrough... */
446 case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
447 r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
448 node_runtime_index);
449 vlib_frame_free (vm, r, f);
450 break;
451 case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
452 vec_add2 (vm->node_main.pending_frames, p, 1);
453 f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
454 p->node_runtime_index = elt->node_runtime_index;
455 p->frame_index = vlib_frame_index (vm, f);
456 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
457 fq->dequeue_vectors += (u64) f->n_vectors;
458 break;
459 case VLIB_FRAME_QUEUE_ELT_API_MSG:
460 vl_msg_api_handler_no_free (f);
461 break;
462 default:
463 clib_warning ("bogus frame queue message, type %d", msg_type);
464 break;
465 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 elt->valid = 0;
467 fq->dequeues++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400468 fq->dequeue_ticks += clib_cpu_time_now () - before;
469 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470 fq->head++;
471 processed++;
472 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400473 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474 return processed;
475}
476
Dave Barach9b8ffd92016-07-08 08:13:45 -0400477int
478vlib_frame_queue_dequeue (int thread_id,
479 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480{
481 return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
482}
483
Dave Barach9b8ffd92016-07-08 08:13:45 -0400484int
485vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
486 u32 frame_queue_index, vlib_frame_t * frame,
487 vlib_frame_queue_msg_type_t type)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488{
489 vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
490 vlib_frame_queue_elt_t *elt;
491 u32 save_count;
492 u64 new_tail;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400493 u64 before = clib_cpu_time_now ();
494
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495 ASSERT (fq);
496
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000497 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
499 /* Wait until a ring slot is available */
500 while (new_tail >= fq->head + fq->nelts)
501 {
502 f64 b4 = vlib_time_now_ticks (vm, before);
503 vlib_worker_thread_barrier_check (vm, b4);
504 /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
Damjan Marion586afd72017-04-05 19:18:20 +0200505 // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 }
507
Dave Barach9b8ffd92016-07-08 08:13:45 -0400508 elt = fq->elts + (new_tail & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
510 /* this would be very bad... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400511 while (elt->valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 {
513 }
514
515 /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
516 save_count = frame->n_vectors;
517
518 elt->frame = frame;
519 elt->node_runtime_index = node_runtime_index;
520 elt->msg_type = type;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400521 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522 elt->valid = 1;
523
524 return save_count;
525}
526#endif /* 0 */
527
528/* To be called by vlib worker threads upon startup */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400529void
530vlib_worker_thread_init (vlib_worker_thread_t * w)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400532 vlib_thread_main_t *tm = vlib_get_thread_main ();
533
Dave Barachfdf49442016-12-20 12:48:14 -0500534 /*
535 * Note: disabling signals in worker threads as follows
536 * prevents the api post-mortem dump scheme from working
537 * {
538 * sigset_t s;
539 * sigfillset (&s);
540 * pthread_sigmask (SIG_SETMASK, &s, 0);
541 * }
542 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543
544 clib_mem_set_heap (w->thread_mheap);
545
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546 if (vec_len (tm->thread_prefix) && w->registration->short_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400548 w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
549 w->registration->short_name, w->instance_id, '\0');
550 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551 }
552
553 if (!w->registration->use_pthreads)
554 {
555
556 /* Initial barrier sync, for both worker and i/o threads */
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000557 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558
559 while (*vlib_worker_threads->wait_at_barrier)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400560 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000562 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 }
564}
565
Dave Barach9b8ffd92016-07-08 08:13:45 -0400566void *
567vlib_worker_thread_bootstrap_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568{
569 void *rv;
570 vlib_worker_thread_t *w = arg;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400571
572 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200573 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
Damjan Marionf55f9b82017-05-10 21:06:28 +0200575 __os_thread_index = w - vlib_worker_threads;
Damjan Marion586afd72017-04-05 19:18:20 +0200576
Damjan Marioncea46522020-05-21 16:47:05 +0200577 vlib_process_start_switch_stack (vlib_mains[__os_thread_index], 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400578 rv = (void *) clib_calljmp
579 ((uword (*)(uword)) w->thread_function,
580 (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581 /* NOTREACHED, we hope */
582 return rv;
583}
584
Dave Baracha690fdb2020-01-21 12:34:55 -0500585void
586vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200587{
588 const char *sys_cpu_path = "/sys/devices/system/cpu/cpu";
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800589 const char *sys_node_path = "/sys/devices/system/node/node";
590 clib_bitmap_t *nbmp = 0, *cbmp = 0;
591 u32 node;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200592 u8 *p = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500593 int core_id = -1, numa_id = -1;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200594
595 p = format (p, "%s%u/topology/core_id%c", sys_cpu_path, cpu_id, 0);
596 clib_sysfs_read ((char *) p, "%d", &core_id);
597 vec_reset_length (p);
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800598
599 /* *INDENT-OFF* */
600 clib_sysfs_read ("/sys/devices/system/node/online", "%U",
601 unformat_bitmap_list, &nbmp);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100602 clib_bitmap_foreach (node, nbmp) {
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800603 p = format (p, "%s%u/cpulist%c", sys_node_path, node, 0);
604 clib_sysfs_read ((char *) p, "%U", unformat_bitmap_list, &cbmp);
605 if (clib_bitmap_get (cbmp, cpu_id))
606 numa_id = node;
607 vec_reset_length (cbmp);
608 vec_reset_length (p);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100609 }
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800610 /* *INDENT-ON* */
611 vec_free (nbmp);
612 vec_free (cbmp);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200613 vec_free (p);
614
615 w->core_id = core_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500616 w->numa_id = numa_id;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200617}
618
Damjan Marion878c6092017-01-04 13:19:27 +0100619static clib_error_t *
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200620vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned cpu_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621{
Damjan Marion57d1ec02020-09-16 21:15:44 +0200622 clib_mem_main_t *mm = &clib_mem_main;
Damjan Marion878c6092017-01-04 13:19:27 +0100623 vlib_thread_main_t *tm = &vlib_thread_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400624 void *(*fp_arg) (void *) = fp;
Dave Baracha690fdb2020-01-21 12:34:55 -0500625 void *numa_heap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200627 w->cpu_id = cpu_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500628 vlib_get_thread_core_numa (w, cpu_id);
Dave Baracha690fdb2020-01-21 12:34:55 -0500629
630 /* Set up NUMA-bound heap if indicated */
Damjan Marion57d1ec02020-09-16 21:15:44 +0200631 if (mm->per_numa_mheaps[w->numa_id] == 0)
Dave Baracha690fdb2020-01-21 12:34:55 -0500632 {
633 /* If the user requested a NUMA heap, create it... */
634 if (tm->numa_heap_size)
635 {
Damjan Marion2bc1af52020-10-02 15:01:12 +0200636 clib_mem_set_numa_affinity (w->numa_id, 1 /* force */ );
637 numa_heap = clib_mem_create_heap (0 /* DIY */ , tm->numa_heap_size,
638 1 /* is_locked */ ,
639 "numa %u heap", w->numa_id);
640 clib_mem_set_default_numa_affinity ();
Damjan Marion57d1ec02020-09-16 21:15:44 +0200641 mm->per_numa_mheaps[w->numa_id] = numa_heap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500642 }
643 else
644 {
645 /* Or, use the main heap */
Damjan Marion57d1ec02020-09-16 21:15:44 +0200646 mm->per_numa_mheaps[w->numa_id] = w->thread_mheap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500647 }
648 }
649
Damjan Marion878c6092017-01-04 13:19:27 +0100650 if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200651 return tm->cb.vlib_launch_thread_cb (fp, (void *) w, cpu_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400653 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400654 pthread_t worker;
655 cpu_set_t cpuset;
656 CPU_ZERO (&cpuset);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200657 CPU_SET (cpu_id, &cpuset);
Christophe Fontainefef15b42016-04-09 12:38:49 +0900658
Damjan Marion878c6092017-01-04 13:19:27 +0100659 if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
660 return clib_error_return_unix (0, "pthread_create");
661
662 if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
663 return clib_error_return_unix (0, "pthread_setaffinity_np");
664
665 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667}
668
Dave Barach9b8ffd92016-07-08 08:13:45 -0400669static clib_error_t *
670start_workers (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671{
672 int i, j;
673 vlib_worker_thread_t *w;
674 vlib_main_t *vm_clone;
675 void *oldheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400676 vlib_thread_main_t *tm = &vlib_thread_main;
677 vlib_thread_registration_t *tr;
678 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 u32 n_vlib_mains = tm->n_vlib_mains;
680 u32 worker_thread_index;
Damjan Marionbfa75d62020-10-06 17:46:06 +0200681 clib_mem_heap_t *main_heap = clib_mem_get_per_cpu_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400682
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 vec_reset_length (vlib_worker_threads);
684
685 /* Set up the main thread */
686 vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
Dave Barach3e7deb12016-02-05 16:29:53 -0500687 w->elog_track.name = "main thread";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 elog_track_register (&vm->elog_main, &w->elog_track);
689
Dave Barach9b8ffd92016-07-08 08:13:45 -0400690 if (vec_len (tm->thread_prefix))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400692 w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
693 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 }
695
Dave Barach9b8ffd92016-07-08 08:13:45 -0400696 vm->elog_main.lock =
697 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Dave Barach848191d2016-04-28 16:24:15 -0400698 vm->elog_main.lock[0] = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400699
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000700 clib_callback_data_init (&vm->vlib_node_runtime_perf_callbacks,
701 &vm->worker_thread_main_loop_callback_lock);
702
Dave Barach1c556d12020-10-02 11:35:44 -0400703 /* Replace hand-crafted length-1 vector with a real vector */
704 vlib_mains = 0;
705
706 vec_validate_aligned (vlib_mains, n_vlib_mains - 1, CLIB_CACHE_LINE_BYTES);
707 _vec_len (vlib_mains) = 0;
708 vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
709
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 if (n_vlib_mains > 1)
711 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400712 vlib_worker_threads->wait_at_barrier =
713 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714 vlib_worker_threads->workers_at_barrier =
Dave Barach9b8ffd92016-07-08 08:13:45 -0400715 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100717 vlib_worker_threads->node_reforks_required =
718 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
719
Dave Barachf6c68d72018-11-01 08:12:52 -0400720 /* We'll need the rpc vector lock... */
721 clib_spinlock_init (&vm->pending_rpc_lock);
722
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 /* Ask for an initial barrier sync */
724 *vlib_worker_threads->workers_at_barrier = 0;
725 *vlib_worker_threads->wait_at_barrier = 1;
726
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100727 /* Without update or refork */
728 *vlib_worker_threads->node_reforks_required = 0;
729 vm->need_vlib_worker_thread_node_runtime_update = 0;
730
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100731 /* init timing */
732 vm->barrier_epoch = 0;
733 vm->barrier_no_close_before = 0;
734
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735 worker_thread_index = 1;
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000736 clib_spinlock_init (&vm->worker_thread_main_loop_callback_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
Dave Barach9b8ffd92016-07-08 08:13:45 -0400738 for (i = 0; i < vec_len (tm->registrations); i++)
739 {
740 vlib_node_main_t *nm, *nm_clone;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400741 int k;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742
Dave Barach9b8ffd92016-07-08 08:13:45 -0400743 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700744
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 if (tr->count == 0)
746 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747
Dave Barach9b8ffd92016-07-08 08:13:45 -0400748 for (k = 0; k < tr->count; k++)
749 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100750 vlib_node_t *n;
751
Dave Barach9b8ffd92016-07-08 08:13:45 -0400752 vec_add2 (vlib_worker_threads, w, 1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400753 /* Currently unused, may not really work */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754 if (tr->mheap_size)
Damjan Marion4537c302020-09-28 19:03:37 +0200755 w->thread_mheap = clib_mem_create_heap (0, tr->mheap_size,
756 /* unlocked */ 0,
757 "%s%d heap",
758 tr->name, k);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400759 else
760 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200761
762 w->thread_stack =
763 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400764 w->thread_function = tr->function;
765 w->thread_function_arg = w;
766 w->instance_id = k;
767 w->registration = tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 w->elog_track.name =
770 (char *) format (0, "%s %d", tr->name, k + 1);
771 vec_add1 (w->elog_track.name, 0);
772 elog_track_register (&vm->elog_main, &w->elog_track);
Bud Grise68adab92016-02-12 10:36:11 -0500773
Dave Barach9b8ffd92016-07-08 08:13:45 -0400774 if (tr->no_data_structure_clone)
775 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 /* Fork vlib_global_main et al. Look for bugs here */
778 oldheap = clib_mem_set_heap (w->thread_mheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200780 vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
781 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400782 clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
Damjan Marion586afd72017-04-05 19:18:20 +0200784 vm_clone->thread_index = worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400785 vm_clone->heap_base = w->thread_mheap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400786 vm_clone->heap_aligned_base = (void *)
787 (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
Damjan Marione9f929b2017-03-16 11:32:09 +0100788 vm_clone->init_functions_called =
789 hash_create (0, /* value bytes */ 0);
Dave Barach2877eee2017-12-15 12:22:57 -0500790 vm_clone->pending_rpc_requests = 0;
791 vec_validate (vm_clone->pending_rpc_requests, 0);
792 _vec_len (vm_clone->pending_rpc_requests) = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400793 clib_memset (&vm_clone->random_buffer, 0,
794 sizeof (vm_clone->random_buffer));
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000795 clib_spinlock_init
796 (&vm_clone->worker_thread_main_loop_callback_lock);
797 clib_callback_data_init
798 (&vm_clone->vlib_node_runtime_perf_callbacks,
799 &vm_clone->worker_thread_main_loop_callback_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800
Dave Barach9b8ffd92016-07-08 08:13:45 -0400801 nm = &vlib_mains[0]->node_main;
802 nm_clone = &vm_clone->node_main;
803 /* fork next frames array, preserving node runtime indices */
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200804 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
805 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400806 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
807 {
808 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
809 u32 save_node_runtime_index;
810 u32 save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811
Dave Barach9b8ffd92016-07-08 08:13:45 -0400812 save_node_runtime_index = nf->node_runtime_index;
813 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
814 vlib_next_frame_init (nf);
815 nf->node_runtime_index = save_node_runtime_index;
816 nf->flags = save_flags;
817 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818
Dave Barach9b8ffd92016-07-08 08:13:45 -0400819 /* fork the frame dispatch queue */
820 nm_clone->pending_frames = 0;
Dave Barach53fe4a72019-01-26 09:50:26 -0500821 vec_validate (nm_clone->pending_frames, 10);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400822 _vec_len (nm_clone->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823
Dave Barach9b8ffd92016-07-08 08:13:45 -0400824 /* fork nodes */
825 nm_clone->nodes = 0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100826
827 /* Allocate all nodes in single block for speed */
828 n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
829
Dave Barach9b8ffd92016-07-08 08:13:45 -0400830 for (j = 0; j < vec_len (nm->nodes); j++)
831 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400832 clib_memcpy (n, nm->nodes[j], sizeof (*n));
833 /* none of the copied nodes have enqueue rights given out */
834 n->owner_node_index = VLIB_INVALID_NODE_INDEX;
Dave Barachb7b92992018-10-17 10:38:51 -0400835 clib_memset (&n->stats_total, 0, sizeof (n->stats_total));
836 clib_memset (&n->stats_last_clear, 0,
837 sizeof (n->stats_last_clear));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400838 vec_add1 (nm_clone->nodes, n);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100839 n++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400840 }
841 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200842 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
843 CLIB_CACHE_LINE_BYTES);
JingLiuZTE30af5da2017-07-24 10:53:31 +0800844 vec_foreach (rt,
845 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Damjan Marione9f929b2017-03-16 11:32:09 +0100846 {
847 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200848 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100849 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100850 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100851 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100852 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
853 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100854 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700855
Dave Barach9b8ffd92016-07-08 08:13:45 -0400856 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200857 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
858 CLIB_CACHE_LINE_BYTES);
Damjan Marion94100532020-11-06 23:25:57 +0100859 clib_interrupt_init (
860 &nm_clone->interrupts,
861 vec_len (nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT]));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400862 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
Damjan Marione9f929b2017-03-16 11:32:09 +0100863 {
864 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200865 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100866 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100867 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100868 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100869 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
870 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100871 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872
Dave Barach53fe4a72019-01-26 09:50:26 -0500873 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
874 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
875 CLIB_CACHE_LINE_BYTES);
876 vec_foreach (rt,
877 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
878 {
879 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
880 rt->thread_index = vm_clone->thread_index;
881 /* copy initial runtime_data from node */
882 if (n->runtime_data && n->runtime_data_bytes > 0)
883 clib_memcpy (rt->runtime_data, n->runtime_data,
884 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
885 n->runtime_data_bytes));
886 }
887
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200888 nm_clone->processes = vec_dup_aligned (nm->processes,
889 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700890
Dave Barach593eedf2019-03-10 09:44:51 -0400891 /* Create per-thread frame freelist */
892 nm_clone->frame_sizes = vec_new (vlib_frame_size_t, 1);
893#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Florin Coras93992a92017-05-24 18:03:56 -0700894 nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
Dave Barach593eedf2019-03-10 09:44:51 -0400895#endif
Dave Barach687c9022019-07-23 10:22:31 -0400896 nm_clone->node_by_error = nm->node_by_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897
Dave Barach9b8ffd92016-07-08 08:13:45 -0400898 /* Packet trace buffers are guaranteed to be empty, nothing to do here */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100899
Dave Barach9b8ffd92016-07-08 08:13:45 -0400900 clib_mem_set_heap (oldheap);
Dave Barach80f54e22017-03-08 19:08:56 -0500901 vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902
Ole Troan233e4682019-05-16 15:01:34 +0200903 /* Switch to the stats segment ... */
904 void *oldheap = vlib_stats_push_heap (0);
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200905 vm_clone->error_main.counters = vec_dup_aligned
906 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
Ole Troan233e4682019-05-16 15:01:34 +0200907 vlib_stats_pop_heap2 (vm_clone->error_main.counters,
908 worker_thread_index, oldheap, 1);
909
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200910 vm_clone->error_main.counters_last_clear = vec_dup_aligned
911 (vlib_mains[0]->error_main.counters_last_clear,
912 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700913
Dave Barach9b8ffd92016-07-08 08:13:45 -0400914 worker_thread_index++;
915 }
916 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917 }
918 else
919 {
920 /* only have non-data-structure copy threads to create... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400921 for (i = 0; i < vec_len (tm->registrations); i++)
922 {
923 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925 for (j = 0; j < tr->count; j++)
926 {
927 vec_add2 (vlib_worker_threads, w, 1);
928 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400929 {
Damjan Marion4537c302020-09-28 19:03:37 +0200930 w->thread_mheap = clib_mem_create_heap (0, tr->mheap_size,
931 /* locked */ 0,
932 "%s%d heap",
933 tr->name, j);
Dave Barach6a5adc32018-07-04 10:56:23 -0400934 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400935 else
936 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200937 w->thread_stack =
938 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400939 w->thread_function = tr->function;
940 w->thread_function_arg = w;
941 w->instance_id = j;
942 w->elog_track.name =
943 (char *) format (0, "%s %d", tr->name, j + 1);
944 w->registration = tr;
945 vec_add1 (w->elog_track.name, 0);
946 elog_track_register (&vm->elog_main, &w->elog_track);
947 }
948 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949 }
950
951 worker_thread_index = 1;
952
953 for (i = 0; i < vec_len (tm->registrations); i++)
954 {
Damjan Marion878c6092017-01-04 13:19:27 +0100955 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 int j;
957
958 tr = tm->registrations[i];
959
960 if (tr->use_pthreads || tm->use_pthreads)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400961 {
962 for (j = 0; j < tr->count; j++)
963 {
964 w = vlib_worker_threads + worker_thread_index++;
Damjan Marion878c6092017-01-04 13:19:27 +0100965 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
966 w, 0);
967 if (err)
968 clib_error_report (err);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400969 }
970 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400972 {
973 uword c;
Damjan Marion878c6092017-01-04 13:19:27 +0100974 /* *INDENT-OFF* */
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100975 clib_bitmap_foreach (c, tr->coremask) {
Damjan Marion878c6092017-01-04 13:19:27 +0100976 w = vlib_worker_threads + worker_thread_index++;
977 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
978 w, c);
979 if (err)
980 clib_error_report (err);
Damjan Marionf0ca1e82020-12-13 23:26:56 +0100981 }
Damjan Marion878c6092017-01-04 13:19:27 +0100982 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400983 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700984 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400985 vlib_worker_thread_barrier_sync (vm);
986 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987 return 0;
988}
989
990VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
991
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100992
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100993static inline void
994worker_thread_node_runtime_update_internal (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995{
996 int i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997 vlib_main_t *vm;
998 vlib_node_main_t *nm, *nm_clone;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999 vlib_main_t *vm_clone;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001000 vlib_node_runtime_t *rt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001001
Damjan Marion586afd72017-04-05 19:18:20 +02001002 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003
Ed Warnickecb9cada2015-12-08 15:45:58 -07001004 vm = vlib_mains[0];
1005 nm = &vm->node_main;
1006
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1008
Dave Barach9b8ffd92016-07-08 08:13:45 -04001009 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001010 * Scrape all runtime stats, so we don't lose node runtime(s) with
1011 * pending counts, or throw away worker / io thread counts.
1012 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001013 for (j = 0; j < vec_len (nm->nodes); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001015 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016 n = nm->nodes[j];
1017 vlib_node_sync_stats (vm, n);
1018 }
1019
1020 for (i = 1; i < vec_len (vlib_mains); i++)
1021 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 vlib_node_t *n;
1023
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 vm_clone = vlib_mains[i];
1025 nm_clone = &vm_clone->node_main;
1026
Dave Barach9b8ffd92016-07-08 08:13:45 -04001027 for (j = 0; j < vec_len (nm_clone->nodes); j++)
1028 {
1029 n = nm_clone->nodes[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030
Dave Barach9b8ffd92016-07-08 08:13:45 -04001031 rt = vlib_node_get_runtime (vm_clone, n->index);
1032 vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1033 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 }
1035
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001036 /* Per-worker clone rebuilds are now done on each thread */
1037}
1038
1039
1040void
1041vlib_worker_thread_node_refork (void)
1042{
1043 vlib_main_t *vm, *vm_clone;
1044 vlib_node_main_t *nm, *nm_clone;
1045 vlib_node_t **old_nodes_clone;
1046 vlib_node_runtime_t *rt, *old_rt;
1047
1048 vlib_node_t *new_n_clone;
1049
1050 int j;
1051
1052 vm = vlib_mains[0];
1053 nm = &vm->node_main;
1054 vm_clone = vlib_get_main ();
1055 nm_clone = &vm_clone->node_main;
1056
1057 /* Re-clone error heap */
1058 u64 *old_counters = vm_clone->error_main.counters;
1059 u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1060
Dave Barach178cf492018-11-13 16:34:13 -05001061 clib_memcpy_fast (&vm_clone->error_main, &vm->error_main,
1062 sizeof (vm->error_main));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001063 j = vec_len (vm->error_main.counters) - 1;
Ole Troan233e4682019-05-16 15:01:34 +02001064
1065 /* Switch to the stats segment ... */
1066 void *oldheap = vlib_stats_push_heap (0);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001067 vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001068 vm_clone->error_main.counters = old_counters;
Ole Troan233e4682019-05-16 15:01:34 +02001069 vlib_stats_pop_heap2 (vm_clone->error_main.counters, vm_clone->thread_index,
1070 oldheap, 0);
1071
1072 vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001073 vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1074
1075 nm_clone = &vm_clone->node_main;
1076 vec_free (nm_clone->next_frames);
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001077 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1078 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001079
1080 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001082 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1083 u32 save_node_runtime_index;
1084 u32 save_flags;
Damjan Marionbc20bdf2015-12-17 14:28:18 +01001085
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001086 save_node_runtime_index = nf->node_runtime_index;
1087 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1088 vlib_next_frame_init (nf);
1089 nf->node_runtime_index = save_node_runtime_index;
1090 nf->flags = save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001092
1093 old_nodes_clone = nm_clone->nodes;
1094 nm_clone->nodes = 0;
1095
1096 /* re-fork nodes */
1097
1098 /* Allocate all nodes in single block for speed */
1099 new_n_clone =
1100 clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1101 for (j = 0; j < vec_len (nm->nodes); j++)
1102 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001103 vlib_node_t *new_n = nm->nodes[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001104
Dave Barach178cf492018-11-13 16:34:13 -05001105 clib_memcpy_fast (new_n_clone, new_n, sizeof (*new_n));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001106 /* none of the copied nodes have enqueue rights given out */
1107 new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1108
1109 if (j >= vec_len (old_nodes_clone))
1110 {
1111 /* new node, set to zero */
Dave Barachb7b92992018-10-17 10:38:51 -04001112 clib_memset (&new_n_clone->stats_total, 0,
1113 sizeof (new_n_clone->stats_total));
1114 clib_memset (&new_n_clone->stats_last_clear, 0,
1115 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001116 }
1117 else
1118 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001119 vlib_node_t *old_n_clone = old_nodes_clone[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001120 /* Copy stats if the old data is valid */
Dave Barach178cf492018-11-13 16:34:13 -05001121 clib_memcpy_fast (&new_n_clone->stats_total,
1122 &old_n_clone->stats_total,
1123 sizeof (new_n_clone->stats_total));
1124 clib_memcpy_fast (&new_n_clone->stats_last_clear,
1125 &old_n_clone->stats_last_clear,
1126 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001127
1128 /* keep previous node state */
1129 new_n_clone->state = old_n_clone->state;
1130 }
1131 vec_add1 (nm_clone->nodes, new_n_clone);
1132 new_n_clone++;
1133 }
1134 /* Free the old node clones */
1135 clib_mem_free (old_nodes_clone[0]);
1136
1137 vec_free (old_nodes_clone);
1138
1139
1140 /* re-clone internal nodes */
1141 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1142 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001143 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1144 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001145
1146 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1147 {
1148 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1149 rt->thread_index = vm_clone->thread_index;
1150 /* copy runtime_data, will be overwritten later for existing rt */
1151 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001152 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1153 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1154 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001155 }
1156
1157 for (j = 0; j < vec_len (old_rt); j++)
1158 {
1159 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1160 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001161 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1162 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001163 }
1164
1165 vec_free (old_rt);
1166
1167 /* re-clone input nodes */
1168 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1169 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001170 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1171 CLIB_CACHE_LINE_BYTES);
Damjan Marion94100532020-11-06 23:25:57 +01001172 clib_interrupt_resize (
1173 &nm_clone->interrupts,
1174 vec_len (nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT]));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001175
1176 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1177 {
1178 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1179 rt->thread_index = vm_clone->thread_index;
1180 /* copy runtime_data, will be overwritten later for existing rt */
1181 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001182 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1183 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1184 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001185 }
1186
1187 for (j = 0; j < vec_len (old_rt); j++)
1188 {
1189 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1190 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001191 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1192 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001193 }
1194
1195 vec_free (old_rt);
1196
Dave Barach53fe4a72019-01-26 09:50:26 -05001197 /* re-clone pre-input nodes */
1198 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT];
1199 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
1200 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
1201 CLIB_CACHE_LINE_BYTES);
1202
1203 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1204 {
1205 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1206 rt->thread_index = vm_clone->thread_index;
1207 /* copy runtime_data, will be overwritten later for existing rt */
1208 if (n->runtime_data && n->runtime_data_bytes > 0)
1209 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1210 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1211 n->runtime_data_bytes));
1212 }
1213
1214 for (j = 0; j < vec_len (old_rt); j++)
1215 {
1216 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1217 rt->state = old_rt[j].state;
1218 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1219 VLIB_NODE_RUNTIME_DATA_SIZE);
1220 }
1221
1222 vec_free (old_rt);
1223
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001224 nm_clone->processes = vec_dup_aligned (nm->processes,
1225 CLIB_CACHE_LINE_BYTES);
Dave Barach687c9022019-07-23 10:22:31 -04001226 nm_clone->node_by_error = nm->node_by_error;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001227}
1228
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001229void
1230vlib_worker_thread_node_runtime_update (void)
1231{
1232 /*
1233 * Make a note that we need to do a node runtime update
1234 * prior to releasing the barrier.
1235 */
1236 vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001237}
1238
Pavel Kotucek1e765832016-09-23 08:54:14 +02001239u32
1240unformat_sched_policy (unformat_input_t * input, va_list * args)
1241{
1242 u32 *r = va_arg (*args, u32 *);
1243
1244 if (0);
1245#define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1246 foreach_sched_policy
1247#undef _
1248 else
1249 return 0;
1250 return 1;
1251}
1252
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253static clib_error_t *
1254cpu_config (vlib_main_t * vm, unformat_input_t * input)
1255{
1256 vlib_thread_registration_t *tr;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001257 uword *p;
1258 vlib_thread_main_t *tm = &vlib_thread_main;
1259 u8 *name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001260 uword *bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261 u32 count;
1262
1263 tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
Pavel Kotucek1e765832016-09-23 08:54:14 +02001264
Dave Barach9b8ffd92016-07-08 08:13:45 -04001265 tm->n_thread_stacks = 1; /* account for main thread */
Pavel Kotucek1e765832016-09-23 08:54:14 +02001266 tm->sched_policy = ~0;
1267 tm->sched_priority = ~0;
Damjan Marion858151f2018-07-11 10:51:00 +02001268 tm->main_lcore = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269
1270 tr = tm->next;
1271
1272 while (tr)
1273 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001274 hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275 tr = tr->next;
1276 }
1277
Dave Barach9b8ffd92016-07-08 08:13:45 -04001278 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279 {
Damjan Marionbf741472016-06-13 22:49:44 +02001280 if (unformat (input, "use-pthreads"))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001281 tm->use_pthreads = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282 else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001283 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001284 else if (unformat (input, "main-core %u", &tm->main_lcore))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001285 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286 else if (unformat (input, "skip-cores %u", &tm->skip_cores))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001287 ;
Dave Baracha690fdb2020-01-21 12:34:55 -05001288 else if (unformat (input, "numa-heap-size %U",
1289 unformat_memory_size, &tm->numa_heap_size))
1290 ;
Yi Hee4a9eb72018-07-17 14:18:41 +08001291 else if (unformat (input, "coremask-%s %U", &name,
1292 unformat_bitmap_mask, &bitmap) ||
1293 unformat (input, "corelist-%s %U", &name,
1294 unformat_bitmap_list, &bitmap))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001295 {
1296 p = hash_get_mem (tm->thread_registrations_by_name, name);
1297 if (p == 0)
1298 return clib_error_return (0, "no such thread type '%s'", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001299
Dave Barach9b8ffd92016-07-08 08:13:45 -04001300 tr = (vlib_thread_registration_t *) p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001301
Dave Barach9b8ffd92016-07-08 08:13:45 -04001302 if (tr->use_pthreads)
1303 return clib_error_return (0,
1304 "corelist cannot be set for '%s' threads",
1305 name);
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001306 if (tr->count)
1307 return clib_error_return
1308 (0, "core placement of '%s' threads is already configured",
1309 name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001310
Dave Barach9b8ffd92016-07-08 08:13:45 -04001311 tr->coremask = bitmap;
1312 tr->count = clib_bitmap_count_set_bits (tr->coremask);
1313 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001314 else
1315 if (unformat
1316 (input, "scheduler-policy %U", unformat_sched_policy,
1317 &tm->sched_policy))
1318 ;
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001319 else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
Pavel Kotucek1e765832016-09-23 08:54:14 +02001320 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001321 else if (unformat (input, "%s %u", &name, &count))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001322 {
1323 p = hash_get_mem (tm->thread_registrations_by_name, name);
1324 if (p == 0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001325 return clib_error_return (0, "no such thread type 3 '%s'", name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001326
1327 tr = (vlib_thread_registration_t *) p[0];
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001328
Dave Barach9b8ffd92016-07-08 08:13:45 -04001329 if (tr->fixed_count)
1330 return clib_error_return
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001331 (0, "number of '%s' threads not configurable", name);
1332 if (tr->count)
1333 return clib_error_return
1334 (0, "number of '%s' threads is already configured", name);
1335
Dave Barach9b8ffd92016-07-08 08:13:45 -04001336 tr->count = count;
1337 }
1338 else
1339 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001340 }
1341
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001342 if (tm->sched_priority != ~0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001343 {
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001344 if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001345 {
1346 u32 prio_max = sched_get_priority_max (tm->sched_policy);
1347 u32 prio_min = sched_get_priority_min (tm->sched_policy);
1348 if (tm->sched_priority > prio_max)
1349 tm->sched_priority = prio_max;
1350 if (tm->sched_priority < prio_min)
1351 tm->sched_priority = prio_min;
1352 }
1353 else
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001354 {
1355 return clib_error_return
1356 (0,
1357 "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1358 tm->sched_priority);
1359 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001360 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361 tr = tm->next;
1362
1363 if (!tm->thread_prefix)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001364 tm->thread_prefix = format (0, "vpp");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001365
1366 while (tr)
1367 {
1368 tm->n_thread_stacks += tr->count;
1369 tm->n_pthreads += tr->count * tr->use_pthreads;
Damjan Marion878c6092017-01-04 13:19:27 +01001370 tm->n_threads += tr->count * (tr->use_pthreads == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001371 tr = tr->next;
1372 }
1373
1374 return 0;
1375}
1376
1377VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1378
Ed Warnickecb9cada2015-12-08 15:45:58 -07001379void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -04001380void
1381vnet_main_fixup (vlib_fork_fixup_t which)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001382{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001383}
1384
1385void
1386vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1387{
1388 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001389
1390 if (vlib_mains == 0)
1391 return;
1392
Damjan Marion586afd72017-04-05 19:18:20 +02001393 ASSERT (vlib_get_thread_index () == 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001394 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001395
1396 switch (which)
1397 {
1398 case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1399 vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1400 break;
1401
1402 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001403 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001404 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001405 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001406}
1407
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001408 /*
1409 * Enforce minimum open time to minimize packet loss due to Rx overflow,
1410 * based on a test based heuristic that barrier should be open for at least
1411 * 3 time as long as it is closed (with an upper bound of 1ms because by that
1412 * point it is probably too late to make a difference)
1413 */
1414
1415#ifndef BARRIER_MINIMUM_OPEN_LIMIT
1416#define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1417#endif
1418
1419#ifndef BARRIER_MINIMUM_OPEN_FACTOR
1420#define BARRIER_MINIMUM_OPEN_FACTOR 3
1421#endif
1422
Dave Barach9b8ffd92016-07-08 08:13:45 -04001423void
Dave Barachc602b382019-06-03 19:48:22 -04001424vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm)
1425{
1426 f64 deadline;
1427 f64 now = vlib_time_now (vm);
1428 u32 count = vec_len (vlib_mains) - 1;
1429
1430 /* No worker threads? */
1431 if (count == 0)
1432 return;
1433
1434 deadline = now + BARRIER_SYNC_TIMEOUT;
1435 *vlib_worker_threads->wait_at_barrier = 1;
1436 while (*vlib_worker_threads->workers_at_barrier != count)
1437 {
1438 if ((now = vlib_time_now (vm)) > deadline)
1439 {
1440 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1441 os_panic ();
1442 }
1443 CLIB_PAUSE ();
1444 }
1445 *vlib_worker_threads->wait_at_barrier = 0;
1446}
1447
Neale Ranns42845dd2020-05-26 13:12:17 +00001448/**
1449 * Return true if the wroker thread barrier is held
1450 */
1451u8
1452vlib_worker_thread_barrier_held (void)
1453{
1454 if (vec_len (vlib_mains) < 2)
1455 return (1);
1456
1457 return (*vlib_worker_threads->wait_at_barrier == 1);
1458}
1459
Dave Barachc602b382019-06-03 19:48:22 -04001460void
Damjan Marion8343ee52019-02-26 17:15:48 +01001461vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, const char *func_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001462{
1463 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001464 f64 now;
1465 f64 t_entry;
1466 f64 t_open;
1467 f64 t_closed;
Dave Barach9ae190e2019-04-23 10:07:24 -04001468 f64 max_vector_rate;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001469 u32 count;
Dave Barach9ae190e2019-04-23 10:07:24 -04001470 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001471
Dave Barach80f54e22017-03-08 19:08:56 -05001472 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001473 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001474
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001475 ASSERT (vlib_get_thread_index () == 0);
1476
Damjan Marion8343ee52019-02-26 17:15:48 +01001477 vlib_worker_threads[0].barrier_caller = func_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001478 count = vec_len (vlib_mains) - 1;
1479
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001480 /* Record entry relative to last close */
1481 now = vlib_time_now (vm);
1482 t_entry = now - vm->barrier_epoch;
1483
Ed Warnickecb9cada2015-12-08 15:45:58 -07001484 /* Tolerate recursive calls */
1485 if (++vlib_worker_threads[0].recursion_level > 1)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001486 {
1487 barrier_trace_sync_rec (t_entry);
1488 return;
1489 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001491 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1492 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
1493 vm->clib_time.last_cpu_time, 0 /* enter */ );
1494
Dave Barach9ae190e2019-04-23 10:07:24 -04001495 /*
1496 * Need data to decide if we're working hard enough to honor
1497 * the barrier hold-down timer.
1498 */
1499 max_vector_rate = 0.0;
1500 for (i = 1; i < vec_len (vlib_mains); i++)
1501 max_vector_rate =
1502 clib_max (max_vector_rate,
Dave Baracha8df85c2019-10-01 13:34:23 -04001503 (f64) vlib_last_vectors_per_main_loop (vlib_mains[i]));
Dave Barach9ae190e2019-04-23 10:07:24 -04001504
Bud Grise42f20062016-03-16 13:09:46 -04001505 vlib_worker_threads[0].barrier_sync_count++;
1506
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001507 /* Enforce minimum barrier open time to minimize packet loss */
1508 ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001509
Dave Barach9ae190e2019-04-23 10:07:24 -04001510 /*
1511 * If any worker thread seems busy, which we define
1512 * as a vector rate above 10, we enforce the barrier hold-down timer
1513 */
1514 if (max_vector_rate > 10.0)
Dave Barach36feebb2018-09-07 11:12:27 -04001515 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001516 while (1)
Dave Barach36feebb2018-09-07 11:12:27 -04001517 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001518 now = vlib_time_now (vm);
1519 /* Barrier hold-down timer expired? */
1520 if (now >= vm->barrier_no_close_before)
1521 break;
1522 if ((vm->barrier_no_close_before - now)
1523 > (2.0 * BARRIER_MINIMUM_OPEN_LIMIT))
1524 {
1525 clib_warning
1526 ("clock change: would have waited for %.4f seconds",
1527 (vm->barrier_no_close_before - now));
1528 break;
1529 }
Dave Barach36feebb2018-09-07 11:12:27 -04001530 }
1531 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001532 /* Record time of closure */
1533 t_open = now - vm->barrier_epoch;
1534 vm->barrier_epoch = now;
1535
1536 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001537
1538 *vlib_worker_threads->wait_at_barrier = 1;
1539 while (*vlib_worker_threads->workers_at_barrier != count)
1540 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001541 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001542 {
1543 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1544 os_panic ();
1545 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001546 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001547
1548 t_closed = now - vm->barrier_epoch;
1549
1550 barrier_trace_sync (t_entry, t_open, t_closed);
1551
Ed Warnickecb9cada2015-12-08 15:45:58 -07001552}
1553
Dave Barach9b8ffd92016-07-08 08:13:45 -04001554void
1555vlib_worker_thread_barrier_release (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001556{
1557 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001558 f64 now;
1559 f64 minimum_open;
1560 f64 t_entry;
1561 f64 t_closed_total;
1562 f64 t_update_main = 0.0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001563 int refork_needed = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001564
Dave Barach80f54e22017-03-08 19:08:56 -05001565 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001566 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001567
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001568 ASSERT (vlib_get_thread_index () == 0);
1569
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001570
1571 now = vlib_time_now (vm);
1572 t_entry = now - vm->barrier_epoch;
1573
Ed Warnickecb9cada2015-12-08 15:45:58 -07001574 if (--vlib_worker_threads[0].recursion_level > 0)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001575 {
1576 barrier_trace_release_rec (t_entry);
1577 return;
1578 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001579
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001580 /* Update (all) node runtimes before releasing the barrier, if needed */
1581 if (vm->need_vlib_worker_thread_node_runtime_update)
1582 {
Dave Barach1ddbc012018-06-13 09:26:05 -04001583 /*
1584 * Lock stat segment here, so we's safe when
1585 * rebuilding the stat segment node clones from the
1586 * stat thread...
1587 */
1588 vlib_stat_segment_lock ();
1589
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001590 /* Do stats elements on main thread */
1591 worker_thread_node_runtime_update_internal ();
1592 vm->need_vlib_worker_thread_node_runtime_update = 0;
1593
1594 /* Do per thread rebuilds in parallel */
1595 refork_needed = 1;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +00001596 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
1597 (vec_len (vlib_mains) - 1));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001598 now = vlib_time_now (vm);
1599 t_update_main = now - vm->barrier_epoch;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001600 }
1601
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001602 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001603
Dave Baracha4324a92019-02-19 17:05:30 -05001604 /*
1605 * Note when we let go of the barrier.
1606 * Workers can use this to derive a reasonably accurate
1607 * time offset. See vlib_time_now(...)
1608 */
1609 vm->time_last_barrier_release = vlib_time_now (vm);
1610 CLIB_MEMORY_STORE_BARRIER ();
1611
Ed Warnickecb9cada2015-12-08 15:45:58 -07001612 *vlib_worker_threads->wait_at_barrier = 0;
1613
1614 while (*vlib_worker_threads->workers_at_barrier > 0)
1615 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001616 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001617 {
1618 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1619 os_panic ();
1620 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001621 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001622
1623 /* Wait for reforks before continuing */
1624 if (refork_needed)
1625 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001626 now = vlib_time_now (vm);
1627
1628 deadline = now + BARRIER_SYNC_TIMEOUT;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001629
1630 while (*vlib_worker_threads->node_reforks_required > 0)
1631 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001632 if ((now = vlib_time_now (vm)) > deadline)
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001633 {
1634 fformat (stderr, "%s: worker thread refork deadlock\n",
1635 __FUNCTION__);
1636 os_panic ();
1637 }
1638 }
Dave Barach1ddbc012018-06-13 09:26:05 -04001639 vlib_stat_segment_unlock ();
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001640 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001641
1642 t_closed_total = now - vm->barrier_epoch;
1643
1644 minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1645
1646 if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1647 {
1648 minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1649 }
1650
1651 vm->barrier_no_close_before = now + minimum_open;
1652
1653 /* Record barrier epoch (used to enforce minimum open time) */
1654 vm->barrier_epoch = now;
1655
1656 barrier_trace_release (t_entry, t_closed_total, t_update_main);
1657
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001658 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1659 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
1660 vm->clib_time.last_cpu_time, 1 /* leave */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001661}
1662
Neale Ranns42845dd2020-05-26 13:12:17 +00001663/**
1664 * Wait until each of the workers has been once around the track
1665 */
1666void
1667vlib_worker_wait_one_loop (void)
1668{
1669 ASSERT (vlib_get_thread_index () == 0);
1670
1671 if (vec_len (vlib_mains) < 2)
1672 return;
1673
1674 if (vlib_worker_thread_barrier_held ())
1675 return;
1676
1677 u32 *counts = 0;
1678 u32 ii;
1679
1680 vec_validate (counts, vec_len (vlib_mains) - 1);
1681
1682 /* record the current loop counts */
1683 vec_foreach_index (ii, vlib_mains)
1684 counts[ii] = vlib_mains[ii]->main_loop_count;
1685
1686 /* spin until each changes, apart from the main thread, or we'd be
1687 * a while */
1688 for (ii = 1; ii < vec_len (counts); ii++)
1689 {
1690 while (counts[ii] == vlib_mains[ii]->main_loop_count)
1691 CLIB_PAUSE ();
1692 }
1693
1694 vec_free (counts);
1695 return;
1696}
1697
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001698/*
1699 * Check the frame queue to see if any frames are available.
Dave Barach9b8ffd92016-07-08 08:13:45 -04001700 * If so, pull the packets off the frames and put them to
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001701 * the handoff node.
1702 */
Damjan Marione9d52d52017-03-09 15:42:26 +01001703int
1704vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001705{
Damjan Marion586afd72017-04-05 19:18:20 +02001706 u32 thread_id = vm->thread_index;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001707 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001708 vlib_frame_queue_elt_t *elt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001709 u32 *from, *to;
1710 vlib_frame_t *f;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001711 int msg_type;
1712 int processed = 0;
1713 u32 n_left_to_node;
1714 u32 vectors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001715
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001716 ASSERT (fq);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001717 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001718
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001719 if (PREDICT_FALSE (fqm->node_index == ~0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001720 return 0;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001721 /*
1722 * Gather trace data for frame queues
1723 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001724 if (PREDICT_FALSE (fq->trace))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001725 {
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001726 frame_queue_trace_t *fqt;
1727 frame_queue_nelt_counter_t *fqh;
1728 u32 elix;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001729
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001730 fqt = &fqm->frame_queue_traces[thread_id];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001731
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001732 fqt->nelts = fq->nelts;
1733 fqt->head = fq->head;
1734 fqt->head_hint = fq->head_hint;
1735 fqt->tail = fq->tail;
1736 fqt->threshold = fq->vector_threshold;
1737 fqt->n_in_use = fqt->tail - fqt->head;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001738 if (fqt->n_in_use >= fqt->nelts)
1739 {
1740 // if beyond max then use max
1741 fqt->n_in_use = fqt->nelts - 1;
1742 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001743
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001744 /* Record the number of elements in use in the histogram */
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001745 fqh = &fqm->frame_queue_histogram[thread_id];
Dave Barach9b8ffd92016-07-08 08:13:45 -04001746 fqh->count[fqt->n_in_use]++;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001747
1748 /* Record a snapshot of the elements in use */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001749 for (elix = 0; elix < fqt->nelts; elix++)
1750 {
1751 elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1752 if (1 || elt->valid)
1753 {
1754 fqt->n_vectors[elix] = elt->n_vectors;
1755 }
1756 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001757 fqt->written = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001758 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001759
1760 while (1)
1761 {
Dave Baracha638c182019-06-21 18:24:07 -04001762 vlib_buffer_t *b;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001763 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001764 {
1765 fq->head_hint = fq->head;
1766 return processed;
1767 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001768
Dave Barach9b8ffd92016-07-08 08:13:45 -04001769 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001770
1771 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001772 {
1773 fq->head_hint = fq->head;
1774 return processed;
1775 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001776
1777 from = elt->buffer_index;
1778 msg_type = elt->msg_type;
1779
1780 ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1781 ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1782
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001783 f = vlib_get_frame_to_node (vm, fqm->node_index);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001784
Dave Baracha638c182019-06-21 18:24:07 -04001785 /* If the first vector is traced, set the frame trace flag */
1786 b = vlib_get_buffer (vm, from[0]);
1787 if (b->flags & VLIB_BUFFER_IS_TRACED)
1788 f->frame_flags |= VLIB_NODE_FLAG_TRACE;
1789
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001790 to = vlib_frame_vector_args (f);
1791
1792 n_left_to_node = elt->n_vectors;
1793
1794 while (n_left_to_node >= 4)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001795 {
1796 to[0] = from[0];
1797 to[1] = from[1];
1798 to[2] = from[2];
1799 to[3] = from[3];
1800 to += 4;
1801 from += 4;
1802 n_left_to_node -= 4;
1803 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001804
1805 while (n_left_to_node > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001806 {
1807 to[0] = from[0];
1808 to++;
1809 from++;
1810 n_left_to_node--;
1811 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001812
1813 vectors += elt->n_vectors;
1814 f->n_vectors = elt->n_vectors;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001815 vlib_put_frame_to_node (vm, fqm->node_index, f);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001816
1817 elt->valid = 0;
1818 elt->n_vectors = 0;
1819 elt->msg_type = 0xfefefefe;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001820 CLIB_MEMORY_BARRIER ();
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001821 fq->head++;
1822 processed++;
1823
1824 /*
1825 * Limit the number of packets pushed into the graph
1826 */
1827 if (vectors >= fq->vector_threshold)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001828 {
1829 fq->head_hint = fq->head;
1830 return processed;
1831 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001832 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001833 ASSERT (0);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001834 return processed;
1835}
1836
Dave Barach9b8ffd92016-07-08 08:13:45 -04001837void
1838vlib_worker_thread_fn (void *arg)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001839{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001840 vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
Damjan Marion878c6092017-01-04 13:19:27 +01001841 vlib_thread_main_t *tm = vlib_get_thread_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001842 vlib_main_t *vm = vlib_get_main ();
Damjan Marione9f929b2017-03-16 11:32:09 +01001843 clib_error_t *e;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001844
Damjan Marioncea46522020-05-21 16:47:05 +02001845 vlib_process_finish_switch_stack (vm);
1846
Damjan Marion586afd72017-04-05 19:18:20 +02001847 ASSERT (vm->thread_index == vlib_get_thread_index ());
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001848
1849 vlib_worker_thread_init (w);
1850 clib_time_init (&vm->clib_time);
1851 clib_mem_set_heap (w->thread_mheap);
1852
Dave Barachc602b382019-06-03 19:48:22 -04001853 e = vlib_call_init_exit_functions_no_sort
Dave Barachf8d50682019-05-14 18:01:44 -04001854 (vm, &vm->worker_init_function_registrations, 1 /* call_once */ );
Damjan Marione9f929b2017-03-16 11:32:09 +01001855 if (e)
1856 clib_error_report (e);
1857
Dave Barachc602b382019-06-03 19:48:22 -04001858 /* Wait until the dpdk init sequence is complete */
1859 while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1860 vlib_worker_thread_barrier_check ();
1861
Damjan Marione9d52d52017-03-09 15:42:26 +01001862 vlib_worker_loop (vm);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001863}
1864
Dave Barach9b8ffd92016-07-08 08:13:45 -04001865/* *INDENT-OFF* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001866VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1867 .name = "workers",
1868 .short_name = "wk",
1869 .function = vlib_worker_thread_fn,
1870};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001871/* *INDENT-ON* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001872
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001873u32
1874vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1875{
1876 vlib_thread_main_t *tm = vlib_get_thread_main ();
1877 vlib_frame_queue_main_t *fqm;
1878 vlib_frame_queue_t *fq;
1879 int i;
Elias Rudberg368104d2020-04-16 16:01:52 +02001880 u32 num_threads;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001881
1882 if (frame_queue_nelts == 0)
dongjuan88752482019-06-04 10:59:02 +08001883 frame_queue_nelts = FRAME_QUEUE_MAX_NELTS;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001884
Elias Rudberg368104d2020-04-16 16:01:52 +02001885 num_threads = 1 /* main thread */ + tm->n_threads;
1886 ASSERT (frame_queue_nelts >= 8 + num_threads);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001887
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001888 vec_add2 (tm->frame_queue_mains, fqm, 1);
1889
1890 fqm->node_index = node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +02001891 fqm->frame_queue_nelts = frame_queue_nelts;
Elias Rudberg368104d2020-04-16 16:01:52 +02001892 fqm->queue_hi_thresh = frame_queue_nelts - num_threads;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001893
1894 vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001895 vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001896 _vec_len (fqm->vlib_frame_queues) = 0;
1897 for (i = 0; i < tm->n_vlib_mains; i++)
1898 {
Damjan Marion78fd7e82018-07-20 18:47:05 +02001899 vlib_frame_queue_per_thread_data_t *ptd;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001900 fq = vlib_frame_queue_alloc (frame_queue_nelts);
1901 vec_add1 (fqm->vlib_frame_queues, fq);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001902
1903 ptd = vec_elt_at_index (fqm->per_thread_data, i);
1904 vec_validate (ptd->handoff_queue_elt_by_thread_index,
1905 tm->n_vlib_mains - 1);
1906 vec_validate_init_empty (ptd->congested_handoff_queue_by_thread_index,
1907 tm->n_vlib_mains - 1,
1908 (vlib_frame_queue_t *) (~0));
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001909 }
1910
1911 return (fqm - tm->frame_queue_mains);
1912}
1913
Damjan Marion878c6092017-01-04 13:19:27 +01001914int
1915vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1916{
1917 vlib_thread_main_t *tm = vlib_get_thread_main ();
1918
1919 if (tm->extern_thread_mgmt)
1920 return -1;
1921
1922 tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1923 tm->extern_thread_mgmt = 1;
1924 return 0;
1925}
1926
Dave Barach69128d02017-09-26 10:54:34 -04001927void
1928vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1929 args)
1930{
1931 ASSERT (vlib_get_thread_index () == 0);
1932 vlib_process_signal_event (vlib_get_main (), args->node_index,
1933 args->type_opaque, args->data);
1934}
1935
1936void *rpc_call_main_thread_cb_fn;
1937
1938void
1939vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1940{
1941 if (rpc_call_main_thread_cb_fn)
1942 {
1943 void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1944 (*fp) (callback, args, arg_size);
1945 }
1946 else
1947 clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1948}
1949
Dave Barach9b8ffd92016-07-08 08:13:45 -04001950clib_error_t *
1951threads_init (vlib_main_t * vm)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001952{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001953 return 0;
1954}
1955
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001956VLIB_INIT_FUNCTION (threads_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001957
Dave Baracha4324a92019-02-19 17:05:30 -05001958
1959static clib_error_t *
1960show_clock_command_fn (vlib_main_t * vm,
1961 unformat_input_t * input, vlib_cli_command_t * cmd)
1962{
1963 int i;
Dave Barachc25048b2020-01-29 18:05:24 -05001964 int verbose = 0;
Dave Barach19718002020-03-11 10:31:36 -04001965 clib_timebase_t _tb, *tb = &_tb;
Dave Baracha4324a92019-02-19 17:05:30 -05001966
Dave Barachc25048b2020-01-29 18:05:24 -05001967 (void) unformat (input, "verbose %=", &verbose, 1);
Dave Baracha4324a92019-02-19 17:05:30 -05001968
Dave Barach19718002020-03-11 10:31:36 -04001969 clib_timebase_init (tb, 0 /* GMT */ , CLIB_TIMEBASE_DAYLIGHT_NONE,
1970 &vm->clib_time);
1971
1972 vlib_cli_output (vm, "%U, %U GMT", format_clib_time, &vm->clib_time,
1973 verbose, format_clib_timebase_time,
1974 clib_timebase_now (tb));
Dave Baracha4324a92019-02-19 17:05:30 -05001975
1976 if (vec_len (vlib_mains) == 1)
1977 return 0;
1978
1979 vlib_cli_output (vm, "Time last barrier release %.9f",
1980 vm->time_last_barrier_release);
1981
1982 for (i = 1; i < vec_len (vlib_mains); i++)
1983 {
1984 if (vlib_mains[i] == 0)
1985 continue;
Dave Barachc25048b2020-01-29 18:05:24 -05001986
1987 vlib_cli_output (vm, "%d: %U", i, format_clib_time,
1988 &vlib_mains[i]->clib_time, verbose);
1989
Dave Baracha4324a92019-02-19 17:05:30 -05001990 vlib_cli_output (vm, "Thread %d offset %.9f error %.9f", i,
1991 vlib_mains[i]->time_offset,
1992 vm->time_last_barrier_release -
1993 vlib_mains[i]->time_last_barrier_release);
1994 }
1995 return 0;
1996}
1997
1998/* *INDENT-OFF* */
1999VLIB_CLI_COMMAND (f_command, static) =
2000{
2001 .path = "show clock",
2002 .short_help = "show clock",
2003 .function = show_clock_command_fn,
2004};
2005/* *INDENT-ON* */
2006
Dave Barachab1a50c2020-10-06 14:08:16 -04002007vlib_thread_main_t *
2008vlib_get_thread_main_not_inline (void)
2009{
2010 return vlib_get_thread_main ();
2011}
2012
Dave Barach9b8ffd92016-07-08 08:13:45 -04002013/*
2014 * fd.io coding-style-patch-verification: ON
2015 *
2016 * Local Variables:
2017 * eval: (c-set-style "gnu")
2018 * End:
2019 */