xref: /NextBSD/contrib/ofed/libcxgb4/src/qp.c (revision 4bf303e5af1834cdd3092175eeca7676420229c4)
1 /*
2  * Copyright (c) 2006-2014 Chelsio, Inc. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32 #if HAVE_CONFIG_H
33 #  include <config.h>
34 #endif				/* HAVE_CONFIG_H */
35 
36 #include <assert.h>
37 #include <stdlib.h>
38 #include <pthread.h>
39 #include <string.h>
40 #include <stdio.h>
41 #include <netinet/in.h>
42 #include "libcxgb4.h"
43 
44 #ifdef STATS
45 struct c4iw_stats c4iw_stats;
46 #endif
47 
copy_wr_to_sq(struct t4_wq * wq,union t4_wr * wqe,u8 len16)48 static void copy_wr_to_sq(struct t4_wq *wq, union t4_wr *wqe, u8 len16)
49 {
50 	u64 *src, *dst;
51 
52 	src = (u64 *)wqe;
53 	dst = (u64 *)((u8 *)wq->sq.queue + wq->sq.wq_pidx * T4_EQ_ENTRY_SIZE);
54 	if (t4_sq_onchip(wq)) {
55 		len16 = align(len16, 4);
56 		wc_wmb();
57 	}
58 	while (len16) {
59 		*dst++ = *src++;
60 		if (dst == (u64 *)&wq->sq.queue[wq->sq.size])
61 			dst = (u64 *)wq->sq.queue;
62 		*dst++ = *src++;
63 		if (dst == (u64 *)&wq->sq.queue[wq->sq.size])
64 			dst = (u64 *)wq->sq.queue;
65 		len16--;
66 	}
67 }
68 
copy_wr_to_rq(struct t4_wq * wq,union t4_recv_wr * wqe,u8 len16)69 static void copy_wr_to_rq(struct t4_wq *wq, union t4_recv_wr *wqe, u8 len16)
70 {
71 	u64 *src, *dst;
72 
73 	src = (u64 *)wqe;
74 	dst = (u64 *)((u8 *)wq->rq.queue + wq->rq.wq_pidx * T4_EQ_ENTRY_SIZE);
75 	while (len16) {
76 		*dst++ = *src++;
77 		if (dst >= (u64 *)&wq->rq.queue[wq->rq.size])
78 			dst = (u64 *)wq->rq.queue;
79 		*dst++ = *src++;
80 		if (dst >= (u64 *)&wq->rq.queue[wq->rq.size])
81 			dst = (u64 *)wq->rq.queue;
82 		len16--;
83 	}
84 }
85 
build_immd(struct t4_sq * sq,struct fw_ri_immd * immdp,struct ibv_send_wr * wr,int max,u32 * plenp)86 static int build_immd(struct t4_sq *sq, struct fw_ri_immd *immdp,
87 		      struct ibv_send_wr *wr, int max, u32 *plenp)
88 {
89 	u8 *dstp, *srcp;
90 	u32 plen = 0;
91 	int i;
92 	int len;
93 
94 	dstp = (u8 *)immdp->data;
95 	for (i = 0; i < wr->num_sge; i++) {
96 		if ((plen + wr->sg_list[i].length) > max)
97 			return -EMSGSIZE;
98 		srcp = (u8 *)(unsigned long)wr->sg_list[i].addr;
99 		plen += wr->sg_list[i].length;
100 		len = wr->sg_list[i].length;
101 		memcpy(dstp, srcp, len);
102 		dstp += len;
103 		srcp += len;
104 	}
105 	len = ROUND_UP(plen + 8, 16) - (plen + 8);
106 	if (len)
107 		memset(dstp, 0, len);
108 	immdp->op = FW_RI_DATA_IMMD;
109 	immdp->r1 = 0;
110 	immdp->r2 = 0;
111 	immdp->immdlen = cpu_to_be32(plen);
112 	*plenp = plen;
113 	return 0;
114 }
115 
build_isgl(struct fw_ri_isgl * isglp,struct ibv_sge * sg_list,int num_sge,u32 * plenp)116 static int build_isgl(struct fw_ri_isgl *isglp, struct ibv_sge *sg_list,
117 		      int num_sge, u32 *plenp)
118 {
119 	int i;
120 	u32 plen = 0;
121 	__be64 *flitp = (__be64 *)isglp->sge;
122 
123 	for (i = 0; i < num_sge; i++) {
124 		if ((plen + sg_list[i].length) < plen)
125 			return -EMSGSIZE;
126 		plen += sg_list[i].length;
127 		*flitp++ = cpu_to_be64(((u64)sg_list[i].lkey << 32) |
128 				     sg_list[i].length);
129 		*flitp++ = cpu_to_be64(sg_list[i].addr);
130 	}
131 	*flitp = 0;
132 	isglp->op = FW_RI_DATA_ISGL;
133 	isglp->r1 = 0;
134 	isglp->nsge = cpu_to_be16(num_sge);
135 	isglp->r2 = 0;
136 	if (plenp)
137 		*plenp = plen;
138 	return 0;
139 }
140 
build_rdma_send(struct t4_sq * sq,union t4_wr * wqe,struct ibv_send_wr * wr,u8 * len16)141 static int build_rdma_send(struct t4_sq *sq, union t4_wr *wqe,
142 			   struct ibv_send_wr *wr, u8 *len16)
143 {
144 	u32 plen;
145 	int size;
146 	int ret;
147 
148 	if (wr->num_sge > T4_MAX_SEND_SGE)
149 		return -EINVAL;
150 	if (wr->send_flags & IBV_SEND_SOLICITED)
151 		wqe->send.sendop_pkd = cpu_to_be32(
152 			V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND_WITH_SE));
153 	else
154 		wqe->send.sendop_pkd = cpu_to_be32(
155 			V_FW_RI_SEND_WR_SENDOP(FW_RI_SEND));
156 	wqe->send.stag_inv = 0;
157 	wqe->send.r3 = 0;
158 	wqe->send.r4 = 0;
159 
160 	plen = 0;
161 	if (wr->num_sge) {
162 		if (wr->send_flags & IBV_SEND_INLINE) {
163 			ret = build_immd(sq, wqe->send.u.immd_src, wr,
164 					 T4_MAX_SEND_INLINE, &plen);
165 			if (ret)
166 				return ret;
167 			size = sizeof wqe->send + sizeof(struct fw_ri_immd) +
168 			       plen;
169 		} else {
170 			ret = build_isgl(wqe->send.u.isgl_src,
171 					 wr->sg_list, wr->num_sge, &plen);
172 			if (ret)
173 				return ret;
174 			size = sizeof wqe->send + sizeof(struct fw_ri_isgl) +
175 			       wr->num_sge * sizeof (struct fw_ri_sge);
176 		}
177 	} else {
178 		wqe->send.u.immd_src[0].op = FW_RI_DATA_IMMD;
179 		wqe->send.u.immd_src[0].r1 = 0;
180 		wqe->send.u.immd_src[0].r2 = 0;
181 		wqe->send.u.immd_src[0].immdlen = 0;
182 		size = sizeof wqe->send + sizeof(struct fw_ri_immd);
183 		plen = 0;
184 	}
185 	*len16 = DIV_ROUND_UP(size, 16);
186 	wqe->send.plen = cpu_to_be32(plen);
187 	return 0;
188 }
189 
build_rdma_write(struct t4_sq * sq,union t4_wr * wqe,struct ibv_send_wr * wr,u8 * len16)190 static int build_rdma_write(struct t4_sq *sq, union t4_wr *wqe,
191 			    struct ibv_send_wr *wr, u8 *len16)
192 {
193 	u32 plen;
194 	int size;
195 	int ret;
196 
197 	if (wr->num_sge > T4_MAX_SEND_SGE)
198 		return -EINVAL;
199 	wqe->write.r2 = 0;
200 	wqe->write.stag_sink = cpu_to_be32(wr->wr.rdma.rkey);
201 	wqe->write.to_sink = cpu_to_be64(wr->wr.rdma.remote_addr);
202 	if (wr->num_sge) {
203 		if (wr->send_flags & IBV_SEND_INLINE) {
204 			ret = build_immd(sq, wqe->write.u.immd_src, wr,
205 					 T4_MAX_WRITE_INLINE, &plen);
206 			if (ret)
207 				return ret;
208 			size = sizeof wqe->write + sizeof(struct fw_ri_immd) +
209 			       plen;
210 		} else {
211 			ret = build_isgl(wqe->write.u.isgl_src,
212 					 wr->sg_list, wr->num_sge, &plen);
213 			if (ret)
214 				return ret;
215 			size = sizeof wqe->write + sizeof(struct fw_ri_isgl) +
216 			       wr->num_sge * sizeof (struct fw_ri_sge);
217 		}
218 	} else {
219 		wqe->write.u.immd_src[0].op = FW_RI_DATA_IMMD;
220 		wqe->write.u.immd_src[0].r1 = 0;
221 		wqe->write.u.immd_src[0].r2 = 0;
222 		wqe->write.u.immd_src[0].immdlen = 0;
223 		size = sizeof wqe->write + sizeof(struct fw_ri_immd);
224 		plen = 0;
225 	}
226 	*len16 = DIV_ROUND_UP(size, 16);
227 	wqe->write.plen = cpu_to_be32(plen);
228 	return 0;
229 }
230 
build_rdma_read(union t4_wr * wqe,struct ibv_send_wr * wr,u8 * len16)231 static int build_rdma_read(union t4_wr *wqe, struct ibv_send_wr *wr, u8 *len16)
232 {
233 	if (wr->num_sge > 1)
234 		return -EINVAL;
235 	if (wr->num_sge) {
236 		wqe->read.stag_src = cpu_to_be32(wr->wr.rdma.rkey);
237 		wqe->read.to_src_hi = cpu_to_be32((u32)(wr->wr.rdma.remote_addr >>32));
238 		wqe->read.to_src_lo = cpu_to_be32((u32)wr->wr.rdma.remote_addr);
239 		wqe->read.stag_sink = cpu_to_be32(wr->sg_list[0].lkey);
240 		wqe->read.plen = cpu_to_be32(wr->sg_list[0].length);
241 		wqe->read.to_sink_hi = cpu_to_be32((u32)(wr->sg_list[0].addr >> 32));
242 		wqe->read.to_sink_lo = cpu_to_be32((u32)(wr->sg_list[0].addr));
243 	} else {
244 		wqe->read.stag_src = cpu_to_be32(2);
245 		wqe->read.to_src_hi = 0;
246 		wqe->read.to_src_lo = 0;
247 		wqe->read.stag_sink = cpu_to_be32(2);
248 		wqe->read.plen = 0;
249 		wqe->read.to_sink_hi = 0;
250 		wqe->read.to_sink_lo = 0;
251 	}
252 	wqe->read.r2 = 0;
253 	wqe->read.r5 = 0;
254 	*len16 = DIV_ROUND_UP(sizeof wqe->read, 16);
255 	return 0;
256 }
257 
build_rdma_recv(struct c4iw_qp * qhp,union t4_recv_wr * wqe,struct ibv_recv_wr * wr,u8 * len16)258 static int build_rdma_recv(struct c4iw_qp *qhp, union t4_recv_wr *wqe,
259 			   struct ibv_recv_wr *wr, u8 *len16)
260 {
261 	int ret;
262 
263 	ret = build_isgl(&wqe->recv.isgl, wr->sg_list, wr->num_sge, NULL);
264 	if (ret)
265 		return ret;
266 	*len16 = DIV_ROUND_UP(sizeof wqe->recv +
267 			      wr->num_sge * sizeof(struct fw_ri_sge), 16);
268 	return 0;
269 }
270 
dump_wqe(void * arg)271 void dump_wqe(void *arg)
272 {
273 	u64 *p = arg;
274 	int len16;
275 
276 	len16 = be64_to_cpu(*p) & 0xff;
277 	while (len16--) {
278 		printf("%02x: %016lx ", (u8)(unsigned long)p, be64_to_cpu(*p));
279 		p++;
280 		printf("%016lx\n", be64_to_cpu(*p));
281 		p++;
282 	}
283 }
284 
ring_kernel_db(struct c4iw_qp * qhp,u32 qid,u16 idx)285 static void ring_kernel_db(struct c4iw_qp *qhp, u32 qid, u16 idx)
286 {
287 	struct ibv_modify_qp cmd;
288 	struct ibv_qp_attr attr;
289 	int mask;
290 	int ret;
291 
292 	wc_wmb();
293 	if (qid == qhp->wq.sq.qid) {
294 		attr.sq_psn = idx;
295 		mask = IBV_QP_SQ_PSN;
296 	} else  {
297 		attr.rq_psn = idx;
298 		mask = IBV_QP_RQ_PSN;
299 	}
300 	ret = ibv_cmd_modify_qp(&qhp->ibv_qp, &attr, mask, &cmd, sizeof cmd);
301 	assert(!ret);
302 }
303 
c4iw_post_send(struct ibv_qp * ibqp,struct ibv_send_wr * wr,struct ibv_send_wr ** bad_wr)304 int c4iw_post_send(struct ibv_qp *ibqp, struct ibv_send_wr *wr,
305 	           struct ibv_send_wr **bad_wr)
306 {
307 	int err = 0;
308 	u8 len16;
309 	enum fw_wr_opcodes fw_opcode;
310 	enum fw_ri_wr_flags fw_flags;
311 	struct c4iw_qp *qhp;
312 	union t4_wr *wqe, lwqe;
313 	u32 num_wrs;
314 	struct t4_swsqe *swsqe;
315 	u16 idx = 0;
316 
317 	qhp = to_c4iw_qp(ibqp);
318 	pthread_spin_lock(&qhp->lock);
319 	if (t4_wq_in_error(&qhp->wq)) {
320 		pthread_spin_unlock(&qhp->lock);
321 		return -EINVAL;
322 	}
323 	num_wrs = t4_sq_avail(&qhp->wq);
324 	if (num_wrs == 0) {
325 		pthread_spin_unlock(&qhp->lock);
326 		return -ENOMEM;
327 	}
328 	while (wr) {
329 		if (num_wrs == 0) {
330 			err = -ENOMEM;
331 			*bad_wr = wr;
332 			break;
333 		}
334 
335 		wqe = &lwqe;
336 		fw_flags = 0;
337 		if (wr->send_flags & IBV_SEND_SOLICITED)
338 			fw_flags |= FW_RI_SOLICITED_EVENT_FLAG;
339 		if (wr->send_flags & IBV_SEND_SIGNALED || qhp->sq_sig_all)
340 			fw_flags |= FW_RI_COMPLETION_FLAG;
341 		swsqe = &qhp->wq.sq.sw_sq[qhp->wq.sq.pidx];
342 		switch (wr->opcode) {
343 		case IBV_WR_SEND:
344 			INC_STAT(send);
345 			if (wr->send_flags & IBV_SEND_FENCE)
346 				fw_flags |= FW_RI_READ_FENCE_FLAG;
347 			fw_opcode = FW_RI_SEND_WR;
348 			swsqe->opcode = FW_RI_SEND;
349 			err = build_rdma_send(&qhp->wq.sq, wqe, wr, &len16);
350 			break;
351 		case IBV_WR_RDMA_WRITE:
352 			INC_STAT(write);
353 			fw_opcode = FW_RI_RDMA_WRITE_WR;
354 			swsqe->opcode = FW_RI_RDMA_WRITE;
355 			err = build_rdma_write(&qhp->wq.sq, wqe, wr, &len16);
356 			break;
357 		case IBV_WR_RDMA_READ:
358 			INC_STAT(read);
359 			fw_opcode = FW_RI_RDMA_READ_WR;
360 			swsqe->opcode = FW_RI_READ_REQ;
361 			fw_flags = 0;
362 			err = build_rdma_read(wqe, wr, &len16);
363 			if (err)
364 				break;
365 			swsqe->read_len = wr->sg_list[0].length;
366 			if (!qhp->wq.sq.oldest_read)
367 				qhp->wq.sq.oldest_read = swsqe;
368 			break;
369 		default:
370 			PDBG("%s post of type=%d TBD!\n", __func__,
371 			     wr->opcode);
372 			err = -EINVAL;
373 		}
374 		if (err) {
375 			*bad_wr = wr;
376 			break;
377 		}
378 		swsqe->idx = qhp->wq.sq.pidx;
379 		swsqe->complete = 0;
380 		swsqe->signaled = (wr->send_flags & IBV_SEND_SIGNALED) ||
381 				  qhp->sq_sig_all;
382 		swsqe->flushed = 0;
383 		swsqe->wr_id = wr->wr_id;
384 
385 		init_wr_hdr(wqe, qhp->wq.sq.pidx, fw_opcode, fw_flags, len16);
386 		PDBG("%s cookie 0x%llx pidx 0x%x opcode 0x%x\n",
387 		     __func__, (unsigned long long)wr->wr_id, qhp->wq.sq.pidx,
388 		     swsqe->opcode);
389 		wr = wr->next;
390 		num_wrs--;
391 		copy_wr_to_sq(&qhp->wq, wqe, len16);
392 		t4_sq_produce(&qhp->wq, len16);
393 		idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
394 	}
395 	if (t4_wq_db_enabled(&qhp->wq)) {
396 		t4_ring_sq_db(&qhp->wq, idx, dev_is_t5(qhp->rhp),
397 			      len16, wqe);
398 	} else
399 		ring_kernel_db(qhp, qhp->wq.sq.qid, idx);
400 	qhp->wq.sq.queue[qhp->wq.sq.size].status.host_wq_pidx = \
401 			(qhp->wq.sq.wq_pidx);
402 	pthread_spin_unlock(&qhp->lock);
403 	return err;
404 }
405 
c4iw_post_receive(struct ibv_qp * ibqp,struct ibv_recv_wr * wr,struct ibv_recv_wr ** bad_wr)406 int c4iw_post_receive(struct ibv_qp *ibqp, struct ibv_recv_wr *wr,
407 			   struct ibv_recv_wr **bad_wr)
408 {
409 	int err = 0;
410 	struct c4iw_qp *qhp;
411 	union t4_recv_wr *wqe, lwqe;
412 	u32 num_wrs;
413 	u8 len16 = 0;
414 	u16 idx = 0;
415 
416 	qhp = to_c4iw_qp(ibqp);
417 	pthread_spin_lock(&qhp->lock);
418 	if (t4_wq_in_error(&qhp->wq)) {
419 		pthread_spin_unlock(&qhp->lock);
420 		return -EINVAL;
421 	}
422 	INC_STAT(recv);
423 	num_wrs = t4_rq_avail(&qhp->wq);
424 	if (num_wrs == 0) {
425 		pthread_spin_unlock(&qhp->lock);
426 		return -ENOMEM;
427 	}
428 	while (wr) {
429 		if (wr->num_sge > T4_MAX_RECV_SGE) {
430 			err = -EINVAL;
431 			*bad_wr = wr;
432 			break;
433 		}
434 		wqe = &lwqe;
435 		if (num_wrs)
436 			err = build_rdma_recv(qhp, wqe, wr, &len16);
437 		else
438 			err = -ENOMEM;
439 		if (err) {
440 			*bad_wr = wr;
441 			break;
442 		}
443 
444 		qhp->wq.rq.sw_rq[qhp->wq.rq.pidx].wr_id = wr->wr_id;
445 
446 		wqe->recv.opcode = FW_RI_RECV_WR;
447 		wqe->recv.r1 = 0;
448 		wqe->recv.wrid = qhp->wq.rq.pidx;
449 		wqe->recv.r2[0] = 0;
450 		wqe->recv.r2[1] = 0;
451 		wqe->recv.r2[2] = 0;
452 		wqe->recv.len16 = len16;
453 		PDBG("%s cookie 0x%llx pidx %u\n", __func__,
454 		     (unsigned long long) wr->wr_id, qhp->wq.rq.pidx);
455 		copy_wr_to_rq(&qhp->wq, wqe, len16);
456 		t4_rq_produce(&qhp->wq, len16);
457 		idx += DIV_ROUND_UP(len16*16, T4_EQ_ENTRY_SIZE);
458 		wr = wr->next;
459 		num_wrs--;
460 	}
461 	if (t4_wq_db_enabled(&qhp->wq))
462 		t4_ring_rq_db(&qhp->wq, idx, dev_is_t5(qhp->rhp),
463 			      len16, wqe);
464 	else
465 		ring_kernel_db(qhp, qhp->wq.rq.qid, idx);
466 	qhp->wq.rq.queue[qhp->wq.rq.size].status.host_wq_pidx = \
467 			(qhp->wq.rq.wq_pidx);
468 	pthread_spin_unlock(&qhp->lock);
469 	return err;
470 }
471 
update_qp_state(struct c4iw_qp * qhp)472 static void update_qp_state(struct c4iw_qp *qhp)
473 {
474 	struct ibv_query_qp cmd;
475 	struct ibv_qp_attr attr;
476 	struct ibv_qp_init_attr iattr;
477 	int ret;
478 
479 	ret = ibv_cmd_query_qp(&qhp->ibv_qp, &attr, IBV_QP_STATE, &iattr,
480 			       &cmd, sizeof cmd);
481 	assert(!ret);
482 	if (!ret)
483 		qhp->ibv_qp.state = attr.qp_state;
484 }
485 
486 /*
487  * Assumes qhp lock is held.
488  */
c4iw_flush_qp(struct c4iw_qp * qhp)489 void c4iw_flush_qp(struct c4iw_qp *qhp)
490 {
491 	struct c4iw_cq *rchp, *schp;
492 	int count;
493 
494 	if (qhp->wq.flushed)
495 		return;
496 
497 	update_qp_state(qhp);
498 
499 	rchp = to_c4iw_cq(qhp->ibv_qp.recv_cq);
500 	schp = to_c4iw_cq(qhp->ibv_qp.send_cq);
501 
502 	PDBG("%s qhp %p rchp %p schp %p\n", __func__, qhp, rchp, schp);
503 	qhp->wq.flushed = 1;
504 	pthread_spin_unlock(&qhp->lock);
505 
506 	/* locking heirarchy: cq lock first, then qp lock. */
507 	pthread_spin_lock(&rchp->lock);
508 	pthread_spin_lock(&qhp->lock);
509 	c4iw_flush_hw_cq(rchp);
510 	c4iw_count_rcqes(&rchp->cq, &qhp->wq, &count);
511 	c4iw_flush_rq(&qhp->wq, &rchp->cq, count);
512 	pthread_spin_unlock(&qhp->lock);
513 	pthread_spin_unlock(&rchp->lock);
514 
515 	/* locking heirarchy: cq lock first, then qp lock. */
516 	pthread_spin_lock(&schp->lock);
517 	pthread_spin_lock(&qhp->lock);
518 	if (schp != rchp)
519 		c4iw_flush_hw_cq(schp);
520 	c4iw_flush_sq(qhp);
521 	pthread_spin_unlock(&qhp->lock);
522 	pthread_spin_unlock(&schp->lock);
523 	pthread_spin_lock(&qhp->lock);
524 }
525 
c4iw_flush_qps(struct c4iw_dev * dev)526 void c4iw_flush_qps(struct c4iw_dev *dev)
527 {
528 	int i;
529 
530 	pthread_spin_lock(&dev->lock);
531 	for (i=0; i < dev->max_qp; i++) {
532 		struct c4iw_qp *qhp = dev->qpid2ptr[i];
533 		if (qhp) {
534 			if (!qhp->wq.flushed && t4_wq_in_error(&qhp->wq)) {
535 				pthread_spin_lock(&qhp->lock);
536 				c4iw_flush_qp(qhp);
537 				pthread_spin_unlock(&qhp->lock);
538 			}
539 		}
540 	}
541 	pthread_spin_unlock(&dev->lock);
542 }
543