Searched refs:mfc (Results 1 – 6 of 6) sorted by relevance
| /mirbsd/src/usr.bin/netstat/ |
| D | mroute.c | 87 LIST_HEAD(, mfc) *mfchashtbl; in mroutepr() 90 struct mfc *mfcp, mfc; in mroutepr() local 169 for (; mfcp != 0; mfcp = mfc.mfc_hash.le_next) { in mroutepr() 177 kread((u_long)mfcp, (char *)&mfc, sizeof(mfc)); in mroutepr() 179 i, routename(mfc.mfc_origin.s_addr)); in mroutepr() 181 routename(mfc.mfc_mcastgrp.s_addr), in mroutepr() 182 pktscale(mfc.mfc_pkt_cnt), mfc.mfc_parent); in mroutepr() 184 if (mfc.mfc_ttls[vifi]) in mroutepr() 186 mfc.mfc_ttls[vifi]); in mroutepr()
|
| D | mroute6.c | 97 struct mf6c mfc; in mroute6pr() local 166 kread((u_long)mfcp, (char *)&mfc, sizeof(mfc)); in mroute6pr() 177 routename6(&mfc.mf6c_origin)); in mroute6pr() 179 routename6(&mfc.mf6c_mcastgrp)); in mroute6pr() 180 printf(" %9qu", mfc.mf6c_pkt_cnt); in mroute6pr() 182 for (waitings = 0, rtep = mfc.mf6c_stall; rtep; ) { in mroute6pr() 189 if (mfc.mf6c_parent == MF6C_INCOMPLETE_PARENT) in mroute6pr() 192 printf(" %3d ", mfc.mf6c_parent); in mroute6pr() 194 if (IF_ISSET(mifi, &mfc.mf6c_ifset)) in mroute6pr() 199 mfcp = mfc.mf6c_next; in mroute6pr()
|
| /mirbsd/src/sys/dev/pcmcia/ |
| D | pcmcia_cis.c | 110 } mfc[256 / 5]; local 319 howmany(sizeof mfc, sizeof mfc[0])) 326 mfc[i].common = 331 mfc[i].addr = 335 mfc[i].common ? "common" : 336 "attr", mfc[i].addr)); 419 if (!mfc[mfc_index].common) 420 mfc[mfc_index].addr *= 2; 423 mfc[mfc_index].common ? 425 mfc[mfc_index].addr, PCMCIA_CIS_SIZE, [all …]
|
| /mirbsd/src/sys/netinet/ |
| D | ip_mroute.c | 103 LIST_HEAD(mfchashhdr, mfc) *mfchashtbl; 141 static void update_mfc(struct mfcctl *, struct mfc *); 142 static void expire_mfc(struct mfc *); 152 static int ip_mdq(struct mbuf *, struct ifnet *, struct mfc *, vifi_t); 154 static int ip_mdq(struct mbuf *, struct ifnet *, struct mfc *); 227 struct mfc *_rt; \ 384 struct mfc *rt; 495 struct mfc *rt, *nrt; in ip_mrouter_done() 743 struct mfc *rt; 772 struct mfc *rt; [all …]
|
| D | ip_mroute.h | 156 struct mfc { struct 157 LIST_ENTRY(mfc) mfc_hash;
|
| /mirbsd/src/sys/netinet6/ |
| D | ip6_mroute.c | 568 struct mf6c *mfc; local 586 for (mfc = mf6ctable[i]; mfc != NULL; mfc = mfc->mf6c_next) { 587 for (rte = mfc->mf6c_stall; rte != NULL; rte = rte->next) { 1277 struct mf6c *mfc, **nptr; local 1287 while ((mfc = *nptr) != NULL) { 1288 rte = mfc->mf6c_stall; 1295 mfc->mf6c_expire != 0 && 1296 --mfc->mf6c_expire == 0) { 1300 ip6_sprintf(&mfc->mf6c_origin.sin6_addr), 1301 ip6_sprintf(&mfc->mf6c_mcastgrp.sin6_addr)); [all …]
|