| 532 | } |
| 533 | |
| 534 | void |
| 535 | in6m_release_wait(void *arg __unused) |
| 536 | { |
| 537 | |
| 538 | /* |
| 539 | * Make sure all pending multicast addresses are freed before |
| 540 | * the VNET or network device is destroyed: |
| 541 | */ |
| 542 | taskqueue_drain_all(taskqueue_in6m_free); |
| 543 | } |
| 544 | #ifdef VIMAGE |
| 545 | /* XXX-BZ FIXME, see D24914. */ |
| 546 | VNET_SYSUNINIT(in6m_release_wait, SI_SUB_PROTO_DOMAIN, SI_ORDER_FIRST, in6m_release_wait, NULL); |
no test coverage detected