Lines Matching defs:cxgbit_sock
192 struct cxgbit_sock { struct
193 struct cxgbit_sock_common com; argument
194 struct cxgbit_np *cnp;
195 struct iscsi_conn *conn;
196 struct l2t_entry *l2t;
197 struct dst_entry *dst;
198 struct list_head list;
199 struct sk_buff_head rxq;
200 struct sk_buff_head txq;
201 struct sk_buff_head ppodq;
202 struct sk_buff_head backlogq;
203 struct sk_buff_head skbq;
204 struct sk_buff *wr_pending_head;
205 struct sk_buff *wr_pending_tail;
206 struct sk_buff *skb;
207 struct sk_buff *lro_skb;
208 struct sk_buff *lro_hskb;
209 struct list_head accept_node;
211 spinlock_t lock;
212 wait_queue_head_t waitq;
213 wait_queue_head_t ack_waitq;
214 bool lock_owner;
215 struct kref kref;
216 u32 max_iso_npdu;
217 u32 wr_cred;
218 u32 wr_una_cred;
219 u32 wr_max_cred;
220 u32 snd_una;
221 u32 tid;
222 u32 snd_nxt;
223 u32 rcv_nxt;
224 u32 smac_idx;
225 u32 tx_chan;
226 u32 mtu;
227 u32 write_seq;
228 u32 rx_credits;
229 u32 snd_win;
230 u32 rcv_win;
231 u16 mss;
232 u16 emss;
233 u16 plen;
234 u16 rss_qid;
235 u16 txq_idx;
236 u16 ctrlq_idx;
237 u8 tos;
238 u8 port_id;
262 static inline void cxgbit_get_csk(struct cxgbit_sock *csk) in cxgbit_get_csk() argument