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

Function rte_fib_delete

dpdk/lib/fib/rte_fib.c:128–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128int
129rte_fib_delete(struct rte_fib *fib, uint32_t ip, uint8_t depth)
130{
131 if ((fib == NULL) || (fib->modify == NULL) ||
132 (depth > RTE_FIB_MAXDEPTH))
133 return -EINVAL;
134 return fib->modify(fib, ip, depth, 0, RTE_FIB_DEL);
135}
136
137int
138rte_fib_lookup_bulk(struct rte_fib *fib, uint32_t *ips,

Callers 4

run_v4Function · 0.85
test_add_del_invalidFunction · 0.85
check_fibFunction · 0.85
test_fib_perfFunction · 0.85

Calls

no outgoing calls

Tested by 3

test_add_del_invalidFunction · 0.68
check_fibFunction · 0.68
test_fib_perfFunction · 0.68