| 3411 | } |
| 3412 | |
| 3413 | void |
| 3414 | if_freemulti(struct ifmultiaddr *ifma) |
| 3415 | { |
| 3416 | KASSERT(ifma->ifma_refcount == 0, ("if_freemulti_epoch: refcount %d", |
| 3417 | ifma->ifma_refcount)); |
| 3418 | |
| 3419 | NET_EPOCH_CALL(if_destroymulti, &ifma->ifma_epoch_ctx); |
| 3420 | } |
| 3421 | |
| 3422 | /* |
| 3423 | * Register an additional multicast address with a network interface. |
no outgoing calls
no test coverage detected