| 744 | } |
| 745 | |
| 746 | void |
| 747 | if_rele(struct ifnet *ifp) |
| 748 | { |
| 749 | |
| 750 | if (!refcount_release(&ifp->if_refcount)) |
| 751 | return; |
| 752 | NET_EPOCH_CALL(if_destroy, &ifp->if_epoch_ctx); |
| 753 | } |
| 754 | |
| 755 | void |
| 756 | ifq_init(struct ifaltq *ifq, struct ifnet *ifp) |
no test coverage detected