Home
last modified time | relevance | path

Searched refs:sc_rthash (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/bsd/net/ !
H A Dif_bridge.c512 struct _bridge_rtnode_list *sc_rthash; /* our forwarding table */ member
6554 sc->sc_rthash = _MALLOC(sizeof(*sc->sc_rthash) * BRIDGE_RTHASH_SIZE,
6556 if (sc->sc_rthash == NULL) {
6563 LIST_INIT(&sc->sc_rthash[i]);
6606 new_rthash = _MALLOC(sizeof(*sc->sc_rthash) * new_rthash_size,
6623 old_rthash = sc->sc_rthash;
6624 sc->sc_rthash = new_rthash;
6634 LIST_INIT(&sc->sc_rthash[i]);
6700 if (sc->sc_rthash) {
6701 _FREE(sc->sc_rthash, M_DEVBUF);
[all …]