FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
node_funcs.h
Go to the documentation of this file.
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 /*
16  * node_funcs.h: processing nodes global functions/inlines
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 /** \file
41  vlib node functions
42 */
43 
44 
45 #ifndef included_vlib_node_funcs_h
46 #define included_vlib_node_funcs_h
47 
48 #include <vppinfra/fifo.h>
50 
51 /** \brief Get vlib node by index.
52  @warning This function will ASSERT if @c i is out of range.
53  @param vm vlib_main_t pointer, varies by thread
54  @param i node index.
55  @return pointer to the requested vlib_node_t.
56 */
57 
60 {
61  return vec_elt (vm->node_main.nodes, i);
62 }
63 
64 /** \brief Get vlib node by graph arc (next) index.
65  @param vm vlib_main_t pointer, varies by thread
66  @param node_index index of original node
67  @param next_index graph arc index
68  @return pointer to the vlib_node_t at the end of the indicated arc
69 */
70 
72 vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
73 {
74  vlib_node_main_t *nm = &vm->node_main;
75  vlib_node_t *n;
76 
77  n = vec_elt (nm->nodes, node_index);
78  ASSERT (next_index < vec_len (n->next_nodes));
79  return vlib_get_node (vm, n->next_nodes[next_index]);
80 }
81 
82 /** \brief Get node runtime by node index.
83  @param vm vlib_main_t pointer, varies by thread
84  @param node_index index of node
85  @return pointer to the indicated vlib_node_runtime_t
86 */
87 
90 {
91  vlib_node_main_t *nm = &vm->node_main;
92  vlib_node_t *n = vec_elt (nm->nodes, node_index);
93  vlib_process_t *p;
94  if (n->type != VLIB_NODE_TYPE_PROCESS)
95  return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
96  else
97  {
98  p = vec_elt (nm->processes, n->runtime_index);
99  return &p->node_runtime;
100  }
101 }
102 
103 /** \brief Get node runtime private data by node index.
104  @param vm vlib_main_t pointer, varies by thread
105  @param node_index index of the node
106  @return pointer to the indicated vlib_node_runtime_t private data
107 */
108 
109 always_inline void *
111 {
112  vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
113  return r->runtime_data;
114 }
115 
116 /** \brief Set node runtime private data.
117  @param vm vlib_main_t pointer, varies by thread
118  @param node_index index of the node
119  @param runtime_data arbitrary runtime private data
120  @param n_runtime_data_bytes size of runtime private data
121 */
122 
123 always_inline void
125  void *runtime_data, u32 n_runtime_data_bytes)
126 {
127  vlib_node_t *n = vlib_get_node (vm, node_index);
128  vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
129 
130  n->runtime_data_bytes = n_runtime_data_bytes;
131  vec_free (n->runtime_data);
132  vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
133 
134  ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
135  STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
136 
137  if (vec_len (n->runtime_data) > 0)
139  vec_len (n->runtime_data));
140 }
141 
142 /** \brief Set node dispatch state.
143  @param vm vlib_main_t pointer, varies by thread
144  @param node_index index of the node
145  @param new_state new state for node, see vlib_node_state_t
146 */
147 always_inline void
149  vlib_node_state_t new_state)
150 {
151  vlib_node_main_t *nm = &vm->node_main;
152  vlib_node_t *n;
154 
155  n = vec_elt (nm->nodes, node_index);
156  if (n->type == VLIB_NODE_TYPE_PROCESS)
157  {
159  r = &p->node_runtime;
160 
161  /* When disabling make sure flags are cleared. */
165  }
166  else
168 
169  ASSERT (new_state < VLIB_N_NODE_STATE);
170 
171  if (n->type == VLIB_NODE_TYPE_INPUT)
172  {
174  nm->input_node_counts_by_state[n->state] -= 1;
175  nm->input_node_counts_by_state[new_state] += 1;
176  }
177 
178  n->state = new_state;
179  r->state = new_state;
180 }
181 
182 /** \brief Get node dispatch state.
183  @param vm vlib_main_t pointer, varies by thread
184  @param node_index index of the node
185  @return state for node, see vlib_node_state_t
186 */
189 {
190  vlib_node_main_t *nm = &vm->node_main;
191  vlib_node_t *n;
192  n = vec_elt (nm->nodes, node_index);
193  return n->state;
194 }
195 
196 always_inline void
198 {
199  vlib_node_main_t *nm = &vm->node_main;
200  vlib_node_t *n = vec_elt (nm->nodes, node_index);
205 }
206 
209 {
210  vlib_node_main_t *nm = &vm->node_main;
212  return vec_elt (nm->processes, node->runtime_index);
213 }
214 
217 {
218  ASSERT (f != NULL);
220  return f;
221 }
222 
223 always_inline void
225 {
227 }
228 
229 /* Byte alignment for vector arguments. */
230 #define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
231 
234 {
235  return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
237 }
238 
239 /** \brief Get pointer to frame vector data.
240  @param f vlib_frame_t pointer
241  @return pointer to first vector element in frame
242 */
243 always_inline void *
245 {
246  return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
247 }
248 
249 /** \brief Get pointer to frame scalar data.
250 
251  @param f vlib_frame_t pointer
252 
253  @return arbitrary node scalar data
254 
255  @sa vlib_frame_vector_args
256 */
257 always_inline void *
259 {
260  return vlib_frame_vector_args (f) - f->scalar_size;
261 }
262 
265  vlib_node_runtime_t * n, u32 next_index)
266 {
267  vlib_node_main_t *nm = &vm->node_main;
268  vlib_next_frame_t *nf;
269 
270  ASSERT (next_index < n->n_next_nodes);
271  nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
272 
273  if (CLIB_DEBUG > 0)
274  {
275  vlib_node_t *node, *next;
276  node = vec_elt (nm->nodes, n->node_index);
277  next = vec_elt (nm->nodes, node->next_nodes[next_index]);
278  ASSERT (nf->node_runtime_index == next->runtime_index);
279  }
280 
281  return nf;
282 }
283 
284 /** \brief Get pointer to frame by (@c node_index, @c next_index).
285 
286  @warning This is not a function that you should call directly.
287  See @ref vlib_get_next_frame instead.
288 
289  @param vm vlib_main_t pointer, varies by thread
290  @param node_index index of the node
291  @param next_index graph arc index
292 
293  @return pointer to the requested vlib_next_frame_t
294 
295  @sa vlib_get_next_frame
296 */
297 
299 vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
300 {
301  vlib_node_main_t *nm = &vm->node_main;
302  vlib_node_t *n;
304 
305  n = vec_elt (nm->nodes, node_index);
307  return vlib_node_runtime_get_next_frame (vm, r, next_index);
308 }
309 
311  vlib_node_runtime_t * node,
312  u32 next_index,
313  u32 alloc_new_frame);
314 
315 #define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
316 do { \
317  vlib_frame_t * _f \
318  = vlib_get_next_frame_internal ((vm), (node), (next_index), \
319  (alloc_new_frame)); \
320  u32 _n = _f->n_vectors; \
321  (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
322  (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
323 } while (0)
324 
325 
326 /** \brief Get pointer to next frame vector data by
327  (@c vlib_node_runtime_t, @c next_index).
328  Standard single/dual loop boilerplate element.
329  @attention This is a MACRO, with SIDE EFFECTS.
330 
331  @param vm vlib_main_t pointer, varies by thread
332  @param node current node vlib_node_runtime_t pointer
333  @param next_index requested graph arc index
334 
335  @return @c vectors -- pointer to next available vector slot
336  @return @c n_vectors_left -- number of vector slots available
337 */
338 #define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
339  vlib_get_next_frame_macro (vm, node, next_index, \
340  vectors, n_vectors_left, \
341  /* alloc new frame */ 0)
342 
343 #define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
344  vlib_get_next_frame_macro (vm, node, next_index, \
345  vectors, n_vectors_left, \
346  /* alloc new frame */ 1)
347 
348 /** \brief Release pointer to next frame vector data.
349  Standard single/dual loop boilerplate element.
350  @param vm vlib_main_t pointer, varies by thread
351  @param r current node vlib_node_runtime_t pointer
352  @param next_index graph arc index
353  @param n_packets_left number of slots still available in vector
354 */
355 void
358  u32 next_index, u32 n_packets_left);
359 
360 /* Combination get plus put. Returns vector argument just added. */
361 #define vlib_set_next_frame(vm,node,next_index,v) \
362 ({ \
363  uword _n_left; \
364  vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
365  ASSERT (_n_left > 0); \
366  vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
367  (v); \
368 })
369 
370 always_inline void
372  vlib_node_runtime_t * node,
373  u32 next_index, u32 buffer_index)
374 {
375  u32 *p;
376  p = vlib_set_next_frame (vm, node, next_index, p);
377  p[0] = buffer_index;
378 }
379 
380 vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
381 void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
382  vlib_frame_t * f);
383 
386 {
387  return vm->node_main.current_process_index != ~0;
388 }
389 
392 {
393  vlib_node_main_t *nm = &vm->node_main;
394  if (vlib_in_process_context (vm))
395  return vec_elt (nm->processes, nm->current_process_index);
396  return 0;
397 }
398 
401 {
403 }
404 
405 /** Returns TRUE if a process suspend time is less than 10us
406  @param dt - remaining poll time in seconds
407  @returns 1 if dt < 10e-6, 0 otherwise
408 */
411 {
412  return dt < 10e-6;
413 }
414 
415 /** Suspend a vlib cooperative multi-tasking thread for a period of time
416  @param vm - vlib_main_t *
417  @param dt - suspend interval in seconds
418  @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
419 */
420 
423 {
424  uword r;
425  vlib_node_main_t *nm = &vm->node_main;
427 
430 
434  {
435  /* expiration time in 10us ticks */
436  p->resume_clock_interval = dt * 1e5;
438  }
439 
440  return r;
441 }
442 
443 always_inline void
445  uword is_one_time_event)
446 {
449  if (is_one_time_event)
451  clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
452 }
453 
454 always_inline void
456 {
459  vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
460 }
461 
462 always_inline void *
464  uword * return_event_type_opaque)
465 {
466  vlib_node_main_t *nm = &vm->node_main;
467  vlib_process_t *p;
469  uword t;
470  void *event_data_vector;
471 
472  p = vec_elt (nm->processes, nm->current_process_index);
473 
474  /* Find first type with events ready.
475  Return invalid type when there's nothing there. */
477  if (t == ~0)
478  return 0;
479 
481  clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
482 
483  ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
484  event_data_vector = p->pending_event_data_by_type_index[t];
486 
487  et = pool_elt_at_index (p->event_type_pool, t);
488 
489  /* Return user's opaque value and possibly index. */
490  *return_event_type_opaque = et->opaque;
491 
493 
494  return event_data_vector;
495 }
496 
497 /* Return event data vector for later reuse. We reuse event data to avoid
498  repeatedly allocating event vectors in cases where we care about speed. */
499 always_inline void
500 vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
501 {
502  vlib_node_main_t *nm = &vm->node_main;
503  vec_add1 (nm->recycled_event_data_vectors, event_data);
504 }
505 
506 /** Return the first event type which has occurred and a vector of per-event
507  data of that type, or a timeout indication
508 
509  @param vm - vlib_main_t pointer
510  @param data_vector - pointer to a (uword *) vector to receive event data
511  @returns either an event type and a vector of per-event instance data,
512  or ~0 to indicate a timeout.
513 */
514 
517 {
518  vlib_node_main_t *nm = &vm->node_main;
519  vlib_process_t *p;
521  uword r, t, l;
522 
523  p = vec_elt (nm->processes, nm->current_process_index);
524 
525  /* Find first type with events ready.
526  Return invalid type when there's nothing there. */
528  if (t == ~0)
529  return t;
530 
532  clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
533 
534  l = _vec_len (p->pending_event_data_by_type_index[t]);
535  if (data_vector)
536  vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
537  _vec_len (p->pending_event_data_by_type_index[t]) = 0;
538 
539  et = pool_elt_at_index (p->event_type_pool, t);
540 
541  /* Return user's opaque value. */
542  r = et->opaque;
543 
545 
546  return r;
547 }
548 
551  uword ** data_vector)
552 {
553  uword l;
554 
556  clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
557 
558  l = _vec_len (p->pending_event_data_by_type_index[t]);
559  if (data_vector)
560  vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
561  _vec_len (p->pending_event_data_by_type_index[t]) = 0;
562 
564 
565  return l;
566 }
567 
568 /* As above but query as specified type of event. Returns number of
569  events found. */
572  uword with_type_opaque)
573 {
574  vlib_node_main_t *nm = &vm->node_main;
575  vlib_process_t *p;
576  uword t, *h;
577 
578  p = vec_elt (nm->processes, nm->current_process_index);
579  h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
580  if (!h)
581  /* This can happen when an event has not yet been
582  signaled with given opaque type. */
583  return 0;
584 
585  t = h[0];
587  return 0;
588 
589  return vlib_process_get_events_helper (p, t, data_vector);
590 }
591 
594 {
595  vlib_node_main_t *nm = &vm->node_main;
596  vlib_process_t *p;
597  uword r;
598 
599  p = vec_elt (nm->processes, nm->current_process_index);
601  {
603  r =
608  }
609 
610  return p->non_empty_event_type_bitmap;
611 }
612 
615  uword ** data_vector,
616  uword with_type_index)
617 {
618  vlib_node_main_t *nm = &vm->node_main;
619  vlib_process_t *p;
620  uword r;
621 
622  p = vec_elt (nm->processes, nm->current_process_index);
623  ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
624  while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
625  {
627  r =
632  }
633 
634  return vlib_process_get_events_helper (p, with_type_index, data_vector);
635 }
636 
639  uword ** data_vector,
640  uword with_type_opaque)
641 {
642  vlib_node_main_t *nm = &vm->node_main;
643  vlib_process_t *p;
644  uword r, *h;
645 
646  p = vec_elt (nm->processes, nm->current_process_index);
647  h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
648  while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
649  {
651  r =
656 
657  /* See if unknown event type has been signaled now. */
658  if (!h)
659  h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
660  }
661 
662  return vlib_process_get_events_helper (p, h[0], data_vector);
663 }
664 
665 /** Suspend a cooperative multi-tasking thread
666  Waits for an event, or for the indicated number of seconds to elapse
667  @param vm - vlib_main_t pointer
668  @param dt - timeout, in seconds.
669  @returns the remaining time interval
670 */
671 
674 {
675  vlib_node_main_t *nm = &vm->node_main;
676  vlib_process_t *p;
677  f64 wakeup_time;
678  uword r;
679 
680  p = vec_elt (nm->processes, nm->current_process_index);
681 
684  return dt;
685 
686  wakeup_time = vlib_time_now (vm) + dt;
687 
688  /* Suspend waiting for both clock and event to occur. */
691 
694  {
695  p->resume_clock_interval = dt * 1e5;
697  }
698 
699  /* Return amount of time still left to sleep.
700  If <= 0 then we've been waken up by the clock (and not an event). */
701  return wakeup_time - vlib_time_now (vm);
702 }
703 
706 {
708  pool_get (p->event_type_pool, et);
709  et->opaque = with_type_opaque;
710  return et;
711 }
712 
715  uword with_type_opaque)
716 {
717  vlib_node_main_t *nm = &vm->node_main;
718  vlib_node_t *n = vlib_get_node (vm, node_index);
721  uword t;
722 
723  et = vlib_process_new_event_type (p, with_type_opaque);
724  t = et - p->event_type_pool;
726  clib_bitmap_ori (p->one_time_event_type_bitmap, t);
727  return t;
728 }
729 
730 always_inline void
732  uword t)
733 {
734  vlib_node_main_t *nm = &vm->node_main;
735  vlib_node_t *n = vlib_get_node (vm, node_index);
737 
739  vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
740 }
741 
742 always_inline void *
744  vlib_node_t * n,
745  vlib_process_t * p,
746  uword t,
747  uword n_data_elts, uword n_data_elt_bytes)
748 {
749  uword p_flags, add_to_pending, delete_from_wheel;
750  void *data_to_be_written_by_caller;
751 
753 
755 
757 
758  /* Resize data vector and return caller's data to be written. */
759  {
760  void *data_vec = p->pending_event_data_by_type_index[t];
761  uword l;
762 
763  if (!data_vec && vec_len (nm->recycled_event_data_vectors))
764  {
765  data_vec = vec_pop (nm->recycled_event_data_vectors);
766  _vec_len (data_vec) = 0;
767  }
768 
769  l = vec_len (data_vec);
770 
771  data_vec = _vec_resize (data_vec,
772  /* length_increment */ n_data_elts,
773  /* total size after increment */
774  (l + n_data_elts) * n_data_elt_bytes,
775  /* header_bytes */ 0, /* data_align */ 0);
776 
777  p->pending_event_data_by_type_index[t] = data_vec;
778  data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
779  }
780 
782  clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
783 
784  p_flags = p->flags;
785 
786  /* Event was already signalled? */
787  add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
788 
789  /* Process will resume when suspend time elapses? */
790  delete_from_wheel = 0;
792  {
793  /* Waiting for both event and clock? */
795  {
797  ((TWT (tw_timer_wheel) *) nm->timing_wheel,
798  p->stop_timer_handle))
799  delete_from_wheel = 1;
800  else
801  /* timer just popped so process should already be on the list */
802  add_to_pending = 0;
803  }
804  else
805  /* Waiting only for clock. Event will be queue and may be
806  handled when timer expires. */
807  add_to_pending = 0;
808  }
809 
810  /* Never add current process to pending vector since current process is
811  already running. */
812  add_to_pending &= nm->current_process_index != n->runtime_index;
813 
814  if (add_to_pending)
815  {
817  p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
819  if (delete_from_wheel)
820  TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
821  p->stop_timer_handle);
822  }
823 
824  return data_to_be_written_by_caller;
825 }
826 
827 always_inline void *
829  uword node_index,
830  uword type_opaque,
831  uword n_data_elts, uword n_data_elt_bytes)
832 {
833  vlib_node_main_t *nm = &vm->node_main;
834  vlib_node_t *n = vlib_get_node (vm, node_index);
836  uword *h, t;
837 
838  /* Must be in main thread */
839  ASSERT (vlib_get_thread_index () == 0);
840 
841  h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
842  if (!h)
843  {
845  vlib_process_new_event_type (p, type_opaque);
846  t = et - p->event_type_pool;
847  hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
848  }
849  else
850  t = h[0];
851 
852  return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
853  n_data_elt_bytes);
854 }
855 
856 always_inline void *
858  f64 dt,
859  uword node_index,
860  uword type_opaque,
861  uword n_data_elts, uword n_data_elt_bytes)
862 {
863  vlib_node_main_t *nm = &vm->node_main;
864  vlib_node_t *n = vlib_get_node (vm, node_index);
866  uword *h, t;
867 
868  h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
869  if (!h)
870  {
872  vlib_process_new_event_type (p, type_opaque);
873  t = et - p->event_type_pool;
874  hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
875  }
876  else
877  t = h[0];
878 
880  return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
881  n_data_elt_bytes);
882  else
883  {
885 
886  pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
887 
888  te->n_data_elts = n_data_elts;
889  te->n_data_elt_bytes = n_data_elt_bytes;
890  te->n_data_bytes = n_data_elts * n_data_elt_bytes;
891 
892  /* Assert that structure fields are big enough. */
893  ASSERT (te->n_data_elts == n_data_elts);
894  ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
895  ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
896 
898  te->event_type_index = t;
899 
900  p->stop_timer_handle =
901  TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
903  (te - nm->signal_timed_event_data_pool),
904  0 /* timer_id */ ,
905  (vlib_time_now (vm) + dt) * 1e5);
906 
907  /* Inline data big enough to hold event? */
908  if (te->n_data_bytes < sizeof (te->inline_event_data))
909  return te->inline_event_data;
910  else
911  {
912  te->event_data_as_vector = 0;
914  return te->event_data_as_vector;
915  }
916  }
917 }
918 
919 always_inline void *
921  uword node_index,
922  uword type_index,
923  uword n_data_elts,
924  uword n_data_elt_bytes)
925 {
926  vlib_node_main_t *nm = &vm->node_main;
927  vlib_node_t *n = vlib_get_node (vm, node_index);
929  return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
930  n_data_elt_bytes);
931 }
932 
933 always_inline void
935  uword node_index, uword type_opaque, uword data)
936 {
937  uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
938  1 /* elts */ , sizeof (uword));
939  d[0] = data;
940 }
941 
942 always_inline void
944  uword node_index,
945  uword type_opaque, void *data)
946 {
947  void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
948  1 /* elts */ , sizeof (data));
949  d[0] = data;
950 }
951 
952 /**
953  * Signal event to process from any thread.
954  *
955  * When in doubt, use this.
956  */
957 always_inline void
959  uword node_index, uword type_opaque, uword data)
960 {
961  if (vlib_get_thread_index () != 0)
962  {
964  .node_index = node_index,
965  .type_opaque = type_opaque,
966  .data = data,
967  };
969  (u8 *) & args, sizeof (args));
970  }
971  else
972  vlib_process_signal_event (vm, node_index, type_opaque, data);
973 }
974 
975 always_inline void
977  uword node_index,
978  uword type_index, uword data)
979 {
980  uword *d =
981  vlib_process_signal_one_time_event_data (vm, node_index, type_index,
982  1 /* elts */ , sizeof (uword));
983  d[0] = data;
984 }
985 
986 always_inline void
989 {
991  /* data */ ~0);
992  clib_memset (p, ~0, sizeof (p[0]));
993 }
994 
995 always_inline void
998  ** wps)
999 {
1002  vec_free (*wps);
1003 }
1004 
1005 always_inline void
1008  * p)
1009 {
1010  p->node_index = vlib_current_process (vm);
1011  p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1012  ~0);
1014  /* don't care about data */ 0,
1015  p->one_time_event);
1016 }
1017 
1018 always_inline void
1021  ** wps)
1022 {
1024  vec_add2 (*wps, wp, 1);
1026 }
1027 
1030  vlib_node_runtime_t * node,
1031  uword n_vectors)
1032 {
1033  u32 i, d, vi0, vi1;
1034  u32 i0, i1;
1035 
1038  & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1039  i0 = i ^ 0;
1040  i1 = i ^ 1;
1042  -
1045  vi0 = node->main_loop_vector_stats[i0];
1046  vi1 = node->main_loop_vector_stats[i1];
1047  vi0 = d == 0 ? vi0 : 0;
1048  vi1 = d <= 1 ? vi1 : 0;
1049  vi0 += n_vectors;
1050  node->main_loop_vector_stats[i0] = vi0;
1051  node->main_loop_vector_stats[i1] = vi1;
1053  /* Return previous counter. */
1054  return node->main_loop_vector_stats[i1];
1055 }
1056 
1059 {
1060  vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
1061  u32 v;
1062 
1063  v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1064  0);
1065  return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1066 }
1067 
1070 {
1071  vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
1072  u32 v;
1073 
1074  v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1075  0);
1077 }
1078 
1079 void
1081 
1082 /* Return the edge index if present, ~0 otherwise */
1083 uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1084 
1085 /* Add next node to given node in given slot. */
1086 uword
1088  uword node, uword next_node, uword slot);
1089 
1090 /* As above but adds to end of node's next vector. */
1093 {
1094  return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1095 }
1096 
1097 /* Add next node to given node in given slot. */
1098 uword
1100  uword node, char *next_name, uword slot);
1101 
1102 /* As above but adds to end of node's next vector. */
1105 {
1106  return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1107 }
1108 
1109 /**
1110  * Get list of nodes
1111  */
1112 void
1113 vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1114  int barrier_sync, vlib_node_t **** node_dupsp,
1115  vlib_main_t *** stat_vmsp);
1116 
1117 /* Query node given name. */
1119 
1120 /* Rename a node. */
1121 void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
1122 
1123 /* Register new packet processing node. Nodes can be registered
1124  dynamically via this call or statically via the VLIB_REGISTER_NODE
1125  macro. */
1127 
1128 /* Register all static nodes registered via VLIB_REGISTER_NODE. */
1130 
1131 /* Start a process. */
1132 void vlib_start_process (vlib_main_t * vm, uword process_index);
1133 
1134 /* Sync up runtime and main node stats. */
1136 
1137 /* Node graph initialization function. */
1139 
1146 /* Parse node name -> node index. */
1148 
1149 always_inline void
1151  u32 counter_index, u64 increment)
1152 {
1153  vlib_node_t *n = vlib_get_node (vm, node_index);
1154  vlib_error_main_t *em = &vm->error_main;
1155  u32 node_counter_base_index = n->error_heap_index;
1156  em->counters[node_counter_base_index + counter_index] += increment;
1157 }
1158 
1159 #endif /* included_vlib_node_funcs_h */
1160 
1161 /*
1162  * fd.io coding-style-patch-verification: ON
1163  *
1164  * Local Variables:
1165  * eval: (c-set-style "gnu")
1166  * End:
1167  */
u32 * next_nodes
Definition: node.h:358
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
static void vlib_node_set_runtime_data(vlib_main_t *vm, u32 node_index, void *runtime_data, u32 n_runtime_data_bytes)
Set node runtime private data.
Definition: node_funcs.h:124
static void vlib_process_free_event_type(vlib_process_t *p, uword t, uword is_one_time_event)
Definition: node_funcs.h:444
u32 error_heap_index
Definition: node.h:348
u32 next_frame_index
Start of next frames for this node.
Definition: node.h:515
#define hash_set(h, key, value)
Definition: hash.h:255
static void vlib_signal_one_time_waiting_process_vector(vlib_main_t *vm, vlib_one_time_waiting_process_t **wps)
Definition: node_funcs.h:996
static vlib_next_frame_t * vlib_node_get_next_frame(vlib_main_t *vm, u32 node_index, u32 next_index)
Get pointer to frame by (node_index, next_index).
Definition: node_funcs.h:299
static void vlib_signal_one_time_waiting_process(vlib_main_t *vm, vlib_one_time_waiting_process_t *p)
Definition: node_funcs.h:987
vlib_process_t ** processes
Definition: node.h:762
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:673
format_function_t format_vlib_node_name
Definition: node_funcs.h:1141
static f64 vlib_node_vectors_per_main_loop_as_float(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:1058
vlib_node_runtime_t node_runtime
Definition: node.h:576
uword vlib_node_get_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node.c:184
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:190
u8 runtime_data[0]
Function dependent node-runtime data.
Definition: node.h:545
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:593
static void vlib_set_next_frame_buffer(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 buffer_index)
Definition: node_funcs.h:371
static uword vlib_current_process(vlib_main_t *vm)
Definition: node_funcs.h:400
unsigned long u64
Definition: types.h:89
static void vlib_node_set_interrupt_pending(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:197
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
static uword vlib_node_add_named_next(vlib_main_t *vm, uword node, char *name)
Definition: node_funcs.h:1104
#define NULL
Definition: clib.h:58
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:232
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
u32 main_loop_vector_stats[2]
Definition: node.h:529
void ** pending_event_data_by_type_index
Definition: node.h:607
u32 current_process_index
Definition: node.h:765
static_always_inline void clib_spinlock_unlock_if_init(clib_spinlock_t *p)
Definition: lock.h:98
static vlib_frame_t * vlib_get_frame(vlib_main_t *vm, vlib_frame_t *f)
Definition: node_funcs.h:216
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:525
#define vlib_set_next_frame(vm, node, next_index, v)
Definition: node_funcs.h:361
void vlib_process_signal_event_mt_helper(vlib_process_signal_event_mt_args_t *args)
Definition: threads.c:1795
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:564
int i
#define STRUCT_OFFSET_OF(t, f)
Definition: clib.h:65
void clib_longjmp(clib_longjmp_t *save, uword return_value)
format_function_t format_vlib_cpu_time
Definition: node_funcs.h:1144
clib_spinlock_t pending_interrupt_lock
Definition: node.h:735
void * runtime_data
Definition: node.h:310
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:236
uword clib_setjmp(clib_longjmp_t *save, uword return_value_not_taken)
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1092
unsigned char u8
Definition: types.h:56
#define vec_pop(V)
Returns last element of a vector and decrements its length.
Definition: vec.h:619
static uword vlib_process_suspend_time_is_zero(f64 dt)
Returns TRUE if a process suspend time is less than 10us.
Definition: node_funcs.h:410
static vlib_process_event_type_t * vlib_process_new_event_type(vlib_process_t *p, uword with_type_opaque)
Definition: node_funcs.h:705
double f64
Definition: types.h:142
u8 state
Definition: node.h:332
#define vec_add(V, E, N)
Add N elements to end of vector V (no header, unspecified alignment)
Definition: vec.h:602
u8 *() format_function_t(u8 *s, va_list *args)
Definition: format.h:48
u32 * pending_interrupt_node_runtime_indices
Definition: node.h:734
static uword vlib_process_suspend(vlib_main_t *vm, f64 dt)
Suspend a vlib cooperative multi-tasking thread for a period of time.
Definition: node_funcs.h:422
u32 main_loop_count_last_dispatch
Saved main loop counter of last dispatch of this node.
Definition: node.h:526
void vlib_node_rename(vlib_main_t *vm, u32 node_index, char *fmt,...)
Definition: node.c:102
#define VLIB_FRAME_NO_APPEND
Definition: node.h:442
void ** recycled_event_data_vectors
Definition: node.h:771
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:516
#define always_inline
Definition: clib.h:98
format_function_t format_vlib_node_and_next
Definition: node_funcs.h:1143
static uword clib_bitmap_is_zero(uword *ai)
predicate function; is an entire bitmap empty?
Definition: bitmap.h:57
static u32 counter_index(vlib_main_t *vm, vlib_error_t e)
vlib_node_t ** nodes
Definition: node.h:721
#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE
Definition: main.h:95
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
format_function_t format_vlib_next_node_name
Definition: node_funcs.h:1142
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
Definition: node.h:590
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:242
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:210
unsigned int u32
Definition: types.h:88
static void vlib_process_delete_one_time_event(vlib_main_t *vm, uword node_index, uword t)
Definition: node_funcs.h:731
vlib_node_runtime_t * nodes_by_type[VLIB_N_NODE_TYPE]
Definition: node.h:731
int TW() tw_timer_handle_is_free(TWT(tw_timer_wheel) *tw, u32 handle)
static vlib_next_frame_t * vlib_node_runtime_get_next_frame(vlib_main_t *vm, vlib_node_runtime_t *n, u32 next_index)
Definition: node_funcs.h:264
static vlib_node_state_t vlib_node_get_state(vlib_main_t *vm, u32 node_index)
Get node dispatch state.
Definition: node_funcs.h:188
clib_error_t * vlib_node_main_init(vlib_main_t *vm)
Definition: node.c:631
#define hash_get(h, key)
Definition: hash.h:249
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:511
static void * vlib_process_signal_event_helper(vlib_node_main_t *nm, vlib_node_t *n, vlib_process_t *p, uword t, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:743
u16 state
Input node state.
Definition: node.h:533
u32 vlib_register_node(vlib_main_t *vm, vlib_node_registration_t *r)
Definition: node.c:520
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:934
vlib_signal_timed_event_data_t * signal_timed_event_data_pool
Definition: node.h:752
static uword clib_bitmap_first_set(uword *ai)
Return the lowest numbered set bit in a bitmap.
Definition: bitmap.h:385
vlib_error_main_t error_main
Definition: main.h:143
u16 frame_flags
Definition: node.h:408
#define VLIB_FRAME_IS_ALLOCATED
Definition: node.h:449
static void vlib_process_maybe_free_event_type(vlib_process_t *p, uword t)
Definition: node_funcs.h:455
#define TWT(a)
static void * vlib_process_signal_event_data(vlib_main_t *vm, uword node_index, uword type_opaque, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:828
static void * vlib_node_get_runtime_data(vlib_main_t *vm, u32 node_index)
Get node runtime private data by node index.
Definition: node_funcs.h:110
static void vlib_process_signal_one_time_event(vlib_main_t *vm, uword node_index, uword type_index, uword data)
Definition: node_funcs.h:976
u32 node_index
Node index.
Definition: node.h:518
uword() unformat_function_t(unformat_input_t *input, va_list *args)
Definition: format.h:232
#define VLIB_PROCESS_RESUME_LONGJMP_RESUME
Definition: node.h:587
u8 name[64]
Definition: memclnt.api:152
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1150
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P with alignment A.
Definition: pool.h:230
static uword vlib_process_get_events_with_type(vlib_main_t *vm, uword **data_vector, uword with_type_opaque)
Definition: node_funcs.h:571
#define VLIB_FRAME_VECTOR_ALIGN
Definition: node_funcs.h:230
u64 * counters
Definition: error.h:48
static u32 vlib_node_runtime_update_main_loop_vector_stats(vlib_main_t *vm, vlib_node_runtime_t *node, uword n_vectors)
Definition: node_funcs.h:1029
static void vlib_process_signal_event_pointer(vlib_main_t *vm, uword node_index, uword type_opaque, void *data)
Definition: node_funcs.h:943
u8 inline_event_data[64 - 3 *sizeof(u32) - 2 *sizeof(u16)]
Definition: node.h:686
static void * vlib_process_signal_event_at_time(vlib_main_t *vm, f64 dt, uword node_index, uword type_opaque, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:857
u32 runtime_index
Definition: node.h:307
uword vlib_node_add_named_next_with_slot(vlib_main_t *vm, uword node, char *next_name, uword slot)
Definition: node.c:262
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:212
static vlib_process_t * vlib_get_current_process(vlib_main_t *vm)
Definition: node_funcs.h:391
#define VLIB_PROCESS_RESUME_LONGJMP_SUSPEND
Definition: node.h:586
static uword vlib_process_wait_for_one_time_event(vlib_main_t *vm, uword **data_vector, uword with_type_index)
Definition: node_funcs.h:614
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
static void vlib_process_signal_event_mt(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Signal event to process from any thread.
Definition: node_funcs.h:958
#define VLIB_PROCESS_RESUME_PENDING
Definition: node.h:593
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:89
static uword vlib_process_create_one_time_event(vlib_main_t *vm, uword node_index, uword with_type_opaque)
Definition: node_funcs.h:714
uword vlib_node_add_next_with_slot(vlib_main_t *vm, uword node, uword next_node, uword slot)
Definition: node.c:205
static void * vlib_frame_scalar_args(vlib_frame_t *f)
Get pointer to frame scalar data.
Definition: node_funcs.h:258
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:283
static u32 vlib_frame_vector_byte_offset(u32 scalar_size)
Definition: node_funcs.h:233
#define ARRAY_LEN(x)
Definition: clib.h:62
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
Definition: bitmap.h:197
static uword round_pow2(uword x, uword pow2)
Definition: clib.h:241
uword * one_time_event_type_bitmap
Definition: node.h:613
static u32 vlib_node_vectors_per_main_loop_as_integer(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:1069
void vlib_start_process(vlib_main_t *vm, uword process_index)
Definition: main.c:1549
#define pool_put_index(p, i)
Free pool element with given index.
Definition: pool.h:311
#define ASSERT(truth)
static uword vlib_process_get_events_helper(vlib_process_t *p, uword t, uword **data_vector)
Definition: node_funcs.h:550
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
Definition: node_funcs.h:148
vlib_frame_t * vlib_get_next_frame_internal(vlib_main_t *vm, vlib_node_runtime_t *node, u32 next_index, u32 alloc_new_frame)
Definition: main.c:351
static uword is_pow2(uword x)
Definition: clib.h:235
static void vlib_current_process_wait_for_one_time_event_vector(vlib_main_t *vm, vlib_one_time_waiting_process_t **wps)
Definition: node_funcs.h:1019
#define vec_elt(v, i)
Get vector value at index i.
struct _vlib_node_registration vlib_node_registration_t
void vlib_node_sync_stats(vlib_main_t *vm, vlib_node_t *n)
Definition: main.c:577
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_packets_left)
Release pointer to next frame vector data.
Definition: main.c:452
static vlib_node_t * vlib_get_next_node(vlib_main_t *vm, u32 node_index, u32 next_index)
Get vlib node by graph arc (next) index.
Definition: node_funcs.h:72
static void * vlib_process_get_event_data(vlib_main_t *vm, uword *return_event_type_opaque)
Definition: node_funcs.h:463
vlib_process_event_type_t * event_type_pool
Definition: node.h:620
u32 * data_from_advancing_timing_wheel
Definition: node.h:755
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
void vlib_rpc_call_main_thread(void *callback, u8 *args, u32 arg_size)
Definition: threads.c:1806
u32 input_node_counts_by_state[VLIB_N_NODE_STATE]
Definition: node.h:774
vlib_node_main_t node_main
Definition: main.h:129
static uword vlib_process_wait_for_event_with_type(vlib_main_t *vm, uword **data_vector, uword with_type_opaque)
Definition: node_funcs.h:638
u64 uword
Definition: types.h:112
format_function_t format_vlib_time
Definition: node_funcs.h:1145
vlib_next_frame_t * next_frames
Definition: node.h:744
static u32 vlib_timing_wheel_data_set_timed_event(u32 i)
Definition: node.h:707
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
u32 stop_timer_handle
Definition: node.h:629
uword * event_type_index_by_type_opaque
Definition: node.h:617
unformat_function_t unformat_vlib_node
Definition: node_funcs.h:1147
u64 resume_clock_interval
Definition: node.h:626
u16 flags
Definition: node.h:589
static uword vlib_in_process_context(vlib_main_t *vm)
Definition: node_funcs.h:385
vlib_node_type_t type
Definition: node.h:301
static vlib_process_t * vlib_get_process_from_node(vlib_main_t *vm, vlib_node_t *node)
Definition: node_funcs.h:208
vlib_node_state_t
Definition: node.h:274
u32 TW() tw_timer_start(TWT(tw_timer_wheel) *tw, u32 user_id, u32 timer_id, u64 interval)
Start a Tw Timer.
static void vlib_process_put_event_data(vlib_main_t *vm, void *event_data)
Definition: node_funcs.h:500
void vlib_register_all_static_nodes(vlib_main_t *vm)
Definition: node.c:540
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:59
#define VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
Definition: node.h:591
#define vec_foreach(var, vec)
Vector iterator.
clib_longjmp_t return_longjmp
Definition: node.h:579
u32 node_runtime_index
Definition: node.h:432
static void vlib_frame_no_append(vlib_frame_t *f)
Definition: node_funcs.h:224
u8 scalar_size
Definition: node.h:414
clib_longjmp_t resume_longjmp
Definition: node.h:585
#define TW(a)
static u32 vlib_timing_wheel_data_set_suspended_process(u32 i)
Definition: node.h:701
u32 main_loop_count
Definition: main.h:77
static_always_inline void clib_spinlock_lock_if_init(clib_spinlock_t *p)
Definition: lock.h:82
void * timing_wheel
Definition: node.h:750
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:181
u8 runtime_data_bytes
Definition: node.h:335
void TW() tw_timer_stop(TWT(tw_timer_wheel) *tw, u32 handle)
Stop a tw timer.
format_function_t format_vlib_node_graph
Definition: node_funcs.h:1140
static void vlib_current_process_wait_for_one_time_event(vlib_main_t *vm, vlib_one_time_waiting_process_t *p)
Definition: node_funcs.h:1006
uword * non_empty_event_type_bitmap
Definition: node.h:610
static void * vlib_process_signal_one_time_event_data(vlib_main_t *vm, uword node_index, uword type_index, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:920
#define VLIB_PROCESS_RETURN_LONGJMP_SUSPEND
Definition: node.h:582
void vlib_node_get_nodes(vlib_main_t *vm, u32 max_threads, int include_stats, int barrier_sync, vlib_node_t ****node_dupsp, vlib_main_t ***stat_vmsp)
Get list of nodes.
Definition: node.c:569