MCPcopy Create free account
hub / github.com/F-Stack/f-stack / igmp_fasttimo

Function igmp_fasttimo

freebsd/netinet/igmp.c:1663–1675  ·  view source on GitHub ↗

* Fast timeout handler (global). * VIMAGE: Timeout handlers are expected to service all vimages. */

Source from the content-addressed store, hash-verified

1661 * VIMAGE: Timeout handlers are expected to service all vimages.
1662 */
1663void
1664igmp_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).

Callers

nothing calls this directly

Calls 1

igmp_fasttimo_vnetFunction · 0.85

Tested by

no test coverage detected