2 * Copyright (c) 2014-2017 Oracle. All rights reserved.
3 * Copyright (c) 2003-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.
44 * Encapsulates the major functions managing:
51 #include <linux/interrupt.h>
52 #include <linux/slab.h>
53 #include <linux/sunrpc/addr.h>
54 #include <linux/sunrpc/svc_rdma.h>
56 #include <asm-generic/barrier.h>
57 #include <asm/bitops.h>
59 #include <rdma/ib_cm.h>
61 #include "xprt_rdma.h"
67 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
68 # define RPCDBG_FACILITY RPCDBG_TRANS
74 static void rpcrdma_mrs_create(struct rpcrdma_xprt
*r_xprt
);
75 static void rpcrdma_mrs_destroy(struct rpcrdma_buffer
*buf
);
76 static void rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf
*rb
);
78 struct workqueue_struct
*rpcrdma_receive_wq __read_mostly
;
81 rpcrdma_alloc_wq(void)
83 struct workqueue_struct
*recv_wq
;
85 recv_wq
= alloc_workqueue("xprtrdma_receive",
86 WQ_MEM_RECLAIM
| WQ_HIGHPRI
,
91 rpcrdma_receive_wq
= recv_wq
;
96 rpcrdma_destroy_wq(void)
98 struct workqueue_struct
*wq
;
100 if (rpcrdma_receive_wq
) {
101 wq
= rpcrdma_receive_wq
;
102 rpcrdma_receive_wq
= NULL
;
103 destroy_workqueue(wq
);
108 rpcrdma_qp_async_error_upcall(struct ib_event
*event
, void *context
)
110 struct rpcrdma_ep
*ep
= context
;
111 struct rpcrdma_xprt
*r_xprt
= container_of(ep
, struct rpcrdma_xprt
,
114 trace_xprtrdma_qp_error(r_xprt
, event
);
115 pr_err("rpcrdma: %s on device %s ep %p\n",
116 ib_event_msg(event
->event
), event
->device
->name
, context
);
118 if (ep
->rep_connected
== 1) {
119 ep
->rep_connected
= -EIO
;
120 rpcrdma_conn_func(ep
);
121 wake_up_all(&ep
->rep_connect_wait
);
126 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
127 * @cq: completion queue (ignored)
132 rpcrdma_wc_send(struct ib_cq
*cq
, struct ib_wc
*wc
)
134 struct ib_cqe
*cqe
= wc
->wr_cqe
;
135 struct rpcrdma_sendctx
*sc
=
136 container_of(cqe
, struct rpcrdma_sendctx
, sc_cqe
);
138 /* WARNING: Only wr_cqe and status are reliable at this point */
139 trace_xprtrdma_wc_send(sc
, wc
);
140 if (wc
->status
!= IB_WC_SUCCESS
&& wc
->status
!= IB_WC_WR_FLUSH_ERR
)
141 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
142 ib_wc_status_msg(wc
->status
),
143 wc
->status
, wc
->vendor_err
);
145 rpcrdma_sendctx_put_locked(sc
);
149 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
150 * @cq: completion queue (ignored)
155 rpcrdma_wc_receive(struct ib_cq
*cq
, struct ib_wc
*wc
)
157 struct ib_cqe
*cqe
= wc
->wr_cqe
;
158 struct rpcrdma_rep
*rep
= container_of(cqe
, struct rpcrdma_rep
,
161 /* WARNING: Only wr_id and status are reliable at this point */
162 trace_xprtrdma_wc_receive(rep
, wc
);
163 if (wc
->status
!= IB_WC_SUCCESS
)
166 /* status == SUCCESS means all fields in wc are trustworthy */
167 rpcrdma_set_xdrlen(&rep
->rr_hdrbuf
, wc
->byte_len
);
168 rep
->rr_wc_flags
= wc
->wc_flags
;
169 rep
->rr_inv_rkey
= wc
->ex
.invalidate_rkey
;
171 ib_dma_sync_single_for_cpu(rdmab_device(rep
->rr_rdmabuf
),
172 rdmab_addr(rep
->rr_rdmabuf
),
173 wc
->byte_len
, DMA_FROM_DEVICE
);
176 rpcrdma_reply_handler(rep
);
180 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
181 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
182 ib_wc_status_msg(wc
->status
),
183 wc
->status
, wc
->vendor_err
);
184 rpcrdma_set_xdrlen(&rep
->rr_hdrbuf
, 0);
189 rpcrdma_update_connect_private(struct rpcrdma_xprt
*r_xprt
,
190 struct rdma_conn_param
*param
)
192 struct rpcrdma_create_data_internal
*cdata
= &r_xprt
->rx_data
;
193 const struct rpcrdma_connect_private
*pmsg
= param
->private_data
;
194 unsigned int rsize
, wsize
;
196 /* Default settings for RPC-over-RDMA Version One */
197 r_xprt
->rx_ia
.ri_implicit_roundup
= xprt_rdma_pad_optimize
;
198 rsize
= RPCRDMA_V1_DEF_INLINE_SIZE
;
199 wsize
= RPCRDMA_V1_DEF_INLINE_SIZE
;
202 pmsg
->cp_magic
== rpcrdma_cmp_magic
&&
203 pmsg
->cp_version
== RPCRDMA_CMP_VERSION
) {
204 r_xprt
->rx_ia
.ri_implicit_roundup
= true;
205 rsize
= rpcrdma_decode_buffer_size(pmsg
->cp_send_size
);
206 wsize
= rpcrdma_decode_buffer_size(pmsg
->cp_recv_size
);
209 if (rsize
< cdata
->inline_rsize
)
210 cdata
->inline_rsize
= rsize
;
211 if (wsize
< cdata
->inline_wsize
)
212 cdata
->inline_wsize
= wsize
;
213 dprintk("RPC: %s: max send %u, max recv %u\n",
214 __func__
, cdata
->inline_wsize
, cdata
->inline_rsize
);
215 rpcrdma_set_max_header_sizes(r_xprt
);
219 rpcrdma_conn_upcall(struct rdma_cm_id
*id
, struct rdma_cm_event
*event
)
221 struct rpcrdma_xprt
*xprt
= id
->context
;
222 struct rpcrdma_ia
*ia
= &xprt
->rx_ia
;
223 struct rpcrdma_ep
*ep
= &xprt
->rx_ep
;
226 trace_xprtrdma_conn_upcall(xprt
, event
);
227 switch (event
->event
) {
228 case RDMA_CM_EVENT_ADDR_RESOLVED
:
229 case RDMA_CM_EVENT_ROUTE_RESOLVED
:
231 complete(&ia
->ri_done
);
233 case RDMA_CM_EVENT_ADDR_ERROR
:
234 ia
->ri_async_rc
= -EHOSTUNREACH
;
235 complete(&ia
->ri_done
);
237 case RDMA_CM_EVENT_ROUTE_ERROR
:
238 ia
->ri_async_rc
= -ENETUNREACH
;
239 complete(&ia
->ri_done
);
241 case RDMA_CM_EVENT_DEVICE_REMOVAL
:
242 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
243 pr_info("rpcrdma: removing device %s for %s:%s\n",
245 rpcrdma_addrstr(xprt
), rpcrdma_portstr(xprt
));
247 set_bit(RPCRDMA_IAF_REMOVING
, &ia
->ri_flags
);
248 ep
->rep_connected
= -ENODEV
;
249 xprt_force_disconnect(&xprt
->rx_xprt
);
250 wait_for_completion(&ia
->ri_remove_done
);
254 ia
->ri_device
= NULL
;
255 /* Return 1 to ensure the core destroys the id. */
257 case RDMA_CM_EVENT_ESTABLISHED
:
259 rpcrdma_update_connect_private(xprt
, &event
->param
.conn
);
261 case RDMA_CM_EVENT_CONNECT_ERROR
:
262 connstate
= -ENOTCONN
;
264 case RDMA_CM_EVENT_UNREACHABLE
:
265 connstate
= -ENETDOWN
;
267 case RDMA_CM_EVENT_REJECTED
:
268 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
269 rpcrdma_addrstr(xprt
), rpcrdma_portstr(xprt
),
270 rdma_reject_msg(id
, event
->status
));
271 connstate
= -ECONNREFUSED
;
272 if (event
->status
== IB_CM_REJ_STALE_CONN
)
275 case RDMA_CM_EVENT_DISCONNECTED
:
276 connstate
= -ECONNABORTED
;
278 xprt
->rx_buf
.rb_credits
= 1;
279 ep
->rep_connected
= connstate
;
280 rpcrdma_conn_func(ep
);
281 wake_up_all(&ep
->rep_connect_wait
);
284 dprintk("RPC: %s: %s:%s on %s/%s (ep 0x%p): %s\n",
286 rpcrdma_addrstr(xprt
), rpcrdma_portstr(xprt
),
287 ia
->ri_device
->name
, ia
->ri_ops
->ro_displayname
,
288 ep
, rdma_event_msg(event
->event
));
295 static struct rdma_cm_id
*
296 rpcrdma_create_id(struct rpcrdma_xprt
*xprt
, struct rpcrdma_ia
*ia
)
298 unsigned long wtimeout
= msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT
) + 1;
299 struct rdma_cm_id
*id
;
302 trace_xprtrdma_conn_start(xprt
);
304 init_completion(&ia
->ri_done
);
305 init_completion(&ia
->ri_remove_done
);
307 id
= rdma_create_id(&init_net
, rpcrdma_conn_upcall
, xprt
, RDMA_PS_TCP
,
311 dprintk("RPC: %s: rdma_create_id() failed %i\n",
316 ia
->ri_async_rc
= -ETIMEDOUT
;
317 rc
= rdma_resolve_addr(id
, NULL
,
318 (struct sockaddr
*)&xprt
->rx_xprt
.addr
,
319 RDMA_RESOLVE_TIMEOUT
);
321 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
325 rc
= wait_for_completion_interruptible_timeout(&ia
->ri_done
, wtimeout
);
327 trace_xprtrdma_conn_tout(xprt
);
331 rc
= ia
->ri_async_rc
;
335 ia
->ri_async_rc
= -ETIMEDOUT
;
336 rc
= rdma_resolve_route(id
, RDMA_RESOLVE_TIMEOUT
);
338 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
342 rc
= wait_for_completion_interruptible_timeout(&ia
->ri_done
, wtimeout
);
344 trace_xprtrdma_conn_tout(xprt
);
347 rc
= ia
->ri_async_rc
;
359 * Exported functions.
363 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
364 * @xprt: transport with IA to (re)initialize
366 * Returns 0 on success, negative errno if an appropriate
367 * Interface Adapter could not be found and opened.
370 rpcrdma_ia_open(struct rpcrdma_xprt
*xprt
)
372 struct rpcrdma_ia
*ia
= &xprt
->rx_ia
;
375 ia
->ri_id
= rpcrdma_create_id(xprt
, ia
);
376 if (IS_ERR(ia
->ri_id
)) {
377 rc
= PTR_ERR(ia
->ri_id
);
380 ia
->ri_device
= ia
->ri_id
->device
;
382 ia
->ri_pd
= ib_alloc_pd(ia
->ri_device
, 0);
383 if (IS_ERR(ia
->ri_pd
)) {
384 rc
= PTR_ERR(ia
->ri_pd
);
385 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc
);
389 switch (xprt_rdma_memreg_strategy
) {
391 if (frwr_is_supported(ia
)) {
392 ia
->ri_ops
= &rpcrdma_frwr_memreg_ops
;
396 case RPCRDMA_MTHCAFMR
:
397 if (fmr_is_supported(ia
)) {
398 ia
->ri_ops
= &rpcrdma_fmr_memreg_ops
;
403 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
404 ia
->ri_device
->name
, xprt_rdma_memreg_strategy
);
412 rpcrdma_ia_close(ia
);
417 * rpcrdma_ia_remove - Handle device driver unload
418 * @ia: interface adapter being removed
420 * Divest transport H/W resources associated with this adapter,
421 * but allow it to be restored later.
424 rpcrdma_ia_remove(struct rpcrdma_ia
*ia
)
426 struct rpcrdma_xprt
*r_xprt
= container_of(ia
, struct rpcrdma_xprt
,
428 struct rpcrdma_ep
*ep
= &r_xprt
->rx_ep
;
429 struct rpcrdma_buffer
*buf
= &r_xprt
->rx_buf
;
430 struct rpcrdma_req
*req
;
431 struct rpcrdma_rep
*rep
;
433 cancel_delayed_work_sync(&buf
->rb_refresh_worker
);
435 /* This is similar to rpcrdma_ep_destroy, but:
436 * - Don't cancel the connect worker.
437 * - Don't call rpcrdma_ep_disconnect, which waits
438 * for another conn upcall, which will deadlock.
439 * - rdma_disconnect is unneeded, the underlying
440 * connection is already gone.
443 ib_drain_qp(ia
->ri_id
->qp
);
444 rdma_destroy_qp(ia
->ri_id
);
445 ia
->ri_id
->qp
= NULL
;
447 ib_free_cq(ep
->rep_attr
.recv_cq
);
448 ib_free_cq(ep
->rep_attr
.send_cq
);
450 /* The ULP is responsible for ensuring all DMA
451 * mappings and MRs are gone.
453 list_for_each_entry(rep
, &buf
->rb_recv_bufs
, rr_list
)
454 rpcrdma_dma_unmap_regbuf(rep
->rr_rdmabuf
);
455 list_for_each_entry(req
, &buf
->rb_allreqs
, rl_all
) {
456 rpcrdma_dma_unmap_regbuf(req
->rl_rdmabuf
);
457 rpcrdma_dma_unmap_regbuf(req
->rl_sendbuf
);
458 rpcrdma_dma_unmap_regbuf(req
->rl_recvbuf
);
460 rpcrdma_mrs_destroy(buf
);
462 /* Allow waiters to continue */
463 complete(&ia
->ri_remove_done
);
465 trace_xprtrdma_remove(r_xprt
);
469 * rpcrdma_ia_close - Clean up/close an IA.
470 * @ia: interface adapter to close
474 rpcrdma_ia_close(struct rpcrdma_ia
*ia
)
476 if (ia
->ri_id
!= NULL
&& !IS_ERR(ia
->ri_id
)) {
478 rdma_destroy_qp(ia
->ri_id
);
479 rdma_destroy_id(ia
->ri_id
);
482 ia
->ri_device
= NULL
;
484 /* If the pd is still busy, xprtrdma missed freeing a resource */
485 if (ia
->ri_pd
&& !IS_ERR(ia
->ri_pd
))
486 ib_dealloc_pd(ia
->ri_pd
);
491 * Create unconnected endpoint.
494 rpcrdma_ep_create(struct rpcrdma_ep
*ep
, struct rpcrdma_ia
*ia
,
495 struct rpcrdma_create_data_internal
*cdata
)
497 struct rpcrdma_connect_private
*pmsg
= &ep
->rep_cm_private
;
498 unsigned int max_qp_wr
, max_sge
;
499 struct ib_cq
*sendcq
, *recvcq
;
502 max_sge
= min_t(unsigned int, ia
->ri_device
->attrs
.max_sge
,
503 RPCRDMA_MAX_SEND_SGES
);
504 if (max_sge
< RPCRDMA_MIN_SEND_SGES
) {
505 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge
);
508 ia
->ri_max_send_sges
= max_sge
;
510 if (ia
->ri_device
->attrs
.max_qp_wr
<= RPCRDMA_BACKWARD_WRS
) {
511 dprintk("RPC: %s: insufficient wqe's available\n",
515 max_qp_wr
= ia
->ri_device
->attrs
.max_qp_wr
- RPCRDMA_BACKWARD_WRS
- 1;
517 /* check provider's send/recv wr limits */
518 if (cdata
->max_requests
> max_qp_wr
)
519 cdata
->max_requests
= max_qp_wr
;
521 ep
->rep_attr
.event_handler
= rpcrdma_qp_async_error_upcall
;
522 ep
->rep_attr
.qp_context
= ep
;
523 ep
->rep_attr
.srq
= NULL
;
524 ep
->rep_attr
.cap
.max_send_wr
= cdata
->max_requests
;
525 ep
->rep_attr
.cap
.max_send_wr
+= RPCRDMA_BACKWARD_WRS
;
526 ep
->rep_attr
.cap
.max_send_wr
+= 1; /* drain cqe */
527 rc
= ia
->ri_ops
->ro_open(ia
, ep
, cdata
);
530 ep
->rep_attr
.cap
.max_recv_wr
= cdata
->max_requests
;
531 ep
->rep_attr
.cap
.max_recv_wr
+= RPCRDMA_BACKWARD_WRS
;
532 ep
->rep_attr
.cap
.max_recv_wr
+= 1; /* drain cqe */
533 ep
->rep_attr
.cap
.max_send_sge
= max_sge
;
534 ep
->rep_attr
.cap
.max_recv_sge
= 1;
535 ep
->rep_attr
.cap
.max_inline_data
= 0;
536 ep
->rep_attr
.sq_sig_type
= IB_SIGNAL_REQ_WR
;
537 ep
->rep_attr
.qp_type
= IB_QPT_RC
;
538 ep
->rep_attr
.port_num
= ~0;
540 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
541 "iovs: send %d recv %d\n",
543 ep
->rep_attr
.cap
.max_send_wr
,
544 ep
->rep_attr
.cap
.max_recv_wr
,
545 ep
->rep_attr
.cap
.max_send_sge
,
546 ep
->rep_attr
.cap
.max_recv_sge
);
548 /* set trigger for requesting send completion */
549 ep
->rep_send_batch
= min_t(unsigned int, RPCRDMA_MAX_SEND_BATCH
,
550 cdata
->max_requests
>> 2);
551 ep
->rep_send_count
= ep
->rep_send_batch
;
552 init_waitqueue_head(&ep
->rep_connect_wait
);
553 INIT_DELAYED_WORK(&ep
->rep_connect_worker
, rpcrdma_connect_worker
);
555 sendcq
= ib_alloc_cq(ia
->ri_device
, NULL
,
556 ep
->rep_attr
.cap
.max_send_wr
+ 1,
557 1, IB_POLL_WORKQUEUE
);
558 if (IS_ERR(sendcq
)) {
559 rc
= PTR_ERR(sendcq
);
560 dprintk("RPC: %s: failed to create send CQ: %i\n",
565 recvcq
= ib_alloc_cq(ia
->ri_device
, NULL
,
566 ep
->rep_attr
.cap
.max_recv_wr
+ 1,
567 0, IB_POLL_WORKQUEUE
);
568 if (IS_ERR(recvcq
)) {
569 rc
= PTR_ERR(recvcq
);
570 dprintk("RPC: %s: failed to create recv CQ: %i\n",
575 ep
->rep_attr
.send_cq
= sendcq
;
576 ep
->rep_attr
.recv_cq
= recvcq
;
578 /* Initialize cma parameters */
579 memset(&ep
->rep_remote_cma
, 0, sizeof(ep
->rep_remote_cma
));
581 /* Prepare RDMA-CM private message */
582 pmsg
->cp_magic
= rpcrdma_cmp_magic
;
583 pmsg
->cp_version
= RPCRDMA_CMP_VERSION
;
584 pmsg
->cp_flags
|= ia
->ri_ops
->ro_send_w_inv_ok
;
585 pmsg
->cp_send_size
= rpcrdma_encode_buffer_size(cdata
->inline_wsize
);
586 pmsg
->cp_recv_size
= rpcrdma_encode_buffer_size(cdata
->inline_rsize
);
587 ep
->rep_remote_cma
.private_data
= pmsg
;
588 ep
->rep_remote_cma
.private_data_len
= sizeof(*pmsg
);
590 /* Client offers RDMA Read but does not initiate */
591 ep
->rep_remote_cma
.initiator_depth
= 0;
592 if (ia
->ri_device
->attrs
.max_qp_rd_atom
> 32) /* arbitrary but <= 255 */
593 ep
->rep_remote_cma
.responder_resources
= 32;
595 ep
->rep_remote_cma
.responder_resources
=
596 ia
->ri_device
->attrs
.max_qp_rd_atom
;
598 /* Limit transport retries so client can detect server
599 * GID changes quickly. RPC layer handles re-establishing
600 * transport connection and retransmission.
602 ep
->rep_remote_cma
.retry_count
= 6;
604 /* RPC-over-RDMA handles its own flow control. In addition,
605 * make all RNR NAKs visible so we know that RPC-over-RDMA
606 * flow control is working correctly (no NAKs should be seen).
608 ep
->rep_remote_cma
.flow_control
= 0;
609 ep
->rep_remote_cma
.rnr_retry_count
= 0;
622 * Disconnect and destroy endpoint. After this, the only
623 * valid operations on the ep are to free it (if dynamically
624 * allocated) or re-create it.
627 rpcrdma_ep_destroy(struct rpcrdma_ep
*ep
, struct rpcrdma_ia
*ia
)
629 cancel_delayed_work_sync(&ep
->rep_connect_worker
);
632 rpcrdma_ep_disconnect(ep
, ia
);
633 rdma_destroy_qp(ia
->ri_id
);
634 ia
->ri_id
->qp
= NULL
;
637 ib_free_cq(ep
->rep_attr
.recv_cq
);
638 ib_free_cq(ep
->rep_attr
.send_cq
);
641 /* Re-establish a connection after a device removal event.
642 * Unlike a normal reconnection, a fresh PD and a new set
643 * of MRs and buffers is needed.
646 rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt
*r_xprt
,
647 struct rpcrdma_ep
*ep
, struct rpcrdma_ia
*ia
)
651 trace_xprtrdma_reinsert(r_xprt
);
654 if (rpcrdma_ia_open(r_xprt
))
658 err
= rpcrdma_ep_create(ep
, ia
, &r_xprt
->rx_data
);
660 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err
);
665 err
= rdma_create_qp(ia
->ri_id
, ia
->ri_pd
, &ep
->rep_attr
);
667 pr_err("rpcrdma: rdma_create_qp returned %d\n", err
);
671 rpcrdma_mrs_create(r_xprt
);
675 rpcrdma_ep_destroy(ep
, ia
);
677 rpcrdma_ia_close(ia
);
683 rpcrdma_ep_reconnect(struct rpcrdma_xprt
*r_xprt
, struct rpcrdma_ep
*ep
,
684 struct rpcrdma_ia
*ia
)
686 struct rdma_cm_id
*id
, *old
;
689 trace_xprtrdma_reconnect(r_xprt
);
691 rpcrdma_ep_disconnect(ep
, ia
);
694 id
= rpcrdma_create_id(r_xprt
, ia
);
698 /* As long as the new ID points to the same device as the
699 * old ID, we can reuse the transport's existing PD and all
700 * previously allocated MRs. Also, the same device means
701 * the transport's previous DMA mappings are still valid.
703 * This is a sanity check only. There should be no way these
704 * point to two different devices here.
708 if (ia
->ri_device
!= id
->device
) {
709 pr_err("rpcrdma: can't reconnect on different device!\n");
713 err
= rdma_create_qp(id
, ia
->ri_pd
, &ep
->rep_attr
);
715 dprintk("RPC: %s: rdma_create_qp returned %d\n",
720 /* Atomically replace the transport's ID and QP. */
724 rdma_destroy_qp(old
);
727 rdma_destroy_id(old
);
733 * Connect unconnected endpoint.
736 rpcrdma_ep_connect(struct rpcrdma_ep
*ep
, struct rpcrdma_ia
*ia
)
738 struct rpcrdma_xprt
*r_xprt
= container_of(ia
, struct rpcrdma_xprt
,
744 switch (ep
->rep_connected
) {
746 dprintk("RPC: %s: connecting...\n", __func__
);
747 rc
= rdma_create_qp(ia
->ri_id
, ia
->ri_pd
, &ep
->rep_attr
);
749 dprintk("RPC: %s: rdma_create_qp failed %i\n",
756 rc
= rpcrdma_ep_recreate_xprt(r_xprt
, ep
, ia
);
761 rc
= rpcrdma_ep_reconnect(r_xprt
, ep
, ia
);
766 ep
->rep_connected
= 0;
768 rc
= rdma_connect(ia
->ri_id
, &ep
->rep_remote_cma
);
770 dprintk("RPC: %s: rdma_connect() failed with %i\n",
775 wait_event_interruptible(ep
->rep_connect_wait
, ep
->rep_connected
!= 0);
776 if (ep
->rep_connected
<= 0) {
777 if (ep
->rep_connected
== -EAGAIN
)
779 rc
= ep
->rep_connected
;
783 dprintk("RPC: %s: connected\n", __func__
);
784 extras
= r_xprt
->rx_buf
.rb_bc_srv_max_requests
;
786 rpcrdma_ep_post_extra_recv(r_xprt
, extras
);
790 ep
->rep_connected
= rc
;
797 * rpcrdma_ep_disconnect
799 * This is separate from destroy to facilitate the ability
800 * to reconnect without recreating the endpoint.
802 * This call is not reentrant, and must not be made in parallel
803 * on the same endpoint.
806 rpcrdma_ep_disconnect(struct rpcrdma_ep
*ep
, struct rpcrdma_ia
*ia
)
810 rc
= rdma_disconnect(ia
->ri_id
);
812 /* returns without wait if not connected */
813 wait_event_interruptible(ep
->rep_connect_wait
,
814 ep
->rep_connected
!= 1);
816 ep
->rep_connected
= rc
;
817 trace_xprtrdma_disconnect(container_of(ep
, struct rpcrdma_xprt
,
820 ib_drain_qp(ia
->ri_id
->qp
);
823 /* Fixed-size circular FIFO queue. This implementation is wait-free and
826 * Consumer is the code path that posts Sends. This path dequeues a
827 * sendctx for use by a Send operation. Multiple consumer threads
828 * are serialized by the RPC transport lock, which allows only one
829 * ->send_request call at a time.
831 * Producer is the code path that handles Send completions. This path
832 * enqueues a sendctx that has been completed. Multiple producer
833 * threads are serialized by the ib_poll_cq() function.
836 /* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
837 * queue activity, and ib_drain_qp has flushed all remaining Send
840 static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer
*buf
)
844 for (i
= 0; i
<= buf
->rb_sc_last
; i
++)
845 kfree(buf
->rb_sc_ctxs
[i
]);
846 kfree(buf
->rb_sc_ctxs
);
849 static struct rpcrdma_sendctx
*rpcrdma_sendctx_create(struct rpcrdma_ia
*ia
)
851 struct rpcrdma_sendctx
*sc
;
853 sc
= kzalloc(sizeof(*sc
) +
854 ia
->ri_max_send_sges
* sizeof(struct ib_sge
),
859 sc
->sc_wr
.wr_cqe
= &sc
->sc_cqe
;
860 sc
->sc_wr
.sg_list
= sc
->sc_sges
;
861 sc
->sc_wr
.opcode
= IB_WR_SEND
;
862 sc
->sc_cqe
.done
= rpcrdma_wc_send
;
866 static int rpcrdma_sendctxs_create(struct rpcrdma_xprt
*r_xprt
)
868 struct rpcrdma_buffer
*buf
= &r_xprt
->rx_buf
;
869 struct rpcrdma_sendctx
*sc
;
872 /* Maximum number of concurrent outstanding Send WRs. Capping
873 * the circular queue size stops Send Queue overflow by causing
874 * the ->send_request call to fail temporarily before too many
877 i
= buf
->rb_max_requests
+ RPCRDMA_MAX_BC_REQUESTS
;
878 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__
, i
);
879 buf
->rb_sc_ctxs
= kcalloc(i
, sizeof(sc
), GFP_KERNEL
);
880 if (!buf
->rb_sc_ctxs
)
883 buf
->rb_sc_last
= i
- 1;
884 for (i
= 0; i
<= buf
->rb_sc_last
; i
++) {
885 sc
= rpcrdma_sendctx_create(&r_xprt
->rx_ia
);
889 sc
->sc_xprt
= r_xprt
;
890 buf
->rb_sc_ctxs
[i
] = sc
;
896 rpcrdma_sendctxs_destroy(buf
);
900 /* The sendctx queue is not guaranteed to have a size that is a
901 * power of two, thus the helpers in circ_buf.h cannot be used.
902 * The other option is to use modulus (%), which can be expensive.
904 static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer
*buf
,
907 return likely(item
< buf
->rb_sc_last
) ? item
+ 1 : 0;
911 * rpcrdma_sendctx_get_locked - Acquire a send context
912 * @buf: transport buffers from which to acquire an unused context
914 * Returns pointer to a free send completion context; or NULL if
915 * the queue is empty.
917 * Usage: Called to acquire an SGE array before preparing a Send WR.
919 * The caller serializes calls to this function (per rpcrdma_buffer),
920 * and provides an effective memory barrier that flushes the new value
923 struct rpcrdma_sendctx
*rpcrdma_sendctx_get_locked(struct rpcrdma_buffer
*buf
)
925 struct rpcrdma_xprt
*r_xprt
;
926 struct rpcrdma_sendctx
*sc
;
927 unsigned long next_head
;
929 next_head
= rpcrdma_sendctx_next(buf
, buf
->rb_sc_head
);
931 if (next_head
== READ_ONCE(buf
->rb_sc_tail
))
934 /* ORDER: item must be accessed _before_ head is updated */
935 sc
= buf
->rb_sc_ctxs
[next_head
];
937 /* Releasing the lock in the caller acts as a memory
938 * barrier that flushes rb_sc_head.
940 buf
->rb_sc_head
= next_head
;
945 /* The queue is "empty" if there have not been enough Send
946 * completions recently. This is a sign the Send Queue is
947 * backing up. Cause the caller to pause and try again.
949 dprintk("RPC: %s: empty sendctx queue\n", __func__
);
950 r_xprt
= container_of(buf
, struct rpcrdma_xprt
, rx_buf
);
951 r_xprt
->rx_stats
.empty_sendctx_q
++;
956 * rpcrdma_sendctx_put_locked - Release a send context
957 * @sc: send context to release
959 * Usage: Called from Send completion to return a sendctxt
962 * The caller serializes calls to this function (per rpcrdma_buffer).
964 void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx
*sc
)
966 struct rpcrdma_buffer
*buf
= &sc
->sc_xprt
->rx_buf
;
967 unsigned long next_tail
;
969 /* Unmap SGEs of previously completed by unsignaled
970 * Sends by walking up the queue until @sc is found.
972 next_tail
= buf
->rb_sc_tail
;
974 next_tail
= rpcrdma_sendctx_next(buf
, next_tail
);
976 /* ORDER: item must be accessed _before_ tail is updated */
977 rpcrdma_unmap_sendctx(buf
->rb_sc_ctxs
[next_tail
]);
979 } while (buf
->rb_sc_ctxs
[next_tail
] != sc
);
981 /* Paired with READ_ONCE */
982 smp_store_release(&buf
->rb_sc_tail
, next_tail
);
986 rpcrdma_mr_recovery_worker(struct work_struct
*work
)
988 struct rpcrdma_buffer
*buf
= container_of(work
, struct rpcrdma_buffer
,
989 rb_recovery_worker
.work
);
990 struct rpcrdma_mr
*mr
;
992 spin_lock(&buf
->rb_recovery_lock
);
993 while (!list_empty(&buf
->rb_stale_mrs
)) {
994 mr
= rpcrdma_mr_pop(&buf
->rb_stale_mrs
);
995 spin_unlock(&buf
->rb_recovery_lock
);
997 trace_xprtrdma_recover_mr(mr
);
998 mr
->mr_xprt
->rx_ia
.ri_ops
->ro_recover_mr(mr
);
1000 spin_lock(&buf
->rb_recovery_lock
);
1002 spin_unlock(&buf
->rb_recovery_lock
);
1006 rpcrdma_mr_defer_recovery(struct rpcrdma_mr
*mr
)
1008 struct rpcrdma_xprt
*r_xprt
= mr
->mr_xprt
;
1009 struct rpcrdma_buffer
*buf
= &r_xprt
->rx_buf
;
1011 spin_lock(&buf
->rb_recovery_lock
);
1012 rpcrdma_mr_push(mr
, &buf
->rb_stale_mrs
);
1013 spin_unlock(&buf
->rb_recovery_lock
);
1015 schedule_delayed_work(&buf
->rb_recovery_worker
, 0);
1019 rpcrdma_mrs_create(struct rpcrdma_xprt
*r_xprt
)
1021 struct rpcrdma_buffer
*buf
= &r_xprt
->rx_buf
;
1022 struct rpcrdma_ia
*ia
= &r_xprt
->rx_ia
;
1027 for (count
= 0; count
< 32; count
++) {
1028 struct rpcrdma_mr
*mr
;
1031 mr
= kzalloc(sizeof(*mr
), GFP_KERNEL
);
1035 rc
= ia
->ri_ops
->ro_init_mr(ia
, mr
);
1041 mr
->mr_xprt
= r_xprt
;
1043 list_add(&mr
->mr_list
, &free
);
1044 list_add(&mr
->mr_all
, &all
);
1047 spin_lock(&buf
->rb_mrlock
);
1048 list_splice(&free
, &buf
->rb_mrs
);
1049 list_splice(&all
, &buf
->rb_all
);
1050 r_xprt
->rx_stats
.mrs_allocated
+= count
;
1051 spin_unlock(&buf
->rb_mrlock
);
1053 trace_xprtrdma_createmrs(r_xprt
, count
);
1057 rpcrdma_mr_refresh_worker(struct work_struct
*work
)
1059 struct rpcrdma_buffer
*buf
= container_of(work
, struct rpcrdma_buffer
,
1060 rb_refresh_worker
.work
);
1061 struct rpcrdma_xprt
*r_xprt
= container_of(buf
, struct rpcrdma_xprt
,
1064 rpcrdma_mrs_create(r_xprt
);
1067 struct rpcrdma_req
*
1068 rpcrdma_create_req(struct rpcrdma_xprt
*r_xprt
)
1070 struct rpcrdma_buffer
*buffer
= &r_xprt
->rx_buf
;
1071 struct rpcrdma_req
*req
;
1073 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
1075 return ERR_PTR(-ENOMEM
);
1077 spin_lock(&buffer
->rb_reqslock
);
1078 list_add(&req
->rl_all
, &buffer
->rb_allreqs
);
1079 spin_unlock(&buffer
->rb_reqslock
);
1080 req
->rl_buffer
= &r_xprt
->rx_buf
;
1081 INIT_LIST_HEAD(&req
->rl_registered
);
1086 * rpcrdma_create_rep - Allocate an rpcrdma_rep object
1087 * @r_xprt: controlling transport
1089 * Returns 0 on success or a negative errno on failure.
1092 rpcrdma_create_rep(struct rpcrdma_xprt
*r_xprt
)
1094 struct rpcrdma_create_data_internal
*cdata
= &r_xprt
->rx_data
;
1095 struct rpcrdma_buffer
*buf
= &r_xprt
->rx_buf
;
1096 struct rpcrdma_rep
*rep
;
1100 rep
= kzalloc(sizeof(*rep
), GFP_KERNEL
);
1104 rep
->rr_rdmabuf
= rpcrdma_alloc_regbuf(cdata
->inline_rsize
,
1105 DMA_FROM_DEVICE
, GFP_KERNEL
);
1106 if (IS_ERR(rep
->rr_rdmabuf
)) {
1107 rc
= PTR_ERR(rep
->rr_rdmabuf
);
1110 xdr_buf_init(&rep
->rr_hdrbuf
, rep
->rr_rdmabuf
->rg_base
,
1111 rdmab_length(rep
->rr_rdmabuf
));
1113 rep
->rr_cqe
.done
= rpcrdma_wc_receive
;
1114 rep
->rr_rxprt
= r_xprt
;
1115 INIT_WORK(&rep
->rr_work
, rpcrdma_deferred_completion
);
1116 rep
->rr_recv_wr
.next
= NULL
;
1117 rep
->rr_recv_wr
.wr_cqe
= &rep
->rr_cqe
;
1118 rep
->rr_recv_wr
.sg_list
= &rep
->rr_rdmabuf
->rg_iov
;
1119 rep
->rr_recv_wr
.num_sge
= 1;
1121 spin_lock(&buf
->rb_lock
);
1122 list_add(&rep
->rr_list
, &buf
->rb_recv_bufs
);
1123 spin_unlock(&buf
->rb_lock
);
1129 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1135 rpcrdma_buffer_create(struct rpcrdma_xprt
*r_xprt
)
1137 struct rpcrdma_buffer
*buf
= &r_xprt
->rx_buf
;
1140 buf
->rb_max_requests
= r_xprt
->rx_data
.max_requests
;
1141 buf
->rb_bc_srv_max_requests
= 0;
1142 spin_lock_init(&buf
->rb_mrlock
);
1143 spin_lock_init(&buf
->rb_lock
);
1144 spin_lock_init(&buf
->rb_recovery_lock
);
1145 INIT_LIST_HEAD(&buf
->rb_mrs
);
1146 INIT_LIST_HEAD(&buf
->rb_all
);
1147 INIT_LIST_HEAD(&buf
->rb_stale_mrs
);
1148 INIT_DELAYED_WORK(&buf
->rb_refresh_worker
,
1149 rpcrdma_mr_refresh_worker
);
1150 INIT_DELAYED_WORK(&buf
->rb_recovery_worker
,
1151 rpcrdma_mr_recovery_worker
);
1153 rpcrdma_mrs_create(r_xprt
);
1155 INIT_LIST_HEAD(&buf
->rb_send_bufs
);
1156 INIT_LIST_HEAD(&buf
->rb_allreqs
);
1157 spin_lock_init(&buf
->rb_reqslock
);
1158 for (i
= 0; i
< buf
->rb_max_requests
; i
++) {
1159 struct rpcrdma_req
*req
;
1161 req
= rpcrdma_create_req(r_xprt
);
1163 dprintk("RPC: %s: request buffer %d alloc"
1164 " failed\n", __func__
, i
);
1168 list_add(&req
->rl_list
, &buf
->rb_send_bufs
);
1171 INIT_LIST_HEAD(&buf
->rb_recv_bufs
);
1172 for (i
= 0; i
<= buf
->rb_max_requests
; i
++) {
1173 rc
= rpcrdma_create_rep(r_xprt
);
1178 rc
= rpcrdma_sendctxs_create(r_xprt
);
1184 rpcrdma_buffer_destroy(buf
);
1188 static struct rpcrdma_req
*
1189 rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer
*buf
)
1191 struct rpcrdma_req
*req
;
1193 req
= list_first_entry(&buf
->rb_send_bufs
,
1194 struct rpcrdma_req
, rl_list
);
1195 list_del_init(&req
->rl_list
);
1199 static struct rpcrdma_rep
*
1200 rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer
*buf
)
1202 struct rpcrdma_rep
*rep
;
1204 rep
= list_first_entry(&buf
->rb_recv_bufs
,
1205 struct rpcrdma_rep
, rr_list
);
1206 list_del(&rep
->rr_list
);
1211 rpcrdma_destroy_rep(struct rpcrdma_rep
*rep
)
1213 rpcrdma_free_regbuf(rep
->rr_rdmabuf
);
1218 rpcrdma_destroy_req(struct rpcrdma_req
*req
)
1220 rpcrdma_free_regbuf(req
->rl_recvbuf
);
1221 rpcrdma_free_regbuf(req
->rl_sendbuf
);
1222 rpcrdma_free_regbuf(req
->rl_rdmabuf
);
1227 rpcrdma_mrs_destroy(struct rpcrdma_buffer
*buf
)
1229 struct rpcrdma_xprt
*r_xprt
= container_of(buf
, struct rpcrdma_xprt
,
1231 struct rpcrdma_ia
*ia
= rdmab_to_ia(buf
);
1232 struct rpcrdma_mr
*mr
;
1236 spin_lock(&buf
->rb_mrlock
);
1237 while (!list_empty(&buf
->rb_all
)) {
1238 mr
= list_entry(buf
->rb_all
.next
, struct rpcrdma_mr
, mr_all
);
1239 list_del(&mr
->mr_all
);
1241 spin_unlock(&buf
->rb_mrlock
);
1242 ia
->ri_ops
->ro_release_mr(mr
);
1244 spin_lock(&buf
->rb_mrlock
);
1246 spin_unlock(&buf
->rb_mrlock
);
1247 r_xprt
->rx_stats
.mrs_allocated
= 0;
1249 dprintk("RPC: %s: released %u MRs\n", __func__
, count
);
1253 rpcrdma_buffer_destroy(struct rpcrdma_buffer
*buf
)
1255 cancel_delayed_work_sync(&buf
->rb_recovery_worker
);
1256 cancel_delayed_work_sync(&buf
->rb_refresh_worker
);
1258 rpcrdma_sendctxs_destroy(buf
);
1260 while (!list_empty(&buf
->rb_recv_bufs
)) {
1261 struct rpcrdma_rep
*rep
;
1263 rep
= rpcrdma_buffer_get_rep_locked(buf
);
1264 rpcrdma_destroy_rep(rep
);
1266 buf
->rb_send_count
= 0;
1268 spin_lock(&buf
->rb_reqslock
);
1269 while (!list_empty(&buf
->rb_allreqs
)) {
1270 struct rpcrdma_req
*req
;
1272 req
= list_first_entry(&buf
->rb_allreqs
,
1273 struct rpcrdma_req
, rl_all
);
1274 list_del(&req
->rl_all
);
1276 spin_unlock(&buf
->rb_reqslock
);
1277 rpcrdma_destroy_req(req
);
1278 spin_lock(&buf
->rb_reqslock
);
1280 spin_unlock(&buf
->rb_reqslock
);
1281 buf
->rb_recv_count
= 0;
1283 rpcrdma_mrs_destroy(buf
);
1287 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1288 * @r_xprt: controlling transport
1290 * Returns an initialized rpcrdma_mr or NULL if no free
1291 * rpcrdma_mr objects are available.
1294 rpcrdma_mr_get(struct rpcrdma_xprt
*r_xprt
)
1296 struct rpcrdma_buffer
*buf
= &r_xprt
->rx_buf
;
1297 struct rpcrdma_mr
*mr
= NULL
;
1299 spin_lock(&buf
->rb_mrlock
);
1300 if (!list_empty(&buf
->rb_mrs
))
1301 mr
= rpcrdma_mr_pop(&buf
->rb_mrs
);
1302 spin_unlock(&buf
->rb_mrlock
);
1309 trace_xprtrdma_nomrs(r_xprt
);
1310 if (r_xprt
->rx_ep
.rep_connected
!= -ENODEV
)
1311 schedule_delayed_work(&buf
->rb_refresh_worker
, 0);
1313 /* Allow the reply handler and refresh worker to run */
1320 __rpcrdma_mr_put(struct rpcrdma_buffer
*buf
, struct rpcrdma_mr
*mr
)
1322 spin_lock(&buf
->rb_mrlock
);
1323 rpcrdma_mr_push(mr
, &buf
->rb_mrs
);
1324 spin_unlock(&buf
->rb_mrlock
);
1328 * rpcrdma_mr_put - Release an rpcrdma_mr object
1329 * @mr: object to release
1333 rpcrdma_mr_put(struct rpcrdma_mr
*mr
)
1335 __rpcrdma_mr_put(&mr
->mr_xprt
->rx_buf
, mr
);
1339 * rpcrdma_mr_unmap_and_put - DMA unmap an MR and release it
1340 * @mr: object to release
1344 rpcrdma_mr_unmap_and_put(struct rpcrdma_mr
*mr
)
1346 struct rpcrdma_xprt
*r_xprt
= mr
->mr_xprt
;
1348 trace_xprtrdma_dma_unmap(mr
);
1349 ib_dma_unmap_sg(r_xprt
->rx_ia
.ri_device
,
1350 mr
->mr_sg
, mr
->mr_nents
, mr
->mr_dir
);
1351 __rpcrdma_mr_put(&r_xprt
->rx_buf
, mr
);
1354 static struct rpcrdma_rep
*
1355 rpcrdma_buffer_get_rep(struct rpcrdma_buffer
*buffers
)
1357 /* If an RPC previously completed without a reply (say, a
1358 * credential problem or a soft timeout occurs) then hold off
1359 * on supplying more Receive buffers until the number of new
1360 * pending RPCs catches up to the number of posted Receives.
1362 if (unlikely(buffers
->rb_send_count
< buffers
->rb_recv_count
))
1365 if (unlikely(list_empty(&buffers
->rb_recv_bufs
)))
1367 buffers
->rb_recv_count
++;
1368 return rpcrdma_buffer_get_rep_locked(buffers
);
1372 * Get a set of request/reply buffers.
1374 * Reply buffer (if available) is attached to send buffer upon return.
1376 struct rpcrdma_req
*
1377 rpcrdma_buffer_get(struct rpcrdma_buffer
*buffers
)
1379 struct rpcrdma_req
*req
;
1381 spin_lock(&buffers
->rb_lock
);
1382 if (list_empty(&buffers
->rb_send_bufs
))
1384 buffers
->rb_send_count
++;
1385 req
= rpcrdma_buffer_get_req_locked(buffers
);
1386 req
->rl_reply
= rpcrdma_buffer_get_rep(buffers
);
1387 spin_unlock(&buffers
->rb_lock
);
1392 spin_unlock(&buffers
->rb_lock
);
1397 * Put request/reply buffers back into pool.
1398 * Pre-decrement counter/array index.
1401 rpcrdma_buffer_put(struct rpcrdma_req
*req
)
1403 struct rpcrdma_buffer
*buffers
= req
->rl_buffer
;
1404 struct rpcrdma_rep
*rep
= req
->rl_reply
;
1406 req
->rl_reply
= NULL
;
1408 spin_lock(&buffers
->rb_lock
);
1409 buffers
->rb_send_count
--;
1410 list_add_tail(&req
->rl_list
, &buffers
->rb_send_bufs
);
1412 buffers
->rb_recv_count
--;
1413 list_add_tail(&rep
->rr_list
, &buffers
->rb_recv_bufs
);
1415 spin_unlock(&buffers
->rb_lock
);
1419 * Recover reply buffers from pool.
1420 * This happens when recovering from disconnect.
1423 rpcrdma_recv_buffer_get(struct rpcrdma_req
*req
)
1425 struct rpcrdma_buffer
*buffers
= req
->rl_buffer
;
1427 spin_lock(&buffers
->rb_lock
);
1428 req
->rl_reply
= rpcrdma_buffer_get_rep(buffers
);
1429 spin_unlock(&buffers
->rb_lock
);
1433 * Put reply buffers back into pool when not attached to
1434 * request. This happens in error conditions.
1437 rpcrdma_recv_buffer_put(struct rpcrdma_rep
*rep
)
1439 struct rpcrdma_buffer
*buffers
= &rep
->rr_rxprt
->rx_buf
;
1441 spin_lock(&buffers
->rb_lock
);
1442 buffers
->rb_recv_count
--;
1443 list_add_tail(&rep
->rr_list
, &buffers
->rb_recv_bufs
);
1444 spin_unlock(&buffers
->rb_lock
);
1448 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
1449 * @size: size of buffer to be allocated, in bytes
1450 * @direction: direction of data movement
1453 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1454 * can be persistently DMA-mapped for I/O.
1456 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1457 * receiving the payload of RDMA RECV operations. During Long Calls
1458 * or Replies they may be registered externally via ro_map.
1460 struct rpcrdma_regbuf
*
1461 rpcrdma_alloc_regbuf(size_t size
, enum dma_data_direction direction
,
1464 struct rpcrdma_regbuf
*rb
;
1466 rb
= kmalloc(sizeof(*rb
) + size
, flags
);
1468 return ERR_PTR(-ENOMEM
);
1470 rb
->rg_device
= NULL
;
1471 rb
->rg_direction
= direction
;
1472 rb
->rg_iov
.length
= size
;
1478 * __rpcrdma_map_regbuf - DMA-map a regbuf
1479 * @ia: controlling rpcrdma_ia
1480 * @rb: regbuf to be mapped
1483 __rpcrdma_dma_map_regbuf(struct rpcrdma_ia
*ia
, struct rpcrdma_regbuf
*rb
)
1485 struct ib_device
*device
= ia
->ri_device
;
1487 if (rb
->rg_direction
== DMA_NONE
)
1490 rb
->rg_iov
.addr
= ib_dma_map_single(device
,
1491 (void *)rb
->rg_base
,
1494 if (ib_dma_mapping_error(device
, rdmab_addr(rb
)))
1497 rb
->rg_device
= device
;
1498 rb
->rg_iov
.lkey
= ia
->ri_pd
->local_dma_lkey
;
1503 rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf
*rb
)
1508 if (!rpcrdma_regbuf_is_mapped(rb
))
1511 ib_dma_unmap_single(rb
->rg_device
, rdmab_addr(rb
),
1512 rdmab_length(rb
), rb
->rg_direction
);
1513 rb
->rg_device
= NULL
;
1517 * rpcrdma_free_regbuf - deregister and free registered buffer
1518 * @rb: regbuf to be deregistered and freed
1521 rpcrdma_free_regbuf(struct rpcrdma_regbuf
*rb
)
1523 rpcrdma_dma_unmap_regbuf(rb
);
1528 * Prepost any receive buffer, then post send.
1530 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1533 rpcrdma_ep_post(struct rpcrdma_ia
*ia
,
1534 struct rpcrdma_ep
*ep
,
1535 struct rpcrdma_req
*req
)
1537 struct ib_send_wr
*send_wr
= &req
->rl_sendctx
->sc_wr
;
1538 struct ib_send_wr
*send_wr_fail
;
1541 if (req
->rl_reply
) {
1542 rc
= rpcrdma_ep_post_recv(ia
, req
->rl_reply
);
1545 req
->rl_reply
= NULL
;
1548 if (!ep
->rep_send_count
||
1549 test_bit(RPCRDMA_REQ_F_TX_RESOURCES
, &req
->rl_flags
)) {
1550 send_wr
->send_flags
|= IB_SEND_SIGNALED
;
1551 ep
->rep_send_count
= ep
->rep_send_batch
;
1553 send_wr
->send_flags
&= ~IB_SEND_SIGNALED
;
1554 --ep
->rep_send_count
;
1557 rc
= ib_post_send(ia
->ri_id
->qp
, send_wr
, &send_wr_fail
);
1558 trace_xprtrdma_post_send(req
, rc
);
1565 rpcrdma_ep_post_recv(struct rpcrdma_ia
*ia
,
1566 struct rpcrdma_rep
*rep
)
1568 struct ib_recv_wr
*recv_wr_fail
;
1571 if (!rpcrdma_dma_map_regbuf(ia
, rep
->rr_rdmabuf
))
1573 rc
= ib_post_recv(ia
->ri_id
->qp
, &rep
->rr_recv_wr
, &recv_wr_fail
);
1574 trace_xprtrdma_post_recv(rep
, rc
);
1580 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1585 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1586 * @r_xprt: transport associated with these backchannel resources
1587 * @count: minimum number of incoming requests expected
1589 * Returns zero if all requested buffers were posted, or a negative errno.
1592 rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt
*r_xprt
, unsigned int count
)
1594 struct rpcrdma_buffer
*buffers
= &r_xprt
->rx_buf
;
1595 struct rpcrdma_ia
*ia
= &r_xprt
->rx_ia
;
1596 struct rpcrdma_rep
*rep
;
1600 spin_lock(&buffers
->rb_lock
);
1601 if (list_empty(&buffers
->rb_recv_bufs
))
1603 rep
= rpcrdma_buffer_get_rep_locked(buffers
);
1604 spin_unlock(&buffers
->rb_lock
);
1606 rc
= rpcrdma_ep_post_recv(ia
, rep
);
1614 spin_unlock(&buffers
->rb_lock
);
1615 trace_xprtrdma_noreps(r_xprt
);
1619 rpcrdma_recv_buffer_put(rep
);