FD.io VPP  v19.04.2-12-g66b1689
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  vnet_pcap_t
 
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

#define VLIB_ELOG_MAIN_LOOP   0

Definition at line 58 of file main.h.

#define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE   7

Definition at line 101 of file main.h.

#define VLIB_MAIN_LOOP_EXIT_CLI   2

Definition at line 111 of file main.h.

#define VLIB_MAIN_LOOP_EXIT_NONE   0

Definition at line 108 of file main.h.

#define VLIB_MAIN_LOOP_EXIT_PANIC   1

Definition at line 109 of file main.h.

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

Definition at line 306 of file main.h.

#define VLIB_PCAP_MAJOR_VERSION   1

Definition at line 401 of file main.h.

#define VLIB_PCAP_MINOR_VERSION   0

Definition at line 402 of file main.h.

#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:255
double f64
Definition: types.h:142
vlib_main_t * vm
Definition: buffer.c:312
#define clib_warning(format, args...)
Definition: error.h:59

Definition at line 277 of file main.h.

#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; \
})
double f64
Definition: types.h:142
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:452
vlib_main_t * vm
Definition: buffer.c:312
u64 uword
Definition: types.h:112

Definition at line 286 of file main.h.

Typedef Documentation

typedef struct vlib_main_t vlib_main_t

Function Documentation

u32 vlib_app_num_thread_stacks_needed ( void  )

Definition at line 386 of file main.c.

+ Here is the caller graph for this function:

static void vlib_increment_main_loop_counter ( vlib_main_t vm)
inlinestatic

Definition at line 357 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static f64 vlib_last_vector_length_per_node ( vlib_main_t vm)
inlinestatic

Definition at line 346 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static u32 vlib_last_vectors_per_main_loop ( vlib_main_t vm)
inlinestatic

Definition at line 328 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static f64 vlib_last_vectors_per_main_loop_as_f64 ( vlib_main_t vm)
inlinestatic

Definition at line 337 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

int vlib_main ( vlib_main_t vm,
unformat_input_t input 
)

Definition at line 1982 of file main.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void vlib_node_sync_stats ( vlib_main_t vm,
vlib_node_t n 
)

Definition at line 593 of file main.c.

+ Here is the caller graph for this function:

static void vlib_panic ( vlib_main_t vm)
inlinestatic

Definition at line 310 of file main.h.

+ Here is the call graph for this function:

static void vlib_panic_with_error ( vlib_main_t vm,
clib_error_t error 
)
inlinestatic

Definition at line 300 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

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

Definition at line 385 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static f64 vlib_time_now ( vlib_main_t vm)
inlinestatic

Definition at line 255 of file main.h.

+ Here is the call graph for this function:

static f64 vlib_time_now_ticks ( vlib_main_t vm,
u64  n 
)
inlinestatic

Definition at line 261 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void vlib_time_wait ( vlib_main_t vm,
f64  wait 
)
inlinestatic

Definition at line 268 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static u32 vlib_vector_input_stats_index ( vlib_main_t vm,
word  delta 
)
inlinestatic

Definition at line 316 of file main.h.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void vlib_worker_loop ( vlib_main_t vm)

Definition at line 1926 of file main.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

vlib_main_t vlib_global_main

Definition at line 1931 of file main.c.

u8** vlib_thread_stacks

Definition at line 607 of file main.c.

u32 wraps

Definition at line 55 of file main.c.