| 371 | } |
| 372 | |
| 373 | int |
| 374 | rte_rib_get_nh(const struct rte_rib_node *node, uint64_t *nh) |
| 375 | { |
| 376 | if (unlikely(node == NULL || nh == NULL)) { |
| 377 | rte_errno = EINVAL; |
| 378 | return -1; |
| 379 | } |
| 380 | *nh = node->nh; |
| 381 | return 0; |
| 382 | } |
| 383 | |
| 384 | int |
| 385 | rte_rib_set_nh(struct rte_rib_node *node, uint64_t nh) |
no outgoing calls