FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
main.h File Reference
+ Include dependency graph for main.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  vlib_main_t
 

Macros

#define VLIB_ELOG_MAIN_LOOP   0
 
#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE   7
 
#define VLIB_MAIN_LOOP_EXIT_NONE   0
 
#define VLIB_MAIN_LOOP_EXIT_PANIC   1
 
#define VLIB_MAIN_LOOP_EXIT_CLI   2
 
#define vlib_time_code(vm, body)
 
#define vlib_wait_with_timeout(vm, suspend_time, timeout_time, test)
 
#define vlib_panic_with_msg(vm, args...)   vlib_panic_with_error (vm, clib_error_return (0, args))
 
#define VLIB_PCAP_MAJOR_VERSION   1
 
#define VLIB_PCAP_MINOR_VERSION   0
 

Typedefs

typedef struct vlib_main_t vlib_main_t
 

Functions

void vlib_worker_loop (vlib_main_t *vm)
 
static f64 vlib_time_now (vlib_main_t *vm)
 
static f64 vlib_time_now_ticks (vlib_main_t *vm, u64 n)
 
static void vlib_time_wait (vlib_main_t *vm, f64 wait)
 
static void vlib_panic_with_error (vlib_main_t *vm, clib_error_t *error)
 
static void vlib_panic (vlib_main_t *vm)
 
static u32 vlib_vector_input_stats_index (vlib_main_t *vm, word delta)
 
static u32 vlib_last_vectors_per_main_loop (vlib_main_t *vm)
 
static f64 vlib_last_vectors_per_main_loop_as_f64 (vlib_main_t *vm)
 
static f64 vlib_last_vector_length_per_node (vlib_main_t *vm)
 
static void vlib_increment_main_loop_counter (vlib_main_t *vm)
 
static void vlib_set_queue_signal_callback (vlib_main_t *vm, void(*fp)(vlib_main_t *))
 
int vlib_main (vlib_main_t *vm, unformat_input_t *input)
 
u32 vlib_app_num_thread_stacks_needed (void)
 
void vlib_node_sync_stats (vlib_main_t *vm, vlib_node_t *n)
 

Variables

vlib_main_t vlib_global_main
 
u32 wraps
 
u8 ** vlib_thread_stacks
 

Macro Definition Documentation

◆ VLIB_ELOG_MAIN_LOOP

#define VLIB_ELOG_MAIN_LOOP   0

Definition at line 58 of file main.h.

◆ VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE

#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE   7

Definition at line 95 of file main.h.

◆ VLIB_MAIN_LOOP_EXIT_CLI

#define VLIB_MAIN_LOOP_EXIT_CLI   2

Definition at line 105 of file main.h.

◆ VLIB_MAIN_LOOP_EXIT_NONE

#define VLIB_MAIN_LOOP_EXIT_NONE   0

Definition at line 102 of file main.h.

◆ VLIB_MAIN_LOOP_EXIT_PANIC

#define VLIB_MAIN_LOOP_EXIT_PANIC   1

Definition at line 103 of file main.h.

◆ vlib_panic_with_msg

#define vlib_panic_with_msg (   vm,
  args... 
)    vlib_panic_with_error (vm, clib_error_return (0, args))

Definition at line 283 of file main.h.

◆ VLIB_PCAP_MAJOR_VERSION

#define VLIB_PCAP_MAJOR_VERSION   1

Definition at line 378 of file main.h.

◆ VLIB_PCAP_MINOR_VERSION

#define VLIB_PCAP_MINOR_VERSION   0

Definition at line 379 of file main.h.

◆ vlib_time_code

#define vlib_time_code (   vm,
  body 
)
Value:
do { \
f64 _t[2]; \
_t[0] = vlib_time_now (vm); \
do { body; } while (0); \
_t[1] = vlib_time_now (vm); \
clib_warning ("%.7e", _t[1] - _t[0]); \
} while (0)
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:232
vlib_main_t * vm
Definition: buffer.c:301

Definition at line 254 of file main.h.

◆ vlib_wait_with_timeout

#define vlib_wait_with_timeout (   vm,
  suspend_time,
  timeout_time,
  test 
)
Value:
({ \
uword __vlib_wait_with_timeout = 0; \
f64 __vlib_wait_time = 0; \
while (! (__vlib_wait_with_timeout = (test)) \
&& __vlib_wait_time < (timeout_time)) \
{ \
vlib_process_suspend (vm, suspend_time); \
__vlib_wait_time += suspend_time; \
} \
__vlib_wait_with_timeout; \
})
vlib_main_t * vm
Definition: buffer.c:301

Definition at line 263 of file main.h.

Typedef Documentation

◆ vlib_main_t

typedef struct vlib_main_t vlib_main_t

Function Documentation

◆ vlib_app_num_thread_stacks_needed()

u32 vlib_app_num_thread_stacks_needed ( void  )

Definition at line 384 of file main.c.

+ Here is the caller graph for this function:

◆ vlib_increment_main_loop_counter()

static void vlib_increment_main_loop_counter ( vlib_main_t vm)
inlinestatic

Definition at line 334 of file main.h.

+ Here is the call graph for this function:

◆ vlib_last_vector_length_per_node()

static f64 vlib_last_vector_length_per_node ( vlib_main_t vm)
inlinestatic

Definition at line 323 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_last_vectors_per_main_loop()

static u32 vlib_last_vectors_per_main_loop ( vlib_main_t vm)
inlinestatic

Definition at line 305 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_last_vectors_per_main_loop_as_f64()

static f64 vlib_last_vectors_per_main_loop_as_f64 ( vlib_main_t vm)
inlinestatic

Definition at line 314 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_main()

int vlib_main ( vlib_main_t vm,
unformat_input_t input 
)

Definition at line 1901 of file main.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_node_sync_stats()

void vlib_node_sync_stats ( vlib_main_t vm,
vlib_node_t n 
)

Definition at line 577 of file main.c.

+ Here is the caller graph for this function:

◆ vlib_panic()

static void vlib_panic ( vlib_main_t vm)
inlinestatic

Definition at line 287 of file main.h.

+ Here is the call graph for this function:

◆ vlib_panic_with_error()

static void vlib_panic_with_error ( vlib_main_t vm,
clib_error_t error 
)
inlinestatic

Definition at line 277 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_set_queue_signal_callback()

static void vlib_set_queue_signal_callback ( vlib_main_t vm,
void(*)(vlib_main_t *)  fp 
)
inlinestatic

Definition at line 362 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_time_now()

static f64 vlib_time_now ( vlib_main_t vm)
inlinestatic

Definition at line 232 of file main.h.

+ Here is the call graph for this function:

◆ vlib_time_now_ticks()

static f64 vlib_time_now_ticks ( vlib_main_t vm,
u64  n 
)
inlinestatic

Definition at line 238 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_time_wait()

static void vlib_time_wait ( vlib_main_t vm,
f64  wait 
)
inlinestatic

Definition at line 245 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_vector_input_stats_index()

static u32 vlib_vector_input_stats_index ( vlib_main_t vm,
word  delta 
)
inlinestatic

Definition at line 293 of file main.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vlib_worker_loop()

void vlib_worker_loop ( vlib_main_t vm)

Definition at line 1845 of file main.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ vlib_global_main

vlib_main_t vlib_global_main

Definition at line 1850 of file main.c.

◆ vlib_thread_stacks

u8** vlib_thread_stacks

Definition at line 601 of file main.c.

◆ wraps

u32 wraps

Definition at line 55 of file main.c.