MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rib_walk_ext_locked

Function rib_walk_ext_locked

freebsd/net/route/route_helpers.c:70–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68 */
69
70void
71rib_walk_ext_locked(struct rib_head *rnh, rib_walktree_f_t *wa_f,
72 rib_walk_hook_f_t *hook_f, void *arg)
73{
74 if (hook_f != NULL)
75 hook_f(rnh, RIB_WALK_HOOK_PRE, arg);
76 rnh->rnh_walktree(&rnh->head, (walktree_f_t *)wa_f, arg);
77 if (hook_f != NULL)
78 hook_f(rnh, RIB_WALK_HOOK_POST, arg);
79}
80
81/*
82 * Calls @wa_f with @arg for each entry in the table specified by

Callers 2

sync_algoFunction · 0.85
rib_walk_ext_internalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected