2 * Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved.
3 * Copyright (c) 2005-2007 Network Appliance, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the BSD-type
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
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 provided
21 * with the distribution.
23 * Neither the name of the Network Appliance, Inc. nor the names of
24 * its contributors may be used to endorse or promote products
25 * derived from this software without specific prior written
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 * Author: Tom Tucker <tom@opengridcomputing.com>
43 #include <linux/sunrpc/svc_xprt.h>
44 #include <linux/sunrpc/debug.h>
45 #include <linux/sunrpc/rpc_rdma.h>
46 #include <linux/interrupt.h>
47 #include <linux/sched.h>
48 #include <linux/slab.h>
49 #include <linux/spinlock.h>
50 #include <linux/workqueue.h>
51 #include <rdma/ib_verbs.h>
52 #include <rdma/rdma_cm.h>
53 #include <linux/sunrpc/svc_rdma.h>
54 #include <linux/export.h>
55 #include "xprt_rdma.h"
57 #define RPCDBG_FACILITY RPCDBG_SVCXPRT
59 static struct svcxprt_rdma
*rdma_create_xprt(struct svc_serv
*, int);
60 static struct svc_xprt
*svc_rdma_create(struct svc_serv
*serv
,
62 struct sockaddr
*sa
, int salen
,
64 static struct svc_xprt
*svc_rdma_accept(struct svc_xprt
*xprt
);
65 static void svc_rdma_release_rqst(struct svc_rqst
*);
66 static void svc_rdma_detach(struct svc_xprt
*xprt
);
67 static void svc_rdma_free(struct svc_xprt
*xprt
);
68 static int svc_rdma_has_wspace(struct svc_xprt
*xprt
);
69 static int svc_rdma_secure_port(struct svc_rqst
*);
71 static struct svc_xprt_ops svc_rdma_ops
= {
72 .xpo_create
= svc_rdma_create
,
73 .xpo_recvfrom
= svc_rdma_recvfrom
,
74 .xpo_sendto
= svc_rdma_sendto
,
75 .xpo_release_rqst
= svc_rdma_release_rqst
,
76 .xpo_detach
= svc_rdma_detach
,
77 .xpo_free
= svc_rdma_free
,
78 .xpo_prep_reply_hdr
= svc_rdma_prep_reply_hdr
,
79 .xpo_has_wspace
= svc_rdma_has_wspace
,
80 .xpo_accept
= svc_rdma_accept
,
81 .xpo_secure_port
= svc_rdma_secure_port
,
84 struct svc_xprt_class svc_rdma_class
= {
86 .xcl_owner
= THIS_MODULE
,
87 .xcl_ops
= &svc_rdma_ops
,
88 .xcl_max_payload
= RPCSVC_MAXPAYLOAD_RDMA
,
89 .xcl_ident
= XPRT_TRANSPORT_RDMA
,
92 #if defined(CONFIG_SUNRPC_BACKCHANNEL)
93 static struct svc_xprt
*svc_rdma_bc_create(struct svc_serv
*, struct net
*,
94 struct sockaddr
*, int, int);
95 static void svc_rdma_bc_detach(struct svc_xprt
*);
96 static void svc_rdma_bc_free(struct svc_xprt
*);
98 static struct svc_xprt_ops svc_rdma_bc_ops
= {
99 .xpo_create
= svc_rdma_bc_create
,
100 .xpo_detach
= svc_rdma_bc_detach
,
101 .xpo_free
= svc_rdma_bc_free
,
102 .xpo_prep_reply_hdr
= svc_rdma_prep_reply_hdr
,
103 .xpo_secure_port
= svc_rdma_secure_port
,
106 struct svc_xprt_class svc_rdma_bc_class
= {
107 .xcl_name
= "rdma-bc",
108 .xcl_owner
= THIS_MODULE
,
109 .xcl_ops
= &svc_rdma_bc_ops
,
110 .xcl_max_payload
= (1024 - RPCRDMA_HDRLEN_MIN
)
113 static struct svc_xprt
*svc_rdma_bc_create(struct svc_serv
*serv
,
115 struct sockaddr
*sa
, int salen
,
118 struct svcxprt_rdma
*cma_xprt
;
119 struct svc_xprt
*xprt
;
121 cma_xprt
= rdma_create_xprt(serv
, 0);
123 return ERR_PTR(-ENOMEM
);
124 xprt
= &cma_xprt
->sc_xprt
;
126 svc_xprt_init(net
, &svc_rdma_bc_class
, xprt
, serv
);
127 serv
->sv_bc_xprt
= xprt
;
129 dprintk("svcrdma: %s(%p)\n", __func__
, xprt
);
133 static void svc_rdma_bc_detach(struct svc_xprt
*xprt
)
135 dprintk("svcrdma: %s(%p)\n", __func__
, xprt
);
138 static void svc_rdma_bc_free(struct svc_xprt
*xprt
)
140 struct svcxprt_rdma
*rdma
=
141 container_of(xprt
, struct svcxprt_rdma
, sc_xprt
);
143 dprintk("svcrdma: %s(%p)\n", __func__
, xprt
);
147 #endif /* CONFIG_SUNRPC_BACKCHANNEL */
149 static struct svc_rdma_op_ctxt
*alloc_ctxt(struct svcxprt_rdma
*xprt
,
152 struct svc_rdma_op_ctxt
*ctxt
;
154 ctxt
= kmalloc(sizeof(*ctxt
), flags
);
157 INIT_LIST_HEAD(&ctxt
->free
);
158 INIT_LIST_HEAD(&ctxt
->dto_q
);
163 static bool svc_rdma_prealloc_ctxts(struct svcxprt_rdma
*xprt
)
167 /* Each RPC/RDMA credit can consume a number of send
168 * and receive WQEs. One ctxt is allocated for each.
170 i
= xprt
->sc_sq_depth
+ xprt
->sc_rq_depth
;
173 struct svc_rdma_op_ctxt
*ctxt
;
175 ctxt
= alloc_ctxt(xprt
, GFP_KERNEL
);
177 dprintk("svcrdma: No memory for RDMA ctxt\n");
180 list_add(&ctxt
->free
, &xprt
->sc_ctxts
);
185 struct svc_rdma_op_ctxt
*svc_rdma_get_context(struct svcxprt_rdma
*xprt
)
187 struct svc_rdma_op_ctxt
*ctxt
= NULL
;
189 spin_lock_bh(&xprt
->sc_ctxt_lock
);
190 xprt
->sc_ctxt_used
++;
191 if (list_empty(&xprt
->sc_ctxts
))
194 ctxt
= list_first_entry(&xprt
->sc_ctxts
,
195 struct svc_rdma_op_ctxt
, free
);
196 list_del_init(&ctxt
->free
);
197 spin_unlock_bh(&xprt
->sc_ctxt_lock
);
205 /* Either pre-allocation missed the mark, or send
206 * queue accounting is broken.
208 spin_unlock_bh(&xprt
->sc_ctxt_lock
);
210 ctxt
= alloc_ctxt(xprt
, GFP_NOIO
);
214 spin_lock_bh(&xprt
->sc_ctxt_lock
);
215 xprt
->sc_ctxt_used
--;
216 spin_unlock_bh(&xprt
->sc_ctxt_lock
);
217 WARN_ONCE(1, "svcrdma: empty RDMA ctxt list?\n");
221 void svc_rdma_unmap_dma(struct svc_rdma_op_ctxt
*ctxt
)
223 struct svcxprt_rdma
*xprt
= ctxt
->xprt
;
225 for (i
= 0; i
< ctxt
->count
&& ctxt
->sge
[i
].length
; i
++) {
227 * Unmap the DMA addr in the SGE if the lkey matches
228 * the local_dma_lkey, otherwise, ignore it since it is
229 * an FRMR lkey and will be unmapped later when the
230 * last WR that uses it completes.
232 if (ctxt
->sge
[i
].lkey
== xprt
->sc_pd
->local_dma_lkey
) {
233 atomic_dec(&xprt
->sc_dma_used
);
234 ib_dma_unmap_page(xprt
->sc_cm_id
->device
,
242 void svc_rdma_put_context(struct svc_rdma_op_ctxt
*ctxt
, int free_pages
)
244 struct svcxprt_rdma
*xprt
= ctxt
->xprt
;
248 for (i
= 0; i
< ctxt
->count
; i
++)
249 put_page(ctxt
->pages
[i
]);
251 spin_lock_bh(&xprt
->sc_ctxt_lock
);
252 xprt
->sc_ctxt_used
--;
253 list_add(&ctxt
->free
, &xprt
->sc_ctxts
);
254 spin_unlock_bh(&xprt
->sc_ctxt_lock
);
257 static void svc_rdma_destroy_ctxts(struct svcxprt_rdma
*xprt
)
259 while (!list_empty(&xprt
->sc_ctxts
)) {
260 struct svc_rdma_op_ctxt
*ctxt
;
262 ctxt
= list_first_entry(&xprt
->sc_ctxts
,
263 struct svc_rdma_op_ctxt
, free
);
264 list_del(&ctxt
->free
);
269 static struct svc_rdma_req_map
*alloc_req_map(gfp_t flags
)
271 struct svc_rdma_req_map
*map
;
273 map
= kmalloc(sizeof(*map
), flags
);
275 INIT_LIST_HEAD(&map
->free
);
279 static bool svc_rdma_prealloc_maps(struct svcxprt_rdma
*xprt
)
283 /* One for each receive buffer on this connection. */
284 i
= xprt
->sc_max_requests
;
287 struct svc_rdma_req_map
*map
;
289 map
= alloc_req_map(GFP_KERNEL
);
291 dprintk("svcrdma: No memory for request map\n");
294 list_add(&map
->free
, &xprt
->sc_maps
);
299 struct svc_rdma_req_map
*svc_rdma_get_req_map(struct svcxprt_rdma
*xprt
)
301 struct svc_rdma_req_map
*map
= NULL
;
303 spin_lock(&xprt
->sc_map_lock
);
304 if (list_empty(&xprt
->sc_maps
))
307 map
= list_first_entry(&xprt
->sc_maps
,
308 struct svc_rdma_req_map
, free
);
309 list_del_init(&map
->free
);
310 spin_unlock(&xprt
->sc_map_lock
);
317 spin_unlock(&xprt
->sc_map_lock
);
319 /* Pre-allocation amount was incorrect */
320 map
= alloc_req_map(GFP_NOIO
);
324 WARN_ONCE(1, "svcrdma: empty request map list?\n");
328 void svc_rdma_put_req_map(struct svcxprt_rdma
*xprt
,
329 struct svc_rdma_req_map
*map
)
331 spin_lock(&xprt
->sc_map_lock
);
332 list_add(&map
->free
, &xprt
->sc_maps
);
333 spin_unlock(&xprt
->sc_map_lock
);
336 static void svc_rdma_destroy_maps(struct svcxprt_rdma
*xprt
)
338 while (!list_empty(&xprt
->sc_maps
)) {
339 struct svc_rdma_req_map
*map
;
341 map
= list_first_entry(&xprt
->sc_maps
,
342 struct svc_rdma_req_map
, free
);
343 list_del(&map
->free
);
348 /* QP event handler */
349 static void qp_event_handler(struct ib_event
*event
, void *context
)
351 struct svc_xprt
*xprt
= context
;
353 switch (event
->event
) {
354 /* These are considered benign events */
355 case IB_EVENT_PATH_MIG
:
356 case IB_EVENT_COMM_EST
:
357 case IB_EVENT_SQ_DRAINED
:
358 case IB_EVENT_QP_LAST_WQE_REACHED
:
359 dprintk("svcrdma: QP event %s (%d) received for QP=%p\n",
360 ib_event_msg(event
->event
), event
->event
,
363 /* These are considered fatal events */
364 case IB_EVENT_PATH_MIG_ERR
:
365 case IB_EVENT_QP_FATAL
:
366 case IB_EVENT_QP_REQ_ERR
:
367 case IB_EVENT_QP_ACCESS_ERR
:
368 case IB_EVENT_DEVICE_FATAL
:
370 dprintk("svcrdma: QP ERROR event %s (%d) received for QP=%p, "
371 "closing transport\n",
372 ib_event_msg(event
->event
), event
->event
,
374 set_bit(XPT_CLOSE
, &xprt
->xpt_flags
);
380 * svc_rdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
381 * @cq: completion queue
385 static void svc_rdma_wc_receive(struct ib_cq
*cq
, struct ib_wc
*wc
)
387 struct svcxprt_rdma
*xprt
= cq
->cq_context
;
388 struct ib_cqe
*cqe
= wc
->wr_cqe
;
389 struct svc_rdma_op_ctxt
*ctxt
;
391 /* WARNING: Only wc->wr_cqe and wc->status are reliable */
392 ctxt
= container_of(cqe
, struct svc_rdma_op_ctxt
, cqe
);
393 ctxt
->wc_status
= wc
->status
;
394 svc_rdma_unmap_dma(ctxt
);
396 if (wc
->status
!= IB_WC_SUCCESS
)
399 /* All wc fields are now known to be valid */
400 ctxt
->byte_len
= wc
->byte_len
;
401 spin_lock(&xprt
->sc_rq_dto_lock
);
402 list_add_tail(&ctxt
->dto_q
, &xprt
->sc_rq_dto_q
);
403 spin_unlock(&xprt
->sc_rq_dto_lock
);
405 set_bit(XPT_DATA
, &xprt
->sc_xprt
.xpt_flags
);
406 if (test_bit(RDMAXPRT_CONN_PENDING
, &xprt
->sc_flags
))
408 svc_xprt_enqueue(&xprt
->sc_xprt
);
412 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
413 pr_warn("svcrdma: receive: %s (%u/0x%x)\n",
414 ib_wc_status_msg(wc
->status
),
415 wc
->status
, wc
->vendor_err
);
416 set_bit(XPT_CLOSE
, &xprt
->sc_xprt
.xpt_flags
);
417 svc_rdma_put_context(ctxt
, 1);
420 svc_xprt_put(&xprt
->sc_xprt
);
423 static void svc_rdma_send_wc_common(struct svcxprt_rdma
*xprt
,
427 if (wc
->status
!= IB_WC_SUCCESS
)
431 atomic_dec(&xprt
->sc_sq_count
);
432 wake_up(&xprt
->sc_send_wait
);
436 set_bit(XPT_CLOSE
, &xprt
->sc_xprt
.xpt_flags
);
437 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
438 pr_err("svcrdma: %s: %s (%u/0x%x)\n",
439 opname
, ib_wc_status_msg(wc
->status
),
440 wc
->status
, wc
->vendor_err
);
444 static void svc_rdma_send_wc_common_put(struct ib_cq
*cq
, struct ib_wc
*wc
,
447 struct svcxprt_rdma
*xprt
= cq
->cq_context
;
449 svc_rdma_send_wc_common(xprt
, wc
, opname
);
450 svc_xprt_put(&xprt
->sc_xprt
);
454 * svc_rdma_wc_send - Invoked by RDMA provider for each polled Send WC
455 * @cq: completion queue
459 void svc_rdma_wc_send(struct ib_cq
*cq
, struct ib_wc
*wc
)
461 struct ib_cqe
*cqe
= wc
->wr_cqe
;
462 struct svc_rdma_op_ctxt
*ctxt
;
464 svc_rdma_send_wc_common_put(cq
, wc
, "send");
466 ctxt
= container_of(cqe
, struct svc_rdma_op_ctxt
, cqe
);
467 svc_rdma_unmap_dma(ctxt
);
468 svc_rdma_put_context(ctxt
, 1);
472 * svc_rdma_wc_write - Invoked by RDMA provider for each polled Write WC
473 * @cq: completion queue
477 void svc_rdma_wc_write(struct ib_cq
*cq
, struct ib_wc
*wc
)
479 struct ib_cqe
*cqe
= wc
->wr_cqe
;
480 struct svc_rdma_op_ctxt
*ctxt
;
482 svc_rdma_send_wc_common_put(cq
, wc
, "write");
484 ctxt
= container_of(cqe
, struct svc_rdma_op_ctxt
, cqe
);
485 svc_rdma_unmap_dma(ctxt
);
486 svc_rdma_put_context(ctxt
, 0);
490 * svc_rdma_wc_reg - Invoked by RDMA provider for each polled FASTREG WC
491 * @cq: completion queue
495 void svc_rdma_wc_reg(struct ib_cq
*cq
, struct ib_wc
*wc
)
497 svc_rdma_send_wc_common_put(cq
, wc
, "fastreg");
501 * svc_rdma_wc_read - Invoked by RDMA provider for each polled Read WC
502 * @cq: completion queue
506 void svc_rdma_wc_read(struct ib_cq
*cq
, struct ib_wc
*wc
)
508 struct svcxprt_rdma
*xprt
= cq
->cq_context
;
509 struct ib_cqe
*cqe
= wc
->wr_cqe
;
510 struct svc_rdma_op_ctxt
*ctxt
;
512 svc_rdma_send_wc_common(xprt
, wc
, "read");
514 ctxt
= container_of(cqe
, struct svc_rdma_op_ctxt
, cqe
);
515 svc_rdma_unmap_dma(ctxt
);
516 svc_rdma_put_frmr(xprt
, ctxt
->frmr
);
518 if (test_bit(RDMACTXT_F_LAST_CTXT
, &ctxt
->flags
)) {
519 struct svc_rdma_op_ctxt
*read_hdr
;
521 read_hdr
= ctxt
->read_hdr
;
522 spin_lock(&xprt
->sc_rq_dto_lock
);
523 list_add_tail(&read_hdr
->dto_q
,
524 &xprt
->sc_read_complete_q
);
525 spin_unlock(&xprt
->sc_rq_dto_lock
);
527 set_bit(XPT_DATA
, &xprt
->sc_xprt
.xpt_flags
);
528 svc_xprt_enqueue(&xprt
->sc_xprt
);
531 svc_rdma_put_context(ctxt
, 0);
532 svc_xprt_put(&xprt
->sc_xprt
);
536 * svc_rdma_wc_inv - Invoked by RDMA provider for each polled LOCAL_INV WC
537 * @cq: completion queue
541 void svc_rdma_wc_inv(struct ib_cq
*cq
, struct ib_wc
*wc
)
543 svc_rdma_send_wc_common_put(cq
, wc
, "localInv");
546 static struct svcxprt_rdma
*rdma_create_xprt(struct svc_serv
*serv
,
549 struct svcxprt_rdma
*cma_xprt
= kzalloc(sizeof *cma_xprt
, GFP_KERNEL
);
553 svc_xprt_init(&init_net
, &svc_rdma_class
, &cma_xprt
->sc_xprt
, serv
);
554 INIT_LIST_HEAD(&cma_xprt
->sc_accept_q
);
555 INIT_LIST_HEAD(&cma_xprt
->sc_dto_q
);
556 INIT_LIST_HEAD(&cma_xprt
->sc_rq_dto_q
);
557 INIT_LIST_HEAD(&cma_xprt
->sc_read_complete_q
);
558 INIT_LIST_HEAD(&cma_xprt
->sc_frmr_q
);
559 INIT_LIST_HEAD(&cma_xprt
->sc_ctxts
);
560 INIT_LIST_HEAD(&cma_xprt
->sc_maps
);
561 init_waitqueue_head(&cma_xprt
->sc_send_wait
);
563 spin_lock_init(&cma_xprt
->sc_lock
);
564 spin_lock_init(&cma_xprt
->sc_rq_dto_lock
);
565 spin_lock_init(&cma_xprt
->sc_frmr_q_lock
);
566 spin_lock_init(&cma_xprt
->sc_ctxt_lock
);
567 spin_lock_init(&cma_xprt
->sc_map_lock
);
570 set_bit(XPT_LISTENER
, &cma_xprt
->sc_xprt
.xpt_flags
);
575 int svc_rdma_post_recv(struct svcxprt_rdma
*xprt
, gfp_t flags
)
577 struct ib_recv_wr recv_wr
, *bad_recv_wr
;
578 struct svc_rdma_op_ctxt
*ctxt
;
585 ctxt
= svc_rdma_get_context(xprt
);
587 ctxt
->direction
= DMA_FROM_DEVICE
;
588 ctxt
->cqe
.done
= svc_rdma_wc_receive
;
589 for (sge_no
= 0; buflen
< xprt
->sc_max_req_size
; sge_no
++) {
590 if (sge_no
>= xprt
->sc_max_sge
) {
591 pr_err("svcrdma: Too many sges (%d)\n", sge_no
);
594 page
= alloc_page(flags
);
597 ctxt
->pages
[sge_no
] = page
;
598 pa
= ib_dma_map_page(xprt
->sc_cm_id
->device
,
601 if (ib_dma_mapping_error(xprt
->sc_cm_id
->device
, pa
))
603 atomic_inc(&xprt
->sc_dma_used
);
604 ctxt
->sge
[sge_no
].addr
= pa
;
605 ctxt
->sge
[sge_no
].length
= PAGE_SIZE
;
606 ctxt
->sge
[sge_no
].lkey
= xprt
->sc_pd
->local_dma_lkey
;
607 ctxt
->count
= sge_no
+ 1;
611 recv_wr
.sg_list
= &ctxt
->sge
[0];
612 recv_wr
.num_sge
= ctxt
->count
;
613 recv_wr
.wr_cqe
= &ctxt
->cqe
;
615 svc_xprt_get(&xprt
->sc_xprt
);
616 ret
= ib_post_recv(xprt
->sc_qp
, &recv_wr
, &bad_recv_wr
);
618 svc_rdma_unmap_dma(ctxt
);
619 svc_rdma_put_context(ctxt
, 1);
620 svc_xprt_put(&xprt
->sc_xprt
);
625 svc_rdma_unmap_dma(ctxt
);
626 svc_rdma_put_context(ctxt
, 1);
630 int svc_rdma_repost_recv(struct svcxprt_rdma
*xprt
, gfp_t flags
)
634 ret
= svc_rdma_post_recv(xprt
, flags
);
636 pr_err("svcrdma: could not post a receive buffer, err=%d.\n",
638 pr_err("svcrdma: closing transport %p.\n", xprt
);
639 set_bit(XPT_CLOSE
, &xprt
->sc_xprt
.xpt_flags
);
646 * This function handles the CONNECT_REQUEST event on a listening
647 * endpoint. It is passed the cma_id for the _new_ connection. The context in
648 * this cma_id is inherited from the listening cma_id and is the svc_xprt
649 * structure for the listening endpoint.
651 * This function creates a new xprt for the new connection and enqueues it on
652 * the accept queue for the listent xprt. When the listen thread is kicked, it
653 * will call the recvfrom method on the listen xprt which will accept the new
656 static void handle_connect_req(struct rdma_cm_id
*new_cma_id
, size_t client_ird
)
658 struct svcxprt_rdma
*listen_xprt
= new_cma_id
->context
;
659 struct svcxprt_rdma
*newxprt
;
662 /* Create a new transport */
663 newxprt
= rdma_create_xprt(listen_xprt
->sc_xprt
.xpt_server
, 0);
665 dprintk("svcrdma: failed to create new transport\n");
668 newxprt
->sc_cm_id
= new_cma_id
;
669 new_cma_id
->context
= newxprt
;
670 dprintk("svcrdma: Creating newxprt=%p, cm_id=%p, listenxprt=%p\n",
671 newxprt
, newxprt
->sc_cm_id
, listen_xprt
);
673 /* Save client advertised inbound read limit for use later in accept. */
674 newxprt
->sc_ord
= client_ird
;
676 /* Set the local and remote addresses in the transport */
677 sa
= (struct sockaddr
*)&newxprt
->sc_cm_id
->route
.addr
.dst_addr
;
678 svc_xprt_set_remote(&newxprt
->sc_xprt
, sa
, svc_addr_len(sa
));
679 sa
= (struct sockaddr
*)&newxprt
->sc_cm_id
->route
.addr
.src_addr
;
680 svc_xprt_set_local(&newxprt
->sc_xprt
, sa
, svc_addr_len(sa
));
683 * Enqueue the new transport on the accept queue of the listening
686 spin_lock_bh(&listen_xprt
->sc_lock
);
687 list_add_tail(&newxprt
->sc_accept_q
, &listen_xprt
->sc_accept_q
);
688 spin_unlock_bh(&listen_xprt
->sc_lock
);
690 set_bit(XPT_CONN
, &listen_xprt
->sc_xprt
.xpt_flags
);
691 svc_xprt_enqueue(&listen_xprt
->sc_xprt
);
695 * Handles events generated on the listening endpoint. These events will be
696 * either be incoming connect requests or adapter removal events.
698 static int rdma_listen_handler(struct rdma_cm_id
*cma_id
,
699 struct rdma_cm_event
*event
)
701 struct svcxprt_rdma
*xprt
= cma_id
->context
;
704 switch (event
->event
) {
705 case RDMA_CM_EVENT_CONNECT_REQUEST
:
706 dprintk("svcrdma: Connect request on cma_id=%p, xprt = %p, "
707 "event = %s (%d)\n", cma_id
, cma_id
->context
,
708 rdma_event_msg(event
->event
), event
->event
);
709 handle_connect_req(cma_id
,
710 event
->param
.conn
.initiator_depth
);
713 case RDMA_CM_EVENT_ESTABLISHED
:
714 /* Accept complete */
715 dprintk("svcrdma: Connection completed on LISTEN xprt=%p, "
716 "cm_id=%p\n", xprt
, cma_id
);
719 case RDMA_CM_EVENT_DEVICE_REMOVAL
:
720 dprintk("svcrdma: Device removal xprt=%p, cm_id=%p\n",
723 set_bit(XPT_CLOSE
, &xprt
->sc_xprt
.xpt_flags
);
727 dprintk("svcrdma: Unexpected event on listening endpoint %p, "
728 "event = %s (%d)\n", cma_id
,
729 rdma_event_msg(event
->event
), event
->event
);
736 static int rdma_cma_handler(struct rdma_cm_id
*cma_id
,
737 struct rdma_cm_event
*event
)
739 struct svc_xprt
*xprt
= cma_id
->context
;
740 struct svcxprt_rdma
*rdma
=
741 container_of(xprt
, struct svcxprt_rdma
, sc_xprt
);
742 switch (event
->event
) {
743 case RDMA_CM_EVENT_ESTABLISHED
:
744 /* Accept complete */
746 dprintk("svcrdma: Connection completed on DTO xprt=%p, "
747 "cm_id=%p\n", xprt
, cma_id
);
748 clear_bit(RDMAXPRT_CONN_PENDING
, &rdma
->sc_flags
);
749 svc_xprt_enqueue(xprt
);
751 case RDMA_CM_EVENT_DISCONNECTED
:
752 dprintk("svcrdma: Disconnect on DTO xprt=%p, cm_id=%p\n",
755 set_bit(XPT_CLOSE
, &xprt
->xpt_flags
);
756 svc_xprt_enqueue(xprt
);
760 case RDMA_CM_EVENT_DEVICE_REMOVAL
:
761 dprintk("svcrdma: Device removal cma_id=%p, xprt = %p, "
762 "event = %s (%d)\n", cma_id
, xprt
,
763 rdma_event_msg(event
->event
), event
->event
);
765 set_bit(XPT_CLOSE
, &xprt
->xpt_flags
);
766 svc_xprt_enqueue(xprt
);
771 dprintk("svcrdma: Unexpected event on DTO endpoint %p, "
772 "event = %s (%d)\n", cma_id
,
773 rdma_event_msg(event
->event
), event
->event
);
780 * Create a listening RDMA service endpoint.
782 static struct svc_xprt
*svc_rdma_create(struct svc_serv
*serv
,
784 struct sockaddr
*sa
, int salen
,
787 struct rdma_cm_id
*listen_id
;
788 struct svcxprt_rdma
*cma_xprt
;
791 dprintk("svcrdma: Creating RDMA socket\n");
792 if (sa
->sa_family
!= AF_INET
) {
793 dprintk("svcrdma: Address family %d is not supported.\n", sa
->sa_family
);
794 return ERR_PTR(-EAFNOSUPPORT
);
796 cma_xprt
= rdma_create_xprt(serv
, 1);
798 return ERR_PTR(-ENOMEM
);
800 listen_id
= rdma_create_id(&init_net
, rdma_listen_handler
, cma_xprt
,
801 RDMA_PS_TCP
, IB_QPT_RC
);
802 if (IS_ERR(listen_id
)) {
803 ret
= PTR_ERR(listen_id
);
804 dprintk("svcrdma: rdma_create_id failed = %d\n", ret
);
808 ret
= rdma_bind_addr(listen_id
, sa
);
810 dprintk("svcrdma: rdma_bind_addr failed = %d\n", ret
);
813 cma_xprt
->sc_cm_id
= listen_id
;
815 ret
= rdma_listen(listen_id
, RPCRDMA_LISTEN_BACKLOG
);
817 dprintk("svcrdma: rdma_listen failed = %d\n", ret
);
822 * We need to use the address from the cm_id in case the
823 * caller specified 0 for the port number.
825 sa
= (struct sockaddr
*)&cma_xprt
->sc_cm_id
->route
.addr
.src_addr
;
826 svc_xprt_set_local(&cma_xprt
->sc_xprt
, sa
, salen
);
828 return &cma_xprt
->sc_xprt
;
831 rdma_destroy_id(listen_id
);
837 static struct svc_rdma_fastreg_mr
*rdma_alloc_frmr(struct svcxprt_rdma
*xprt
)
840 struct scatterlist
*sg
;
841 struct svc_rdma_fastreg_mr
*frmr
;
844 frmr
= kmalloc(sizeof(*frmr
), GFP_KERNEL
);
848 num_sg
= min_t(u32
, RPCSVC_MAXPAGES
, xprt
->sc_frmr_pg_list_len
);
849 mr
= ib_alloc_mr(xprt
->sc_pd
, IB_MR_TYPE_MEM_REG
, num_sg
);
853 sg
= kcalloc(RPCSVC_MAXPAGES
, sizeof(*sg
), GFP_KERNEL
);
857 sg_init_table(sg
, RPCSVC_MAXPAGES
);
861 INIT_LIST_HEAD(&frmr
->frmr_list
);
869 return ERR_PTR(-ENOMEM
);
872 static void rdma_dealloc_frmr_q(struct svcxprt_rdma
*xprt
)
874 struct svc_rdma_fastreg_mr
*frmr
;
876 while (!list_empty(&xprt
->sc_frmr_q
)) {
877 frmr
= list_entry(xprt
->sc_frmr_q
.next
,
878 struct svc_rdma_fastreg_mr
, frmr_list
);
879 list_del_init(&frmr
->frmr_list
);
881 ib_dereg_mr(frmr
->mr
);
886 struct svc_rdma_fastreg_mr
*svc_rdma_get_frmr(struct svcxprt_rdma
*rdma
)
888 struct svc_rdma_fastreg_mr
*frmr
= NULL
;
890 spin_lock_bh(&rdma
->sc_frmr_q_lock
);
891 if (!list_empty(&rdma
->sc_frmr_q
)) {
892 frmr
= list_entry(rdma
->sc_frmr_q
.next
,
893 struct svc_rdma_fastreg_mr
, frmr_list
);
894 list_del_init(&frmr
->frmr_list
);
897 spin_unlock_bh(&rdma
->sc_frmr_q_lock
);
901 return rdma_alloc_frmr(rdma
);
904 void svc_rdma_put_frmr(struct svcxprt_rdma
*rdma
,
905 struct svc_rdma_fastreg_mr
*frmr
)
908 ib_dma_unmap_sg(rdma
->sc_cm_id
->device
,
909 frmr
->sg
, frmr
->sg_nents
, frmr
->direction
);
910 atomic_dec(&rdma
->sc_dma_used
);
911 spin_lock_bh(&rdma
->sc_frmr_q_lock
);
912 WARN_ON_ONCE(!list_empty(&frmr
->frmr_list
));
913 list_add(&frmr
->frmr_list
, &rdma
->sc_frmr_q
);
914 spin_unlock_bh(&rdma
->sc_frmr_q_lock
);
919 * This is the xpo_recvfrom function for listening endpoints. Its
920 * purpose is to accept incoming connections. The CMA callback handler
921 * has already created a new transport and attached it to the new CMA
924 * There is a queue of pending connections hung on the listening
925 * transport. This queue contains the new svc_xprt structure. This
926 * function takes svc_xprt structures off the accept_q and completes
929 static struct svc_xprt
*svc_rdma_accept(struct svc_xprt
*xprt
)
931 struct svcxprt_rdma
*listen_rdma
;
932 struct svcxprt_rdma
*newxprt
= NULL
;
933 struct rdma_conn_param conn_param
;
934 struct ib_qp_init_attr qp_attr
;
935 struct ib_device
*dev
;
939 listen_rdma
= container_of(xprt
, struct svcxprt_rdma
, sc_xprt
);
940 clear_bit(XPT_CONN
, &xprt
->xpt_flags
);
941 /* Get the next entry off the accept list */
942 spin_lock_bh(&listen_rdma
->sc_lock
);
943 if (!list_empty(&listen_rdma
->sc_accept_q
)) {
944 newxprt
= list_entry(listen_rdma
->sc_accept_q
.next
,
945 struct svcxprt_rdma
, sc_accept_q
);
946 list_del_init(&newxprt
->sc_accept_q
);
948 if (!list_empty(&listen_rdma
->sc_accept_q
))
949 set_bit(XPT_CONN
, &listen_rdma
->sc_xprt
.xpt_flags
);
950 spin_unlock_bh(&listen_rdma
->sc_lock
);
954 dprintk("svcrdma: newxprt from accept queue = %p, cm_id=%p\n",
955 newxprt
, newxprt
->sc_cm_id
);
957 dev
= newxprt
->sc_cm_id
->device
;
959 /* Qualify the transport resource defaults with the
960 * capabilities of this particular device */
961 newxprt
->sc_max_sge
= min((size_t)dev
->attrs
.max_sge
,
962 (size_t)RPCSVC_MAXPAGES
);
963 newxprt
->sc_max_sge_rd
= min_t(size_t, dev
->attrs
.max_sge_rd
,
965 newxprt
->sc_max_req_size
= svcrdma_max_req_size
;
966 newxprt
->sc_max_requests
= min_t(u32
, dev
->attrs
.max_qp_wr
,
967 svcrdma_max_requests
);
968 newxprt
->sc_max_bc_requests
= min_t(u32
, dev
->attrs
.max_qp_wr
,
969 svcrdma_max_bc_requests
);
970 newxprt
->sc_rq_depth
= newxprt
->sc_max_requests
+
971 newxprt
->sc_max_bc_requests
;
972 newxprt
->sc_sq_depth
= RPCRDMA_SQ_DEPTH_MULT
* newxprt
->sc_rq_depth
;
974 if (!svc_rdma_prealloc_ctxts(newxprt
))
976 if (!svc_rdma_prealloc_maps(newxprt
))
980 * Limit ORD based on client limit, local device limit, and
981 * configured svcrdma limit.
983 newxprt
->sc_ord
= min_t(size_t, dev
->attrs
.max_qp_rd_atom
, newxprt
->sc_ord
);
984 newxprt
->sc_ord
= min_t(size_t, svcrdma_ord
, newxprt
->sc_ord
);
986 newxprt
->sc_pd
= ib_alloc_pd(dev
);
987 if (IS_ERR(newxprt
->sc_pd
)) {
988 dprintk("svcrdma: error creating PD for connect request\n");
991 newxprt
->sc_sq_cq
= ib_alloc_cq(dev
, newxprt
, newxprt
->sc_sq_depth
,
993 if (IS_ERR(newxprt
->sc_sq_cq
)) {
994 dprintk("svcrdma: error creating SQ CQ for connect request\n");
997 newxprt
->sc_rq_cq
= ib_alloc_cq(dev
, newxprt
, newxprt
->sc_rq_depth
,
999 if (IS_ERR(newxprt
->sc_rq_cq
)) {
1000 dprintk("svcrdma: error creating RQ CQ for connect request\n");
1004 memset(&qp_attr
, 0, sizeof qp_attr
);
1005 qp_attr
.event_handler
= qp_event_handler
;
1006 qp_attr
.qp_context
= &newxprt
->sc_xprt
;
1007 qp_attr
.cap
.max_send_wr
= newxprt
->sc_sq_depth
;
1008 qp_attr
.cap
.max_recv_wr
= newxprt
->sc_rq_depth
;
1009 qp_attr
.cap
.max_send_sge
= newxprt
->sc_max_sge
;
1010 qp_attr
.cap
.max_recv_sge
= newxprt
->sc_max_sge
;
1011 qp_attr
.sq_sig_type
= IB_SIGNAL_REQ_WR
;
1012 qp_attr
.qp_type
= IB_QPT_RC
;
1013 qp_attr
.send_cq
= newxprt
->sc_sq_cq
;
1014 qp_attr
.recv_cq
= newxprt
->sc_rq_cq
;
1015 dprintk("svcrdma: newxprt->sc_cm_id=%p, newxprt->sc_pd=%p\n"
1016 " cm_id->device=%p, sc_pd->device=%p\n"
1017 " cap.max_send_wr = %d\n"
1018 " cap.max_recv_wr = %d\n"
1019 " cap.max_send_sge = %d\n"
1020 " cap.max_recv_sge = %d\n",
1021 newxprt
->sc_cm_id
, newxprt
->sc_pd
,
1022 dev
, newxprt
->sc_pd
->device
,
1023 qp_attr
.cap
.max_send_wr
,
1024 qp_attr
.cap
.max_recv_wr
,
1025 qp_attr
.cap
.max_send_sge
,
1026 qp_attr
.cap
.max_recv_sge
);
1028 ret
= rdma_create_qp(newxprt
->sc_cm_id
, newxprt
->sc_pd
, &qp_attr
);
1030 dprintk("svcrdma: failed to create QP, ret=%d\n", ret
);
1033 newxprt
->sc_qp
= newxprt
->sc_cm_id
->qp
;
1036 * Use the most secure set of MR resources based on the
1037 * transport type and available memory management features in
1038 * the device. Here's the table implemented below:
1040 * Fast Global DMA Remote WR
1041 * Reg LKEY MR Access
1042 * Sup'd Sup'd Needed Needed
1054 * NB: iWARP requires remote write access for the data sink
1055 * of an RDMA_READ. IB does not.
1057 newxprt
->sc_reader
= rdma_read_chunk_lcl
;
1058 if (dev
->attrs
.device_cap_flags
& IB_DEVICE_MEM_MGT_EXTENSIONS
) {
1059 newxprt
->sc_frmr_pg_list_len
=
1060 dev
->attrs
.max_fast_reg_page_list_len
;
1061 newxprt
->sc_dev_caps
|= SVCRDMA_DEVCAP_FAST_REG
;
1062 newxprt
->sc_reader
= rdma_read_chunk_frmr
;
1066 * Determine if a DMA MR is required and if so, what privs are required
1068 if (!rdma_protocol_iwarp(dev
, newxprt
->sc_cm_id
->port_num
) &&
1069 !rdma_ib_or_roce(dev
, newxprt
->sc_cm_id
->port_num
))
1072 if (rdma_protocol_iwarp(dev
, newxprt
->sc_cm_id
->port_num
))
1073 newxprt
->sc_dev_caps
|= SVCRDMA_DEVCAP_READ_W_INV
;
1075 /* Post receive buffers */
1076 for (i
= 0; i
< newxprt
->sc_rq_depth
; i
++) {
1077 ret
= svc_rdma_post_recv(newxprt
, GFP_KERNEL
);
1079 dprintk("svcrdma: failure posting receive buffers\n");
1084 /* Swap out the handler */
1085 newxprt
->sc_cm_id
->event_handler
= rdma_cma_handler
;
1087 /* Accept Connection */
1088 set_bit(RDMAXPRT_CONN_PENDING
, &newxprt
->sc_flags
);
1089 memset(&conn_param
, 0, sizeof conn_param
);
1090 conn_param
.responder_resources
= 0;
1091 conn_param
.initiator_depth
= newxprt
->sc_ord
;
1092 ret
= rdma_accept(newxprt
->sc_cm_id
, &conn_param
);
1094 dprintk("svcrdma: failed to accept new connection, ret=%d\n",
1099 dprintk("svcrdma: new connection %p accepted with the following "
1101 " local_ip : %pI4\n"
1102 " local_port : %d\n"
1103 " remote_ip : %pI4\n"
1104 " remote_port : %d\n"
1106 " max_sge_rd : %d\n"
1108 " max_requests : %d\n"
1111 &((struct sockaddr_in
*)&newxprt
->sc_cm_id
->
1112 route
.addr
.src_addr
)->sin_addr
.s_addr
,
1113 ntohs(((struct sockaddr_in
*)&newxprt
->sc_cm_id
->
1114 route
.addr
.src_addr
)->sin_port
),
1115 &((struct sockaddr_in
*)&newxprt
->sc_cm_id
->
1116 route
.addr
.dst_addr
)->sin_addr
.s_addr
,
1117 ntohs(((struct sockaddr_in
*)&newxprt
->sc_cm_id
->
1118 route
.addr
.dst_addr
)->sin_port
),
1119 newxprt
->sc_max_sge
,
1120 newxprt
->sc_max_sge_rd
,
1121 newxprt
->sc_sq_depth
,
1122 newxprt
->sc_max_requests
,
1125 return &newxprt
->sc_xprt
;
1128 dprintk("svcrdma: failure accepting new connection rc=%d.\n", ret
);
1129 /* Take a reference in case the DTO handler runs */
1130 svc_xprt_get(&newxprt
->sc_xprt
);
1131 if (newxprt
->sc_qp
&& !IS_ERR(newxprt
->sc_qp
))
1132 ib_destroy_qp(newxprt
->sc_qp
);
1133 rdma_destroy_id(newxprt
->sc_cm_id
);
1134 /* This call to put will destroy the transport */
1135 svc_xprt_put(&newxprt
->sc_xprt
);
1139 static void svc_rdma_release_rqst(struct svc_rqst
*rqstp
)
1144 * When connected, an svc_xprt has at least two references:
1146 * - A reference held by the cm_id between the ESTABLISHED and
1147 * DISCONNECTED events. If the remote peer disconnected first, this
1148 * reference could be gone.
1150 * - A reference held by the svc_recv code that called this function
1151 * as part of close processing.
1153 * At a minimum one references should still be held.
1155 static void svc_rdma_detach(struct svc_xprt
*xprt
)
1157 struct svcxprt_rdma
*rdma
=
1158 container_of(xprt
, struct svcxprt_rdma
, sc_xprt
);
1159 dprintk("svc: svc_rdma_detach(%p)\n", xprt
);
1161 /* Disconnect and flush posted WQE */
1162 rdma_disconnect(rdma
->sc_cm_id
);
1165 static void __svc_rdma_free(struct work_struct
*work
)
1167 struct svcxprt_rdma
*rdma
=
1168 container_of(work
, struct svcxprt_rdma
, sc_work
);
1169 struct svc_xprt
*xprt
= &rdma
->sc_xprt
;
1171 dprintk("svcrdma: %s(%p)\n", __func__
, rdma
);
1173 /* We should only be called from kref_put */
1174 if (atomic_read(&xprt
->xpt_ref
.refcount
) != 0)
1175 pr_err("svcrdma: sc_xprt still in use? (%d)\n",
1176 atomic_read(&xprt
->xpt_ref
.refcount
));
1179 * Destroy queued, but not processed read completions. Note
1180 * that this cleanup has to be done before destroying the
1181 * cm_id because the device ptr is needed to unmap the dma in
1182 * svc_rdma_put_context.
1184 while (!list_empty(&rdma
->sc_read_complete_q
)) {
1185 struct svc_rdma_op_ctxt
*ctxt
;
1186 ctxt
= list_entry(rdma
->sc_read_complete_q
.next
,
1187 struct svc_rdma_op_ctxt
,
1189 list_del_init(&ctxt
->dto_q
);
1190 svc_rdma_put_context(ctxt
, 1);
1193 /* Destroy queued, but not processed recv completions */
1194 while (!list_empty(&rdma
->sc_rq_dto_q
)) {
1195 struct svc_rdma_op_ctxt
*ctxt
;
1196 ctxt
= list_entry(rdma
->sc_rq_dto_q
.next
,
1197 struct svc_rdma_op_ctxt
,
1199 list_del_init(&ctxt
->dto_q
);
1200 svc_rdma_put_context(ctxt
, 1);
1203 /* Warn if we leaked a resource or under-referenced */
1204 if (rdma
->sc_ctxt_used
!= 0)
1205 pr_err("svcrdma: ctxt still in use? (%d)\n",
1206 rdma
->sc_ctxt_used
);
1207 if (atomic_read(&rdma
->sc_dma_used
) != 0)
1208 pr_err("svcrdma: dma still in use? (%d)\n",
1209 atomic_read(&rdma
->sc_dma_used
));
1211 /* Final put of backchannel client transport */
1212 if (xprt
->xpt_bc_xprt
) {
1213 xprt_put(xprt
->xpt_bc_xprt
);
1214 xprt
->xpt_bc_xprt
= NULL
;
1217 rdma_dealloc_frmr_q(rdma
);
1218 svc_rdma_destroy_ctxts(rdma
);
1219 svc_rdma_destroy_maps(rdma
);
1221 /* Destroy the QP if present (not a listener) */
1222 if (rdma
->sc_qp
&& !IS_ERR(rdma
->sc_qp
))
1223 ib_destroy_qp(rdma
->sc_qp
);
1225 if (rdma
->sc_sq_cq
&& !IS_ERR(rdma
->sc_sq_cq
))
1226 ib_free_cq(rdma
->sc_sq_cq
);
1228 if (rdma
->sc_rq_cq
&& !IS_ERR(rdma
->sc_rq_cq
))
1229 ib_free_cq(rdma
->sc_rq_cq
);
1231 if (rdma
->sc_pd
&& !IS_ERR(rdma
->sc_pd
))
1232 ib_dealloc_pd(rdma
->sc_pd
);
1234 /* Destroy the CM ID */
1235 rdma_destroy_id(rdma
->sc_cm_id
);
1240 static void svc_rdma_free(struct svc_xprt
*xprt
)
1242 struct svcxprt_rdma
*rdma
=
1243 container_of(xprt
, struct svcxprt_rdma
, sc_xprt
);
1244 INIT_WORK(&rdma
->sc_work
, __svc_rdma_free
);
1245 queue_work(svc_rdma_wq
, &rdma
->sc_work
);
1248 static int svc_rdma_has_wspace(struct svc_xprt
*xprt
)
1250 struct svcxprt_rdma
*rdma
=
1251 container_of(xprt
, struct svcxprt_rdma
, sc_xprt
);
1254 * If there are already waiters on the SQ,
1257 if (waitqueue_active(&rdma
->sc_send_wait
))
1260 /* Otherwise return true. */
1264 static int svc_rdma_secure_port(struct svc_rqst
*rqstp
)
1269 int svc_rdma_send(struct svcxprt_rdma
*xprt
, struct ib_send_wr
*wr
)
1271 struct ib_send_wr
*bad_wr
, *n_wr
;
1276 if (test_bit(XPT_CLOSE
, &xprt
->sc_xprt
.xpt_flags
))
1280 for (n_wr
= wr
->next
; n_wr
; n_wr
= n_wr
->next
)
1283 /* If the SQ is full, wait until an SQ entry is available */
1285 spin_lock_bh(&xprt
->sc_lock
);
1286 if (xprt
->sc_sq_depth
< atomic_read(&xprt
->sc_sq_count
) + wr_count
) {
1287 spin_unlock_bh(&xprt
->sc_lock
);
1288 atomic_inc(&rdma_stat_sq_starve
);
1290 /* Wait until SQ WR available if SQ still full */
1291 wait_event(xprt
->sc_send_wait
,
1292 atomic_read(&xprt
->sc_sq_count
) <
1294 if (test_bit(XPT_CLOSE
, &xprt
->sc_xprt
.xpt_flags
))
1298 /* Take a transport ref for each WR posted */
1299 for (i
= 0; i
< wr_count
; i
++)
1300 svc_xprt_get(&xprt
->sc_xprt
);
1302 /* Bump used SQ WR count and post */
1303 atomic_add(wr_count
, &xprt
->sc_sq_count
);
1304 ret
= ib_post_send(xprt
->sc_qp
, wr
, &bad_wr
);
1306 set_bit(XPT_CLOSE
, &xprt
->sc_xprt
.xpt_flags
);
1307 atomic_sub(wr_count
, &xprt
->sc_sq_count
);
1308 for (i
= 0; i
< wr_count
; i
++)
1309 svc_xprt_put(&xprt
->sc_xprt
);
1310 dprintk("svcrdma: failed to post SQ WR rc=%d, "
1311 "sc_sq_count=%d, sc_sq_depth=%d\n",
1312 ret
, atomic_read(&xprt
->sc_sq_count
),
1315 spin_unlock_bh(&xprt
->sc_lock
);
1317 wake_up(&xprt
->sc_send_wait
);