Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/net/ethernet/chelsio/cxgb3/
Dcxgb3_defs.h66 &(t->tid_tab[tid]) : NULL; in lookup_tid()
83 if ((void *)e->next >= (void *)t->tid_tab && in lookup_stid()
102 if ((void *)e->next >= (void *)t->tid_tab && in lookup_atid()
Dcxgb3_offload.c540 t->tid_tab[tid].client = client; in cxgb3_insert_tid()
541 t->tid_tab[tid].ctx = ctx; in cxgb3_insert_tid()
585 mk_tid_release(skb, p - td->tid_maps.tid_tab); in t3_process_tid_release_list()
607 struct t3c_tid_entry *p = &td->tid_maps.tid_tab[tid]; in cxgb3_queue_tid_release()
633 (void)cmpxchg(&t->tid_tab[tid].ctx, ctx, NULL); in cxgb3_remove_tid()
641 t->tid_tab[tid].ctx = NULL; in cxgb3_remove_tid()
1161 unsigned long size = ntids * sizeof(*t->tid_tab) + in init_tid_tabs()
1164 t->tid_tab = kvzalloc(size, GFP_KERNEL); in init_tid_tabs()
1165 if (!t->tid_tab) in init_tid_tabs()
1168 t->stid_tab = (union listen_entry *)&t->tid_tab[ntids]; in init_tid_tabs()
[all …]
Dcxgb3_offload.h158 struct t3c_tid_entry *tid_tab; member
/Linux-v4.19/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_uld.h97 void **tid_tab; member
140 return tid < t->ntids ? t->tid_tab[tid] : NULL; in lookup_tid()
164 t->tid_tab[tid] = data; in cxgb4_insert_tid()
Dcxgb4_main.c1239 void **p = &t->tid_tab[tid]; in cxgb4_queue_tid_release()
1277 mk_tid_release(skb, chan, p - adap->tids.tid_tab); in process_tid_release_list()
1297 if (t->tid_tab[tid]) { in cxgb4_remove_tid()
1298 t->tid_tab[tid] = NULL; in cxgb4_remove_tid()
1336 size = t->ntids * sizeof(*t->tid_tab) + in tid_init()
1344 t->tid_tab = kvzalloc(size, GFP_KERNEL); in tid_init()
1345 if (!t->tid_tab) in tid_init()
1348 t->atid_tab = (union aopen_entry *)&t->tid_tab[t->ntids]; in tid_init()
5192 kvfree(adapter->tids.tid_tab); in free_some_resources()
Dcxgb4_filter.c364 f = adapter->tids.tid_tab[fidx]; in get_filter_count()