Lines Matching refs:tid
62 #define INIT_TP_WR(w, tid) do { \ argument
66 FW_WR_FLOWID_V(tid)); \
70 #define INIT_TP_WR_CPL(w, cpl, tid) do { \ argument
71 INIT_TP_WR(w, tid); \
72 OPCODE_TID(w) = htonl(MK_OPCODE_TID(cpl, tid)); \
75 #define INIT_ULPTX_WR(w, wrlen, atomic, tid) do { \ argument
79 FW_WR_FLOWID_V(tid)); \
166 static inline void *lookup_tid(const struct tid_info *t, unsigned int tid) in lookup_tid() argument
168 tid -= t->tid_base; in lookup_tid()
169 return tid < t->ntids ? t->tid_tab[tid] : NULL; in lookup_tid()
172 static inline bool tid_out_of_range(const struct tid_info *t, unsigned int tid) in tid_out_of_range() argument
174 return ((tid - t->tid_base) >= t->ntids); in tid_out_of_range()
196 unsigned int tid, unsigned short family) in cxgb4_insert_tid() argument
198 t->tid_tab[tid - t->tid_base] = data; in cxgb4_insert_tid()
199 if (t->hash_base && (tid >= t->hash_base)) { in cxgb4_insert_tid()
249 void cxgb4_remove_tid(struct tid_info *t, unsigned int qid, unsigned int tid,
275 u32 tid; /* to store tid */ member