Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_uld.h101 unsigned long *stid_bmap; member
Dcxgb4_main.c1257 stid = find_first_zero_bit(t->stid_bmap, t->nstids); in cxgb4_alloc_stid()
1259 __set_bit(stid, t->stid_bmap); in cxgb4_alloc_stid()
1263 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 1); in cxgb4_alloc_stid()
1294 stid = find_next_zero_bit(t->stid_bmap, in cxgb4_alloc_sftid()
1297 __set_bit(stid, t->stid_bmap); in cxgb4_alloc_sftid()
1328 __clear_bit(stid, t->stid_bmap); in cxgb4_free_stid()
1330 bitmap_release_region(t->stid_bmap, stid, 1); in cxgb4_free_stid()
1479 t->stid_bmap = (unsigned long *)&t->stid_tab[t->nstids + t->nsftids]; in tid_init()
1480 t->ftid_tab = (struct filter_entry *)&t->stid_bmap[stid_bmap_size]; in tid_init()
1503 bitmap_zero(t->stid_bmap, t->nstids + t->nsftids); in tid_init()
[all …]