Home
last modified time | relevance | path

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

/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_uld.h214 u32 eotid) in cxgb4_lookup_eotid() argument
216 return eotid < t->neotids ? &t->eotid_tab[eotid] : NULL; in cxgb4_lookup_eotid()
221 int eotid; in cxgb4_get_free_eotid() local
223 eotid = find_first_zero_bit(t->eotid_bmap, t->neotids); in cxgb4_get_free_eotid()
224 if (eotid >= t->neotids) in cxgb4_get_free_eotid()
225 eotid = -1; in cxgb4_get_free_eotid()
227 return eotid; in cxgb4_get_free_eotid()
230 static inline void cxgb4_alloc_eotid(struct tid_info *t, u32 eotid, void *data) in cxgb4_alloc_eotid() argument
232 set_bit(eotid, t->eotid_bmap); in cxgb4_alloc_eotid()
233 t->eotid_tab[eotid].data = data; in cxgb4_alloc_eotid()
[all …]
H A Dsge.c2524 int cxgb4_ethofld_send_flowc(struct net_device *dev, u32 eotid, u32 tc) in cxgb4_ethofld_send_flowc() argument
2540 entry = cxgb4_lookup_eotid(&adap->tids, eotid); in cxgb4_ethofld_send_flowc()
4069 u32 hdr_len, eotid; in cxgb4_ethofld_rx_handler() local
4074 eotid = CPL_FW4_ACK_FLOWID_G(ntohl(OPCODE_TID(cpl))) - in cxgb4_ethofld_rx_handler()
4076 entry = cxgb4_lookup_eotid(&q->adap->tids, eotid); in cxgb4_ethofld_rx_handler()