Home
last modified time | relevance | path

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

/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_uld.h112 unsigned int nstids; member
187 stid += t->nstids; in lookup_stid()
192 return stid < (t->nstids + t->nsftids) ? t->stid_tab[stid].data : NULL; in lookup_stid()
H A Dcudbg_entity.h158 u32 nstids; member
H A Dcxgb4_main.c1635 stid = find_first_zero_bit(t->stid_bmap, t->nstids); in cxgb4_alloc_stid()
1636 if (stid < t->nstids) in cxgb4_alloc_stid()
1641 stid = bitmap_find_free_region(t->stid_bmap, t->nstids, 1); in cxgb4_alloc_stid()
1673 t->nstids + t->nsftids, t->nstids); in cxgb4_alloc_sftid()
1674 if (stid < (t->nstids + t->nsftids)) in cxgb4_alloc_sftid()
1683 stid -= t->nstids; in cxgb4_alloc_sftid()
1699 stid += t->nstids; in cxgb4_free_stid()
1710 if (stid < t->nstids) { in cxgb4_free_stid()
1846 stid_bmap_size = BITS_TO_LONGS(t->nstids + t->nsftids); in tid_init()
1852 t->nstids * sizeof(*t->stid_tab) + in tid_init()
[all …]
H A Dcudbg_lib.c2191 tid->nstids = padap->tids.nstids; in cudbg_collect_tid()
H A Dcxgb4_debugfs.c3363 if (t->nstids) in tid_info_show()
3368 t->stid_base + t->nstids - 1, in tid_info_show()
/linux/drivers/net/ethernet/chelsio/cxgb3/
H A Dcxgb3_defs.h79 if (tid < t->stid_base || tid >= t->stid_base + t->nstids) in lookup_stid()