Searched refs:stid_bitmap (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/dev/cxgbe/tom/ |
H A D | t4_listen.c | 106 t->stid_bitmap = bit_alloc(t->nstids, M_CXGBE, M_NOWAIT); in alloc_stid_tab() 107 if (t->stid_bitmap == NULL) { in alloc_stid_tab() 130 free(t->stid_bitmap, M_CXGBE); in free_stid_tab() 131 t->stid_bitmap = NULL; in free_stid_tab() 227 bit_ffc_area_at(t->stid_bitmap, i, t->nstids, 2, &val); in alloc_stid() 242 bit_ffc_at(t->stid_bitmap, 0, t->nstids, &val); in alloc_stid() 250 if (val & 1 || bit_test(t->stid_bitmap, val + 1)) in alloc_stid() 263 if (bit_test(t->stid_bitmap, pair_stid) == 0) { in alloc_stid() 271 bit_ffs_at(t->stid_bitmap, val, t->nstids, &val); in alloc_stid() 277 MPASS(bit_ntest(t->stid_bitmap, stid, stid + n - 1, 0)); in alloc_stid() [all …]
|
/freebsd/sys/dev/cxgbe/ |
H A D | offload.h | 138 bitstr_t *stid_bitmap; member
|