Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | #ifndef included_vlib_threads_h |
| 16 | #define included_vlib_threads_h |
| 17 | |
| 18 | #include <vlib/main.h> |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 19 | #include <vppinfra/callback.h> |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 20 | #include <linux/sched.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 21 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 22 | void vlib_set_thread_name (char *name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 23 | |
| 24 | /* arg is actually a vlib__thread_t * */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 25 | typedef void (vlib_thread_function_t) (void *arg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 26 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 27 | typedef struct vlib_thread_registration_ |
| 28 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | /* constructor generated list of thread registrations */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 30 | struct vlib_thread_registration_ *next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 31 | |
| 32 | /* config parameters */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 33 | char *name; |
| 34 | char *short_name; |
| 35 | vlib_thread_function_t *function; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 36 | uword mheap_size; |
| 37 | int fixed_count; |
| 38 | u32 count; |
| 39 | int no_data_structure_clone; |
Bud Grise | 68adab9 | 2016-02-12 10:36:11 -0500 | [diff] [blame] | 40 | u32 frame_queue_nelts; |
| 41 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | /* All threads of this type run on pthreads */ |
| 43 | int use_pthreads; |
| 44 | u32 first_index; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 45 | uword *coremask; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | } vlib_thread_registration_t; |
| 47 | |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 48 | /* |
| 49 | * Frames have their cpu / vlib_main_t index in the low-order N bits |
| 50 | * Make VLIB_MAX_CPUS a power-of-two, please... |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | */ |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 52 | |
Christophe Fontaine | fef15b4 | 2016-04-09 12:38:49 +0900 | [diff] [blame] | 53 | #ifndef VLIB_MAX_CPUS |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 54 | #define VLIB_MAX_CPUS 256 |
Christophe Fontaine | fef15b4 | 2016-04-09 12:38:49 +0900 | [diff] [blame] | 55 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | |
Damjan Marion | ce8debf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 57 | #if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS |
| 58 | #error Please increase number of per-cpu mheaps |
| 59 | #endif |
| 60 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 61 | #define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | #define VLIB_OFFSET_MASK (~VLIB_CPU_MASK) |
| 63 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 64 | #define VLIB_LOG2_THREAD_STACK_SIZE (21) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | #define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE) |
| 66 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 67 | typedef enum |
| 68 | { |
| 69 | VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | } vlib_frame_queue_msg_type_t; |
| 71 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 72 | typedef struct |
| 73 | { |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 74 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | volatile u32 valid; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 76 | u32 msg_type; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 77 | u32 n_vectors; |
| 78 | u32 last_n_vectors; |
| 79 | |
| 80 | /* 256 * 4 = 1024 bytes, even mult of cache line size */ |
| 81 | u32 buffer_index[VLIB_FRAME_SIZE]; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 82 | } |
| 83 | vlib_frame_queue_elt_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 84 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 85 | typedef struct |
| 86 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | /* First cache line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 88 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | volatile u32 *wait_at_barrier; |
| 90 | volatile u32 *workers_at_barrier; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | |
| 92 | /* Second Cache Line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 93 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 94 | void *thread_mheap; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 95 | u8 *thread_stack; |
| 96 | void (*thread_function) (void *); |
| 97 | void *thread_function_arg; |
| 98 | i64 recursion_level; |
| 99 | elog_track_t elog_track; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | u32 instance_id; |
| 101 | vlib_thread_registration_t *registration; |
| 102 | u8 *name; |
Bud Grise | 42f2006 | 2016-03-16 13:09:46 -0400 | [diff] [blame] | 103 | u64 barrier_sync_count; |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 104 | u8 barrier_elog_enabled; |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 105 | const char *barrier_caller; |
| 106 | const char *barrier_context; |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 107 | volatile u32 *node_reforks_required; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | |
| 109 | long lwp; |
Mohsin Kazmi | 5d64c78 | 2018-09-11 20:27:09 +0200 | [diff] [blame] | 110 | int cpu_id; |
| 111 | int core_id; |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 112 | int numa_id; |
Pavel Kotucek | 9876520 | 2016-10-07 08:37:28 +0200 | [diff] [blame] | 113 | pthread_t thread_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | } vlib_worker_thread_t; |
| 115 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 116 | extern vlib_worker_thread_t *vlib_worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 117 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 118 | typedef struct |
| 119 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | /* enqueue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 121 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | volatile u64 tail; |
| 123 | u64 enqueues; |
| 124 | u64 enqueue_ticks; |
| 125 | u64 enqueue_vectors; |
| 126 | u32 enqueue_full_events; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 127 | |
| 128 | /* dequeue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 129 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | volatile u64 head; |
| 131 | u64 dequeues; |
| 132 | u64 dequeue_ticks; |
| 133 | u64 dequeue_vectors; |
| 134 | u64 trace; |
| 135 | u64 vector_threshold; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | |
| 137 | /* dequeue hint to enqueue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 138 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | volatile u64 head_hint; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 140 | |
| 141 | /* read-only, constant, shared */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 142 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | vlib_frame_queue_elt_t *elts; |
| 144 | u32 nelts; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | } |
| 146 | vlib_frame_queue_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 148 | typedef struct |
| 149 | { |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 150 | vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index; |
| 151 | vlib_frame_queue_t **congested_handoff_queue_by_thread_index; |
| 152 | } vlib_frame_queue_per_thread_data_t; |
| 153 | |
| 154 | typedef struct |
| 155 | { |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 156 | u32 node_index; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 157 | u32 frame_queue_nelts; |
| 158 | u32 queue_hi_thresh; |
| 159 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 160 | vlib_frame_queue_t **vlib_frame_queues; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 161 | vlib_frame_queue_per_thread_data_t *per_thread_data; |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 162 | |
| 163 | /* for frame queue tracing */ |
| 164 | frame_queue_trace_t *frame_queue_traces; |
| 165 | frame_queue_nelt_counter_t *frame_queue_histogram; |
| 166 | } vlib_frame_queue_main_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 168 | typedef struct |
| 169 | { |
| 170 | uword node_index; |
| 171 | uword type_opaque; |
| 172 | uword data; |
| 173 | } vlib_process_signal_event_mt_args_t; |
| 174 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 175 | /* Called early, in thread 0's context */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 176 | clib_error_t *vlib_thread_init (vlib_main_t * vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 178 | int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index, |
| 179 | u32 frame_queue_index, vlib_frame_t * frame, |
| 180 | vlib_frame_queue_msg_type_t type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 181 | |
Damjan Marion | e9d52d5 | 2017-03-09 15:42:26 +0100 | [diff] [blame] | 182 | int |
| 183 | vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 184 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 185 | void vlib_worker_thread_node_runtime_update (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 187 | void vlib_create_worker_threads (vlib_main_t * vm, int n, |
| 188 | void (*thread_function) (void *)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 189 | |
| 190 | void vlib_worker_thread_init (vlib_worker_thread_t * w); |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 191 | u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 192 | |
| 193 | /* Check for a barrier sync request every 30ms */ |
| 194 | #define BARRIER_SYNC_DELAY (0.030000) |
| 195 | |
| 196 | #if CLIB_DEBUG > 0 |
| 197 | /* long barrier timeout, for gdb... */ |
| 198 | #define BARRIER_SYNC_TIMEOUT (600.1) |
| 199 | #else |
| 200 | #define BARRIER_SYNC_TIMEOUT (1.0) |
| 201 | #endif |
| 202 | |
Damjan Marion | 8343ee5 | 2019-02-26 17:15:48 +0100 | [diff] [blame] | 203 | #define vlib_worker_thread_barrier_sync(X) {vlib_worker_thread_barrier_sync_int(X, __FUNCTION__);} |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 204 | |
Damjan Marion | 8343ee5 | 2019-02-26 17:15:48 +0100 | [diff] [blame] | 205 | void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, |
| 206 | const char *func_name); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 207 | void vlib_worker_thread_barrier_release (vlib_main_t * vm); |
Neale Ranns | 42845dd | 2020-05-26 13:12:17 +0000 | [diff] [blame] | 208 | u8 vlib_worker_thread_barrier_held (void); |
Dave Barach | c602b38 | 2019-06-03 19:48:22 -0400 | [diff] [blame] | 209 | void vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 210 | void vlib_worker_thread_node_refork (void); |
Neale Ranns | 42845dd | 2020-05-26 13:12:17 +0000 | [diff] [blame] | 211 | /** |
| 212 | * Wait until each of the workers has been once around the track |
| 213 | */ |
| 214 | void vlib_worker_wait_one_loop (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 216 | static_always_inline uword |
| 217 | vlib_get_thread_index (void) |
| 218 | { |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 219 | return __os_thread_index; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 220 | } |
| 221 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 222 | always_inline void |
| 223 | vlib_smp_unsafe_warning (void) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 224 | { |
| 225 | if (CLIB_DEBUG > 0) |
| 226 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 227 | if (vlib_get_thread_index ()) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 228 | fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | } |
| 230 | } |
| 231 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 232 | typedef enum |
| 233 | { |
| 234 | VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0, |
| 235 | VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | } vlib_fork_fixup_t; |
| 237 | |
| 238 | void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which); |
| 239 | |
Damjan Marion | 92ccf9b | 2021-03-26 11:38:01 +0100 | [diff] [blame] | 240 | #define foreach_vlib_main() \ |
| 241 | for (vlib_main_t *ii = 0, *this_vlib_main = vlib_global_main.vlib_mains[0]; \ |
| 242 | (ii - (vlib_main_t *) 0) < vec_len (vlib_global_main.vlib_mains); \ |
| 243 | ii++, this_vlib_main = \ |
| 244 | vlib_global_main.vlib_mains[ii - (vlib_main_t *) 0]) \ |
| 245 | if (CLIB_ASSERT_ENABLE && \ |
| 246 | !(ii == 0 || \ |
| 247 | (this_vlib_main && this_vlib_main->parked_at_barrier == 1))) \ |
| 248 | ASSERT (0); \ |
| 249 | else if (this_vlib_main) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 251 | #define foreach_sched_policy \ |
| 252 | _(SCHED_OTHER, OTHER, "other") \ |
| 253 | _(SCHED_BATCH, BATCH, "batch") \ |
| 254 | _(SCHED_IDLE, IDLE, "idle") \ |
| 255 | _(SCHED_FIFO, FIFO, "fifo") \ |
| 256 | _(SCHED_RR, RR, "rr") |
| 257 | |
| 258 | typedef enum |
| 259 | { |
| 260 | #define _(v,f,s) SCHED_POLICY_##f = v, |
| 261 | foreach_sched_policy |
| 262 | #undef _ |
| 263 | SCHED_POLICY_N, |
| 264 | } sched_policy_t; |
| 265 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 266 | typedef struct |
| 267 | { |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 268 | clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w, |
Mohsin Kazmi | 5d64c78 | 2018-09-11 20:27:09 +0200 | [diff] [blame] | 269 | unsigned cpu_id); |
| 270 | clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 271 | } vlib_thread_callbacks_t; |
| 272 | |
| 273 | typedef struct |
| 274 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 275 | /* Link list of registrations, built by constructors */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 276 | vlib_thread_registration_t *next; |
| 277 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 278 | /* Vector of registrations, w/ non-data-structure clones at the top */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 279 | vlib_thread_registration_t **registrations; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 280 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 281 | uword *thread_registrations_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 282 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 283 | vlib_worker_thread_t *worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 285 | /* |
| 286 | * Launch all threads as pthreads, |
| 287 | * not eal_rte_launch (strict affinity) threads |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 288 | */ |
| 289 | int use_pthreads; |
| 290 | |
| 291 | /* Number of vlib_main / vnet_main clones */ |
| 292 | u32 n_vlib_mains; |
| 293 | |
| 294 | /* Number of thread stacks to create */ |
| 295 | u32 n_thread_stacks; |
| 296 | |
| 297 | /* Number of pthreads */ |
| 298 | u32 n_pthreads; |
| 299 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 300 | /* Number of threads */ |
| 301 | u32 n_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | |
| 303 | /* Number of cores to skip, must match the core mask */ |
| 304 | u32 skip_cores; |
| 305 | |
| 306 | /* Thread prefix name */ |
| 307 | u8 *thread_prefix; |
| 308 | |
| 309 | /* main thread lcore */ |
Damjan Marion | 858151f | 2018-07-11 10:51:00 +0200 | [diff] [blame] | 310 | u32 main_lcore; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 311 | |
| 312 | /* Bitmap of available CPU cores */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 313 | uword *cpu_core_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | |
| 315 | /* Bitmap of available CPU sockets (NUMA nodes) */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 316 | uword *cpu_socket_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 317 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 318 | /* Worker handoff queues */ |
| 319 | vlib_frame_queue_main_t *frame_queue_mains; |
Damjan Marion | 0f8ecf0 | 2016-06-27 08:30:30 +0200 | [diff] [blame] | 320 | |
| 321 | /* worker thread initialization barrier */ |
| 322 | volatile u32 worker_thread_release; |
| 323 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 324 | /* scheduling policy */ |
| 325 | u32 sched_policy; |
| 326 | |
| 327 | /* scheduling policy priority */ |
| 328 | u32 sched_priority; |
| 329 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 330 | /* callbacks */ |
| 331 | vlib_thread_callbacks_t cb; |
| 332 | int extern_thread_mgmt; |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 333 | |
| 334 | /* NUMA-bound heap size */ |
| 335 | uword numa_heap_size; |
| 336 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 337 | } vlib_thread_main_t; |
| 338 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 339 | extern vlib_thread_main_t vlib_thread_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 340 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 341 | #include <vlib/global_funcs.h> |
| 342 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | #define VLIB_REGISTER_THREAD(x,...) \ |
| 344 | __VA_ARGS__ vlib_thread_registration_t x; \ |
| 345 | static void __vlib_add_thread_registration_##x (void) \ |
| 346 | __attribute__((__constructor__)) ; \ |
| 347 | static void __vlib_add_thread_registration_##x (void) \ |
| 348 | { \ |
| 349 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 350 | x.next = tm->next; \ |
| 351 | tm->next = &x; \ |
| 352 | } \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 353 | static void __vlib_rm_thread_registration_##x (void) \ |
| 354 | __attribute__((__destructor__)) ; \ |
| 355 | static void __vlib_rm_thread_registration_##x (void) \ |
| 356 | { \ |
| 357 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 358 | VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \ |
| 359 | } \ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 360 | __VA_ARGS__ vlib_thread_registration_t x |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 361 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 362 | always_inline u32 |
| 363 | vlib_num_workers () |
| 364 | { |
| 365 | return vlib_thread_main.n_vlib_mains - 1; |
| 366 | } |
| 367 | |
| 368 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 369 | vlib_get_worker_thread_index (u32 worker_index) |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 370 | { |
| 371 | return worker_index + 1; |
| 372 | } |
| 373 | |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 374 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 375 | vlib_get_worker_index (u32 thread_index) |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 376 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 377 | return thread_index - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | always_inline u32 |
| 381 | vlib_get_current_worker_index () |
| 382 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 383 | return vlib_get_thread_index () - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 384 | } |
| 385 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 386 | static inline void |
| 387 | vlib_worker_thread_barrier_check (void) |
| 388 | { |
| 389 | if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier)) |
| 390 | { |
Damjan Marion | fd8deb4 | 2021-03-06 12:26:28 +0100 | [diff] [blame] | 391 | vlib_global_main_t *vgm = vlib_get_global_main (); |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 392 | vlib_main_t *vm = vlib_get_main (); |
| 393 | u32 thread_index = vm->thread_index; |
| 394 | f64 t = vlib_time_now (vm); |
| 395 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 396 | if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0)) |
| 397 | clib_call_callbacks (vm->barrier_perf_callbacks, vm, |
| 398 | vm->clib_time.last_cpu_time, 0 /* enter */ ); |
| 399 | |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 400 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 401 | { |
| 402 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 403 | /* *INDENT-OFF* */ |
| 404 | ELOG_TYPE_DECLARE (e) = { |
| 405 | .format = "barrier-wait-thread-%d", |
| 406 | .format_args = "i4", |
| 407 | }; |
| 408 | /* *INDENT-ON* */ |
| 409 | |
| 410 | struct |
| 411 | { |
| 412 | u32 thread_index; |
| 413 | } __clib_packed *ed; |
| 414 | |
Damjan Marion | f553a2c | 2021-03-26 13:45:37 +0100 | [diff] [blame] | 415 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, w->elog_track); |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 416 | ed->thread_index = thread_index; |
| 417 | } |
| 418 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 419 | if (CLIB_DEBUG > 0) |
| 420 | { |
| 421 | vm = vlib_get_main (); |
| 422 | vm->parked_at_barrier = 1; |
| 423 | } |
Alexander Kabaev | feda545 | 2019-11-01 18:26:20 -0400 | [diff] [blame] | 424 | clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1); |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 425 | while (*vlib_worker_threads->wait_at_barrier) |
| 426 | ; |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 427 | |
| 428 | /* |
| 429 | * Recompute the offset from thread-0 time. |
| 430 | * Note that vlib_time_now adds vm->time_offset, so |
| 431 | * clear it first. Save the resulting idea of "now", to |
| 432 | * see how well we're doing. See show_clock_command_fn(...) |
| 433 | */ |
| 434 | { |
| 435 | f64 now; |
| 436 | vm->time_offset = 0.0; |
| 437 | now = vlib_time_now (vm); |
Damjan Marion | fd8deb4 | 2021-03-06 12:26:28 +0100 | [diff] [blame] | 438 | vm->time_offset = vgm->vlib_mains[0]->time_last_barrier_release - now; |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 439 | vm->time_last_barrier_release = vlib_time_now (vm); |
| 440 | } |
| 441 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 442 | if (CLIB_DEBUG > 0) |
| 443 | vm->parked_at_barrier = 0; |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 444 | clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 445 | |
| 446 | if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required)) |
| 447 | { |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 448 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 449 | { |
| 450 | t = vlib_time_now (vm) - t; |
| 451 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 452 | /* *INDENT-OFF* */ |
| 453 | ELOG_TYPE_DECLARE (e) = { |
| 454 | .format = "barrier-refork-thread-%d", |
| 455 | .format_args = "i4", |
| 456 | }; |
| 457 | /* *INDENT-ON* */ |
| 458 | |
| 459 | struct |
| 460 | { |
| 461 | u32 thread_index; |
| 462 | } __clib_packed *ed; |
| 463 | |
| 464 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, |
| 465 | w->elog_track); |
| 466 | ed->thread_index = thread_index; |
| 467 | } |
| 468 | |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 469 | vlib_worker_thread_node_refork (); |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 470 | clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required, |
| 471 | -1); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 472 | while (*vlib_worker_threads->node_reforks_required) |
| 473 | ; |
| 474 | } |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 475 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 476 | { |
| 477 | t = vlib_time_now (vm) - t; |
| 478 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 479 | /* *INDENT-OFF* */ |
| 480 | ELOG_TYPE_DECLARE (e) = { |
| 481 | .format = "barrier-released-thread-%d: %dus", |
| 482 | .format_args = "i4i4", |
| 483 | }; |
| 484 | /* *INDENT-ON* */ |
| 485 | |
| 486 | struct |
| 487 | { |
| 488 | u32 thread_index; |
| 489 | u32 duration; |
| 490 | } __clib_packed *ed; |
| 491 | |
Damjan Marion | f553a2c | 2021-03-26 13:45:37 +0100 | [diff] [blame] | 492 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, w->elog_track); |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 493 | ed->thread_index = thread_index; |
| 494 | ed->duration = (int) (1000000.0 * t); |
| 495 | } |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 496 | |
| 497 | if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0)) |
| 498 | clib_call_callbacks (vm->barrier_perf_callbacks, vm, |
| 499 | vm->clib_time.last_cpu_time, 1 /* leave */ ); |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 500 | } |
| 501 | } |
| 502 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 503 | always_inline vlib_main_t * |
| 504 | vlib_get_worker_vlib_main (u32 worker_index) |
| 505 | { |
| 506 | vlib_main_t *vm; |
| 507 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 508 | ASSERT (worker_index < tm->n_vlib_mains - 1); |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 509 | vm = vlib_get_main_by_index (worker_index + 1); |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 510 | ASSERT (vm); |
| 511 | return vm; |
| 512 | } |
| 513 | |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 514 | static inline u8 |
| 515 | vlib_thread_is_main_w_barrier (void) |
| 516 | { |
| 517 | return (!vlib_num_workers () |
| 518 | || ((vlib_get_thread_index () == 0 |
| 519 | && vlib_worker_threads->wait_at_barrier[0]))); |
| 520 | } |
| 521 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 522 | static inline void |
| 523 | vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf) |
| 524 | { |
| 525 | CLIB_MEMORY_BARRIER (); |
| 526 | hf->valid = 1; |
| 527 | } |
| 528 | |
| 529 | static inline vlib_frame_queue_elt_t * |
| 530 | vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index) |
| 531 | { |
| 532 | vlib_frame_queue_t *fq; |
| 533 | vlib_frame_queue_elt_t *elt; |
| 534 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 535 | vlib_frame_queue_main_t *fqm = |
| 536 | vec_elt_at_index (tm->frame_queue_mains, frame_queue_index); |
| 537 | u64 new_tail; |
| 538 | |
| 539 | fq = fqm->vlib_frame_queues[index]; |
| 540 | ASSERT (fq); |
| 541 | |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 542 | new_tail = clib_atomic_add_fetch (&fq->tail, 1); |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 543 | |
| 544 | /* Wait until a ring slot is available */ |
| 545 | while (new_tail >= fq->head_hint + fq->nelts) |
| 546 | vlib_worker_thread_barrier_check (); |
| 547 | |
| 548 | elt = fq->elts + (new_tail & (fq->nelts - 1)); |
| 549 | |
| 550 | /* this would be very bad... */ |
| 551 | while (elt->valid) |
| 552 | ; |
| 553 | |
| 554 | elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME; |
| 555 | elt->last_n_vectors = elt->n_vectors = 0; |
| 556 | |
| 557 | return elt; |
| 558 | } |
| 559 | |
| 560 | static inline vlib_frame_queue_t * |
| 561 | is_vlib_frame_queue_congested (u32 frame_queue_index, |
| 562 | u32 index, |
| 563 | u32 queue_hi_thresh, |
| 564 | vlib_frame_queue_t ** |
| 565 | handoff_queue_by_worker_index) |
| 566 | { |
| 567 | vlib_frame_queue_t *fq; |
| 568 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 569 | vlib_frame_queue_main_t *fqm = |
| 570 | vec_elt_at_index (tm->frame_queue_mains, frame_queue_index); |
| 571 | |
| 572 | fq = handoff_queue_by_worker_index[index]; |
| 573 | if (fq != (vlib_frame_queue_t *) (~0)) |
| 574 | return fq; |
| 575 | |
| 576 | fq = fqm->vlib_frame_queues[index]; |
| 577 | ASSERT (fq); |
| 578 | |
| 579 | if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh))) |
| 580 | { |
| 581 | /* a valid entry in the array will indicate the queue has reached |
| 582 | * the specified threshold and is congested |
| 583 | */ |
| 584 | handoff_queue_by_worker_index[index] = fq; |
| 585 | fq->enqueue_full_events++; |
| 586 | return fq; |
| 587 | } |
| 588 | |
| 589 | return NULL; |
| 590 | } |
| 591 | |
| 592 | static inline vlib_frame_queue_elt_t * |
| 593 | vlib_get_worker_handoff_queue_elt (u32 frame_queue_index, |
| 594 | u32 vlib_worker_index, |
| 595 | vlib_frame_queue_elt_t ** |
| 596 | handoff_queue_elt_by_worker_index) |
| 597 | { |
| 598 | vlib_frame_queue_elt_t *elt; |
| 599 | |
| 600 | if (handoff_queue_elt_by_worker_index[vlib_worker_index]) |
| 601 | return handoff_queue_elt_by_worker_index[vlib_worker_index]; |
| 602 | |
| 603 | elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index); |
| 604 | |
| 605 | handoff_queue_elt_by_worker_index[vlib_worker_index] = elt; |
| 606 | |
| 607 | return elt; |
| 608 | } |
| 609 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 610 | u8 *vlib_thread_stack_init (uword thread_index); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 611 | int vlib_thread_cb_register (struct vlib_main_t *vm, |
| 612 | vlib_thread_callbacks_t * cb); |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 613 | extern void *rpc_call_main_thread_cb_fn; |
| 614 | |
| 615 | void |
| 616 | vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t * |
| 617 | args); |
| 618 | void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size); |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 619 | void vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id); |
Dave Barach | ab1a50c | 2020-10-06 14:08:16 -0400 | [diff] [blame] | 620 | vlib_thread_main_t *vlib_get_thread_main_not_inline (void); |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 621 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 622 | #endif /* included_vlib_threads_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 623 | |
| 624 | /* |
| 625 | * fd.io coding-style-patch-verification: ON |
| 626 | * |
| 627 | * Local Variables: |
| 628 | * eval: (c-set-style "gnu") |
| 629 | * End: |
| 630 | */ |