Home
last modified time | relevance | path

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

/freebsd/sys/dev/cxgbe/tom/
H A Dt4_listen.c100 MPASS(t->stid_tab == NULL); in alloc_stid_tab()
102 t->stid_tab = malloc(t->nstids * sizeof(*t->stid_tab), M_CXGBE, in alloc_stid_tab()
104 if (t->stid_tab == NULL) in alloc_stid_tab()
108 free(t->stid_tab, M_CXGBE); in alloc_stid_tab()
109 t->stid_tab = NULL; in alloc_stid_tab()
128 free(t->stid_tab, M_CXGBE); in free_stid_tab()
129 t->stid_tab = NULL; in free_stid_tab()
280 t->stid_tab[stid] = ctx; in alloc_stid()
284 t->stid_tab[stid + 1] = NULL; in alloc_stid()
298 return (t->stid_tab[stid - t->stid_base]); in lookup_stid()
[all …]
/freebsd/sys/dev/cxgbe/
H A Doffload.h137 struct listen_ctx **stid_tab; member