Searched defs:cbnode (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/ipnet/
H A Dipnet.c1827 ipnetif_cbdata_t *cbnode; local
1850 cbnode = kmem_zalloc(sizeof (ipnetif_cbdata_t), KM_SLEEP);
1851 (void) strlcpy(cbnode->ic_ifname, ipnetif->if_name, LIFNAMSIZ);
1852 cbnode->ic_dev = ipnetif->if_dev;
1853 list_insert_head(&cbdata, cbnode);
1857 while ((cbnode = list_head(&cbdata)) != NULL) {
1858 cb(cbnode->ic_ifname, arg, cbnode->ic_dev);
1859 list_remove(&cbdata, cbnode);
1860 kmem_free(cbnode, sizeo
[all...]

Completed in 49 milliseconds