| 122 | } |
| 123 | |
| 124 | static void |
| 125 | node_free(struct rte_rib6 *rib, struct rte_rib6_node *ent) |
| 126 | { |
| 127 | --rib->cur_nodes; |
| 128 | rte_mempool_put(rib->node_pool, ent); |
| 129 | } |
| 130 | |
| 131 | struct rte_rib6_node * |
| 132 | rte_rib6_lookup(struct rte_rib6 *rib, |
no test coverage detected