| 91 | } |
| 92 | |
| 93 | static void |
| 94 | node_free(struct rte_rib *rib, struct rte_rib_node *ent) |
| 95 | { |
| 96 | --rib->cur_nodes; |
| 97 | rte_mempool_put(rib->node_pool, ent); |
| 98 | } |
| 99 | |
| 100 | struct rte_rib_node * |
| 101 | rte_rib_lookup(struct rte_rib *rib, uint32_t ip) |
no test coverage detected