Lines Matching defs:depth
71 uint8_t depth, uint64_t next_hop, int op)
74 if ((fib == NULL) || (depth > RTE_IPV6_MAX_DEPTH))
77 node = rte_rib6_lookup_exact(fib->rib, ip, depth);
82 node = rte_rib6_insert(fib->rib, ip, depth);
89 rte_rib6_remove(fib->rib, ip, depth);
123 uint8_t depth, uint64_t next_hop)
126 (depth > RTE_IPV6_MAX_DEPTH))
128 return fib->modify(fib, ip, depth, next_hop, RTE_FIB6_ADD);
133 uint8_t depth)
136 (depth > RTE_IPV6_MAX_DEPTH))
138 return fib->modify(fib, ip, depth, 0, RTE_FIB6_DEL);