FD.io VPP
v20.05.1-6-gf53edbc3b
Vector Packet Processing
|
Go to the source code of this file.
Macros | |
#define | FIB_WALK_PRIORITY_NUM ((fib_walk_priority_t)(FIB_WALK_PRIORITY_LOW+1)) |
#define | FIB_WALK_PRIORITIES |
#define | FOR_EACH_FIB_WALK_PRIORITY(_prio) |
Typedefs | |
typedef enum fib_walk_priority_t_ | fib_walk_priority_t |
Walk priorities. More... | |
Enumerations | |
enum | fib_walk_priority_t_ { FIB_WALK_PRIORITY_HIGH = 0, FIB_WALK_PRIORITY_LOW = 1 } |
Walk priorities. More... | |
Functions | |
void | fib_walk_module_init (void) |
void | fib_walk_async (fib_node_type_t parent_type, fib_node_index_t parent_index, fib_walk_priority_t prio, fib_node_back_walk_ctx_t *ctx) |
void | fib_walk_sync (fib_node_type_t parent_type, fib_node_index_t parent_index, fib_node_back_walk_ctx_t *ctx) |
Back walk all the children of a FIB node. More... | |
u8 * | format_fib_walk_priority (u8 *s, va_list *ap) |
void | fib_walk_process_enable (void) |
void | fib_walk_process_disable (void) |
#define FIB_WALK_PRIORITIES |
Definition at line 34 of file fib_walk.h.
#define FIB_WALK_PRIORITY_NUM ((fib_walk_priority_t)(FIB_WALK_PRIORITY_LOW+1)) |
Definition at line 32 of file fib_walk.h.
#define FOR_EACH_FIB_WALK_PRIORITY | ( | _prio | ) |
Definition at line 39 of file fib_walk.h.
typedef enum fib_walk_priority_t_ fib_walk_priority_t |
Walk priorities.
Strict priorities. All walks a priority n are completed before n+1 is started. Increasing numerical value implies decreasing priority.
enum fib_walk_priority_t_ |
Walk priorities.
Strict priorities. All walks a priority n are completed before n+1 is started. Increasing numerical value implies decreasing priority.
Enumerator | |
---|---|
FIB_WALK_PRIORITY_HIGH | |
FIB_WALK_PRIORITY_LOW |
Definition at line 26 of file fib_walk.h.
void fib_walk_async | ( | fib_node_type_t | parent_type, |
fib_node_index_t | parent_index, | ||
fib_walk_priority_t | prio, | ||
fib_node_back_walk_ctx_t * | ctx | ||
) |
Definition at line 688 of file fib_walk.c.
void fib_walk_module_init | ( | void | ) |
Definition at line 944 of file fib_walk.c.
void fib_walk_process_disable | ( | void | ) |
Definition at line 1211 of file fib_walk.c.
void fib_walk_process_enable | ( | void | ) |
Definition at line 1202 of file fib_walk.c.
void fib_walk_sync | ( | fib_node_type_t | parent_type, |
fib_node_index_t | parent_index, | ||
fib_node_back_walk_ctx_t * | ctx | ||
) |
Back walk all the children of a FIB node.
note this is a synchronous depth first walk. Children visited may propagate the walk to their children. Other children node types may not propagate, synchronously but instead queue the walk for later async completion.
Definition at line 745 of file fib_walk.c.
Definition at line 201 of file fib_walk.c.