* Fast timeout handler (global). * VIMAGE: Timeout handlers are expected to service all vimages. */
| 1661 | * VIMAGE: Timeout handlers are expected to service all vimages. |
| 1662 | */ |
| 1663 | void |
| 1664 | igmp_fasttimo(void) |
| 1665 | { |
| 1666 | VNET_ITERATOR_DECL(vnet_iter); |
| 1667 | |
| 1668 | VNET_LIST_RLOCK_NOSLEEP(); |
| 1669 | VNET_FOREACH(vnet_iter) { |
| 1670 | CURVNET_SET(vnet_iter); |
| 1671 | igmp_fasttimo_vnet(); |
| 1672 | CURVNET_RESTORE(); |
| 1673 | } |
| 1674 | VNET_LIST_RUNLOCK_NOSLEEP(); |
| 1675 | } |
| 1676 | |
| 1677 | /* |
| 1678 | * Fast timeout handler (per-vnet). |
nothing calls this directly
no test coverage detected