| 462 | |
| 463 | |
| 464 | static enum flm_op_result |
| 465 | bsearch4_end_dump(void *_data, struct fib_dp *dp) |
| 466 | { |
| 467 | struct bsearch4_data *bd = (struct bsearch4_data *)_data; |
| 468 | enum flm_op_result ret; |
| 469 | |
| 470 | ret = bsearch4_build(bd); |
| 471 | if (ret == FLM_SUCCESS) { |
| 472 | dp->f = bsearch4_lookup; |
| 473 | dp->arg = bd; |
| 474 | } |
| 475 | |
| 476 | return (ret); |
| 477 | } |
| 478 | |
| 479 | static enum flm_op_result |
| 480 | bsearch4_change_cb(struct rib_head *rnh, struct rib_cmd_info *rc, |
nothing calls this directly
no test coverage detected