Searched refs:tpd_used (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/sys/dev/hatm/
H A Dif_hatmvar.h181 (SC)->tpd_used[(I) / 8] |= (1 << ((I) % 8)); \
185 (SC)->tpd_used[(I) / 8] &= ~(1 << ((I) % 8)); \
188 #define TPD_TST_USED(SC, I) ((SC)->tpd_used[(I) / 8] & (1 << ((I) % 8)))
412 uint8_t *tpd_used; /* bitmap of used TPDs */ member in struct:hatm_softc
H A Dif_hatm.c364 free(sc->tpd_used, M_DEVBUF);
401 sc->tpd_used = malloc(sizeof(uint8_t) * (sc->tpd_total + 7) / 8,

Completed in 104 milliseconds