| 649 | } |
| 650 | |
| 651 | int |
| 652 | ifc_alloc_unit(struct if_clone *ifc, int *unit) |
| 653 | { |
| 654 | if (*unit < 0) |
| 655 | return (ifc_alloc_unit_next(ifc, unit)); |
| 656 | else |
| 657 | return (ifc_alloc_unit_specific(ifc, unit)); |
| 658 | } |
| 659 | |
| 660 | void |
| 661 | ifc_free_unit(struct if_clone *ifc, int unit) |
no test coverage detected