Lines Matching refs:stid_bmap
1128 stid = find_first_zero_bit(t->stid_bmap, t->nstids); in cxgb4_alloc_stid()
1130 __set_bit(stid, t->stid_bmap); in cxgb4_alloc_stid()
1134 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 1); in cxgb4_alloc_stid()
1165 stid = find_next_zero_bit(t->stid_bmap, in cxgb4_alloc_sftid()
1168 __set_bit(stid, t->stid_bmap); in cxgb4_alloc_sftid()
1199 __clear_bit(stid, t->stid_bmap); in cxgb4_free_stid()
1201 bitmap_release_region(t->stid_bmap, stid, 1); in cxgb4_free_stid()
1350 t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids]; in tid_init()
1351 t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size]; in tid_init()
1374 bitmap_zero(t->stid_bmap, t->nstids + t->nsftids); in tid_init()
1378 __set_bit(0, t->stid_bmap); in tid_init()