2 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
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 BSD-type
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
14 * Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
17 * Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials provided
20 * with the distribution.
22 * Neither the name of the Network Appliance, Inc. nor the names of
23 * its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 * Encapsulates the major functions managing:
50 #include <linux/pci.h> /* for Tavor hack below */
52 #include "xprt_rdma.h"
59 # define RPCDBG_FACILITY RPCDBG_TRANS
67 * handle replies in tasklet context, using a single, global list
68 * rdma tasklet function -- just turn around and call the func
69 * for all replies on the list
72 static DEFINE_SPINLOCK(rpcrdma_tk_lock_g);
73 static LIST_HEAD(rpcrdma_tasklets_g);
76 rpcrdma_run_tasklet(unsigned long data)
78 struct rpcrdma_rep *rep;
79 void (*func)(struct rpcrdma_rep *);
83 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
84 while (!list_empty(&rpcrdma_tasklets_g)) {
85 rep = list_entry(rpcrdma_tasklets_g.next,
86 struct rpcrdma_rep, rr_list);
87 list_del(&rep->rr_list);
90 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
95 rpcrdma_recv_buffer_put(rep);
97 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
99 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
102 static DECLARE_TASKLET(rpcrdma_tasklet_g, rpcrdma_run_tasklet, 0UL);
105 rpcrdma_schedule_tasklet(struct rpcrdma_rep *rep)
109 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
110 list_add_tail(&rep->rr_list, &rpcrdma_tasklets_g);
111 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
112 tasklet_schedule(&rpcrdma_tasklet_g);
116 rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
118 struct rpcrdma_ep *ep = context;
120 dprintk("RPC: %s: QP error %X on device %s ep %p\n",
121 __func__, event->event, event->device->name, context);
122 if (ep->rep_connected == 1) {
123 ep->rep_connected = -EIO;
125 wake_up_all(&ep->rep_connect_wait);
130 rpcrdma_cq_async_error_upcall(struct ib_event *event, void *context)
132 struct rpcrdma_ep *ep = context;
134 dprintk("RPC: %s: CQ error %X on device %s ep %p\n",
135 __func__, event->event, event->device->name, context);
136 if (ep->rep_connected == 1) {
137 ep->rep_connected = -EIO;
139 wake_up_all(&ep->rep_connect_wait);
144 void rpcrdma_event_process(struct ib_wc *wc)
146 struct rpcrdma_rep *rep =
147 (struct rpcrdma_rep *)(unsigned long) wc->wr_id;
149 dprintk("RPC: %s: event rep %p status %X opcode %X length %u\n",
150 __func__, rep, wc->status, wc->opcode, wc->byte_len);
152 if (!rep) /* send or bind completion that we don't care about */
155 if (IB_WC_SUCCESS != wc->status) {
156 dprintk("RPC: %s: %s WC status %X, connection lost\n",
157 __func__, (wc->opcode & IB_WC_RECV) ? "recv" : "send",
160 rpcrdma_schedule_tasklet(rep);
164 switch (wc->opcode) {
166 rep->rr_len = wc->byte_len;
167 ib_dma_sync_single_for_cpu(
168 rdmab_to_ia(rep->rr_buffer)->ri_id->device,
169 rep->rr_iov.addr, rep->rr_len, DMA_FROM_DEVICE);
170 /* Keep (only) the most recent credits, after check validity */
171 if (rep->rr_len >= 16) {
172 struct rpcrdma_msg *p =
173 (struct rpcrdma_msg *) rep->rr_base;
174 unsigned int credits = ntohl(p->rm_credit);
176 dprintk("RPC: %s: server"
177 " dropped credits to 0!\n", __func__);
180 } else if (credits > rep->rr_buffer->rb_max_requests) {
181 dprintk("RPC: %s: server"
182 " over-crediting: %d (%d)\n",
184 rep->rr_buffer->rb_max_requests);
185 credits = rep->rr_buffer->rb_max_requests;
187 atomic_set(&rep->rr_buffer->rb_credits, credits);
191 rpcrdma_schedule_tasklet(rep);
194 dprintk("RPC: %s: unexpected WC event %X\n",
195 __func__, wc->opcode);
201 rpcrdma_cq_poll(struct ib_cq *cq)
207 rc = ib_poll_cq(cq, 1, &wc);
209 dprintk("RPC: %s: ib_poll_cq failed %i\n",
216 rpcrdma_event_process(&wc);
223 * rpcrdma_cq_event_upcall
225 * This upcall handles recv, send, bind and unbind events.
226 * It is reentrant but processes single events in order to maintain
227 * ordering of receives to keep server credits.
229 * It is the responsibility of the scheduled tasklet to return
230 * recv buffers to the pool. NOTE: this affects synchronization of
231 * connection shutdown. That is, the structures required for
232 * the completion of the reply handler must remain intact until
233 * all memory has been reclaimed.
235 * Note that send events are suppressed and do not result in an upcall.
238 rpcrdma_cq_event_upcall(struct ib_cq *cq, void *context)
242 rc = rpcrdma_cq_poll(cq);
246 rc = ib_req_notify_cq(cq, IB_CQ_NEXT_COMP);
248 dprintk("RPC: %s: ib_req_notify_cq failed %i\n",
257 static const char * const conn[] = {
274 rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
276 struct rpcrdma_xprt *xprt = id->context;
277 struct rpcrdma_ia *ia = &xprt->rx_ia;
278 struct rpcrdma_ep *ep = &xprt->rx_ep;
279 struct sockaddr_in *addr = (struct sockaddr_in *) &ep->rep_remote_addr;
280 struct ib_qp_attr attr;
281 struct ib_qp_init_attr iattr;
284 switch (event->event) {
285 case RDMA_CM_EVENT_ADDR_RESOLVED:
286 case RDMA_CM_EVENT_ROUTE_RESOLVED:
287 complete(&ia->ri_done);
289 case RDMA_CM_EVENT_ADDR_ERROR:
290 ia->ri_async_rc = -EHOSTUNREACH;
291 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
293 complete(&ia->ri_done);
295 case RDMA_CM_EVENT_ROUTE_ERROR:
296 ia->ri_async_rc = -ENETUNREACH;
297 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
299 complete(&ia->ri_done);
301 case RDMA_CM_EVENT_ESTABLISHED:
303 ib_query_qp(ia->ri_id->qp, &attr,
304 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
306 dprintk("RPC: %s: %d responder resources"
308 __func__, attr.max_dest_rd_atomic, attr.max_rd_atomic);
310 case RDMA_CM_EVENT_CONNECT_ERROR:
311 connstate = -ENOTCONN;
313 case RDMA_CM_EVENT_UNREACHABLE:
314 connstate = -ENETDOWN;
316 case RDMA_CM_EVENT_REJECTED:
317 connstate = -ECONNREFUSED;
319 case RDMA_CM_EVENT_DISCONNECTED:
320 connstate = -ECONNABORTED;
322 case RDMA_CM_EVENT_DEVICE_REMOVAL:
325 dprintk("RPC: %s: %s: %u.%u.%u.%u:%u"
326 " (ep 0x%p event 0x%x)\n",
328 (event->event <= 11) ? conn[event->event] :
329 "unknown connection error",
330 NIPQUAD(addr->sin_addr.s_addr),
331 ntohs(addr->sin_port),
333 atomic_set(&rpcx_to_rdmax(ep->rep_xprt)->rx_buf.rb_credits, 1);
334 dprintk("RPC: %s: %sconnected\n",
335 __func__, connstate > 0 ? "" : "dis");
336 ep->rep_connected = connstate;
338 wake_up_all(&ep->rep_connect_wait);
341 ia->ri_async_rc = -EINVAL;
342 dprintk("RPC: %s: unexpected CM event %X\n",
343 __func__, event->event);
344 complete(&ia->ri_done);
351 static struct rdma_cm_id *
352 rpcrdma_create_id(struct rpcrdma_xprt *xprt,
353 struct rpcrdma_ia *ia, struct sockaddr *addr)
355 struct rdma_cm_id *id;
358 id = rdma_create_id(rpcrdma_conn_upcall, xprt, RDMA_PS_TCP);
361 dprintk("RPC: %s: rdma_create_id() failed %i\n",
367 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
369 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
373 wait_for_completion(&ia->ri_done);
374 rc = ia->ri_async_rc;
379 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
381 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
385 wait_for_completion(&ia->ri_done);
386 rc = ia->ri_async_rc;
398 * Drain any cq, prior to teardown.
401 rpcrdma_clean_cq(struct ib_cq *cq)
406 while (1 == ib_poll_cq(cq, 1, &wc))
410 dprintk("RPC: %s: flushed %d events (last 0x%x)\n",
411 __func__, count, wc.opcode);
415 * Exported functions.
419 * Open and initialize an Interface Adapter.
420 * o initializes fields of struct rpcrdma_ia, including
421 * interface and provider attributes and protection zone.
424 rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
427 struct ib_device_attr devattr;
428 struct rpcrdma_ia *ia = &xprt->rx_ia;
430 init_completion(&ia->ri_done);
432 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
433 if (IS_ERR(ia->ri_id)) {
434 rc = PTR_ERR(ia->ri_id);
438 ia->ri_pd = ib_alloc_pd(ia->ri_id->device);
439 if (IS_ERR(ia->ri_pd)) {
440 rc = PTR_ERR(ia->ri_pd);
441 dprintk("RPC: %s: ib_alloc_pd() failed %i\n",
447 * Query the device to determine if the requested memory
448 * registration strategy is supported. If it isn't, set the
449 * strategy to a globally supported model.
451 rc = ib_query_device(ia->ri_id->device, &devattr);
453 dprintk("RPC: %s: ib_query_device failed %d\n",
458 if (devattr.device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY) {
459 ia->ri_have_dma_lkey = 1;
460 ia->ri_dma_lkey = ia->ri_id->device->local_dma_lkey;
464 case RPCRDMA_MEMWINDOWS:
465 case RPCRDMA_MEMWINDOWS_ASYNC:
466 if (!(devattr.device_cap_flags & IB_DEVICE_MEM_WINDOW)) {
467 dprintk("RPC: %s: MEMWINDOWS registration "
468 "specified but not supported by adapter, "
469 "using slower RPCRDMA_REGISTER\n",
471 memreg = RPCRDMA_REGISTER;
474 case RPCRDMA_MTHCAFMR:
475 if (!ia->ri_id->device->alloc_fmr) {
476 #if RPCRDMA_PERSISTENT_REGISTRATION
477 dprintk("RPC: %s: MTHCAFMR registration "
478 "specified but not supported by adapter, "
479 "using riskier RPCRDMA_ALLPHYSICAL\n",
481 memreg = RPCRDMA_ALLPHYSICAL;
483 dprintk("RPC: %s: MTHCAFMR registration "
484 "specified but not supported by adapter, "
485 "using slower RPCRDMA_REGISTER\n",
487 memreg = RPCRDMA_REGISTER;
492 /* Requires both frmr reg and local dma lkey */
493 if ((devattr.device_cap_flags &
494 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) !=
495 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) {
496 #if RPCRDMA_PERSISTENT_REGISTRATION
497 dprintk("RPC: %s: FRMR registration "
498 "specified but not supported by adapter, "
499 "using riskier RPCRDMA_ALLPHYSICAL\n",
501 memreg = RPCRDMA_ALLPHYSICAL;
503 dprintk("RPC: %s: FRMR registration "
504 "specified but not supported by adapter, "
505 "using slower RPCRDMA_REGISTER\n",
507 memreg = RPCRDMA_REGISTER;
514 * Optionally obtain an underlying physical identity mapping in
515 * order to do a memory window-based bind. This base registration
516 * is protected from remote access - that is enabled only by binding
517 * for the specific bytes targeted during each RPC operation, and
518 * revoked after the corresponding completion similar to a storage
522 case RPCRDMA_BOUNCEBUFFERS:
523 case RPCRDMA_REGISTER:
526 #if RPCRDMA_PERSISTENT_REGISTRATION
527 case RPCRDMA_ALLPHYSICAL:
528 mem_priv = IB_ACCESS_LOCAL_WRITE |
529 IB_ACCESS_REMOTE_WRITE |
530 IB_ACCESS_REMOTE_READ;
533 case RPCRDMA_MEMWINDOWS_ASYNC:
534 case RPCRDMA_MEMWINDOWS:
535 mem_priv = IB_ACCESS_LOCAL_WRITE |
538 case RPCRDMA_MTHCAFMR:
539 if (ia->ri_have_dma_lkey)
541 mem_priv = IB_ACCESS_LOCAL_WRITE;
543 ia->ri_bind_mem = ib_get_dma_mr(ia->ri_pd, mem_priv);
544 if (IS_ERR(ia->ri_bind_mem)) {
545 printk(KERN_ALERT "%s: ib_get_dma_mr for "
546 "phys register failed with %lX\n\t"
547 "Will continue with degraded performance\n",
548 __func__, PTR_ERR(ia->ri_bind_mem));
549 memreg = RPCRDMA_REGISTER;
550 ia->ri_bind_mem = NULL;
554 printk(KERN_ERR "%s: invalid memory registration mode %d\n",
559 dprintk("RPC: %s: memory registration strategy is %d\n",
562 /* Else will do memory reg/dereg for each chunk */
563 ia->ri_memreg_strategy = memreg;
567 rdma_destroy_id(ia->ri_id);
573 * Clean up/close an IA.
574 * o if event handles and PD have been initialized, free them.
578 rpcrdma_ia_close(struct rpcrdma_ia *ia)
582 dprintk("RPC: %s: entering\n", __func__);
583 if (ia->ri_bind_mem != NULL) {
584 rc = ib_dereg_mr(ia->ri_bind_mem);
585 dprintk("RPC: %s: ib_dereg_mr returned %i\n",
588 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id) && ia->ri_id->qp)
589 rdma_destroy_qp(ia->ri_id);
590 if (ia->ri_pd != NULL && !IS_ERR(ia->ri_pd)) {
591 rc = ib_dealloc_pd(ia->ri_pd);
592 dprintk("RPC: %s: ib_dealloc_pd returned %i\n",
595 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id))
596 rdma_destroy_id(ia->ri_id);
600 * Create unconnected endpoint.
603 rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
604 struct rpcrdma_create_data_internal *cdata)
606 struct ib_device_attr devattr;
609 rc = ib_query_device(ia->ri_id->device, &devattr);
611 dprintk("RPC: %s: ib_query_device failed %d\n",
616 /* check provider's send/recv wr limits */
617 if (cdata->max_requests > devattr.max_qp_wr)
618 cdata->max_requests = devattr.max_qp_wr;
620 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
621 ep->rep_attr.qp_context = ep;
622 /* send_cq and recv_cq initialized below */
623 ep->rep_attr.srq = NULL;
624 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
625 switch (ia->ri_memreg_strategy) {
627 /* Add room for frmr register and invalidate WRs */
628 ep->rep_attr.cap.max_send_wr *= 3;
629 if (ep->rep_attr.cap.max_send_wr > devattr.max_qp_wr)
632 case RPCRDMA_MEMWINDOWS_ASYNC:
633 case RPCRDMA_MEMWINDOWS:
634 /* Add room for mw_binds+unbinds - overkill! */
635 ep->rep_attr.cap.max_send_wr++;
636 ep->rep_attr.cap.max_send_wr *= (2 * RPCRDMA_MAX_SEGS);
637 if (ep->rep_attr.cap.max_send_wr > devattr.max_qp_wr)
643 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
644 ep->rep_attr.cap.max_send_sge = (cdata->padding ? 4 : 2);
645 ep->rep_attr.cap.max_recv_sge = 1;
646 ep->rep_attr.cap.max_inline_data = 0;
647 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
648 ep->rep_attr.qp_type = IB_QPT_RC;
649 ep->rep_attr.port_num = ~0;
651 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
652 "iovs: send %d recv %d\n",
654 ep->rep_attr.cap.max_send_wr,
655 ep->rep_attr.cap.max_recv_wr,
656 ep->rep_attr.cap.max_send_sge,
657 ep->rep_attr.cap.max_recv_sge);
659 /* set trigger for requesting send completion */
660 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 /* - 1*/;
661 switch (ia->ri_memreg_strategy) {
662 case RPCRDMA_MEMWINDOWS_ASYNC:
663 case RPCRDMA_MEMWINDOWS:
664 ep->rep_cqinit -= RPCRDMA_MAX_SEGS;
669 if (ep->rep_cqinit <= 2)
673 init_waitqueue_head(&ep->rep_connect_wait);
676 * Create a single cq for receive dto and mw_bind (only ever
677 * care about unbind, really). Send completions are suppressed.
678 * Use single threaded tasklet upcalls to maintain ordering.
680 ep->rep_cq = ib_create_cq(ia->ri_id->device, rpcrdma_cq_event_upcall,
681 rpcrdma_cq_async_error_upcall, NULL,
682 ep->rep_attr.cap.max_recv_wr +
683 ep->rep_attr.cap.max_send_wr + 1, 0);
684 if (IS_ERR(ep->rep_cq)) {
685 rc = PTR_ERR(ep->rep_cq);
686 dprintk("RPC: %s: ib_create_cq failed: %i\n",
691 rc = ib_req_notify_cq(ep->rep_cq, IB_CQ_NEXT_COMP);
693 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
698 ep->rep_attr.send_cq = ep->rep_cq;
699 ep->rep_attr.recv_cq = ep->rep_cq;
701 /* Initialize cma parameters */
703 /* RPC/RDMA does not use private data */
704 ep->rep_remote_cma.private_data = NULL;
705 ep->rep_remote_cma.private_data_len = 0;
707 /* Client offers RDMA Read but does not initiate */
708 switch (ia->ri_memreg_strategy) {
709 case RPCRDMA_BOUNCEBUFFERS:
710 ep->rep_remote_cma.responder_resources = 0;
712 case RPCRDMA_MTHCAFMR:
713 case RPCRDMA_REGISTER:
715 ep->rep_remote_cma.responder_resources = cdata->max_requests *
716 (RPCRDMA_MAX_DATA_SEGS / 8);
718 case RPCRDMA_MEMWINDOWS:
719 case RPCRDMA_MEMWINDOWS_ASYNC:
720 #if RPCRDMA_PERSISTENT_REGISTRATION
721 case RPCRDMA_ALLPHYSICAL:
723 ep->rep_remote_cma.responder_resources = cdata->max_requests *
724 (RPCRDMA_MAX_DATA_SEGS / 2);
729 if (ep->rep_remote_cma.responder_resources > devattr.max_qp_rd_atom)
730 ep->rep_remote_cma.responder_resources = devattr.max_qp_rd_atom;
731 ep->rep_remote_cma.initiator_depth = 0;
733 ep->rep_remote_cma.retry_count = 7;
734 ep->rep_remote_cma.flow_control = 0;
735 ep->rep_remote_cma.rnr_retry_count = 0;
740 err = ib_destroy_cq(ep->rep_cq);
742 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
751 * Disconnect and destroy endpoint. After this, the only
752 * valid operations on the ep are to free it (if dynamically
753 * allocated) or re-create it.
755 * The caller's error handling must be sure to not leak the endpoint
756 * if this function fails.
759 rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
763 dprintk("RPC: %s: entering, connected is %d\n",
764 __func__, ep->rep_connected);
767 rc = rpcrdma_ep_disconnect(ep, ia);
769 dprintk("RPC: %s: rpcrdma_ep_disconnect"
770 " returned %i\n", __func__, rc);
775 /* padding - could be done in rpcrdma_buffer_destroy... */
776 if (ep->rep_pad_mr) {
777 rpcrdma_deregister_internal(ia, ep->rep_pad_mr, &ep->rep_pad);
778 ep->rep_pad_mr = NULL;
782 rdma_destroy_qp(ia->ri_id);
783 ia->ri_id->qp = NULL;
786 rpcrdma_clean_cq(ep->rep_cq);
787 rc = ib_destroy_cq(ep->rep_cq);
789 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
796 * Connect unconnected endpoint.
799 rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
801 struct rdma_cm_id *id;
804 int reconnect = (ep->rep_connected != 0);
807 struct rpcrdma_xprt *xprt;
809 rc = rpcrdma_ep_disconnect(ep, ia);
810 if (rc && rc != -ENOTCONN)
811 dprintk("RPC: %s: rpcrdma_ep_disconnect"
812 " status %i\n", __func__, rc);
813 rpcrdma_clean_cq(ep->rep_cq);
815 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
816 id = rpcrdma_create_id(xprt, ia,
817 (struct sockaddr *)&xprt->rx_data.addr);
822 /* TEMP TEMP TEMP - fail if new device:
823 * Deregister/remarshal *all* requests!
824 * Close and recreate adapter, pd, etc!
825 * Re-determine all attributes still sane!
826 * More stuff I haven't thought of!
829 if (ia->ri_id->device != id->device) {
830 printk("RPC: %s: can't reconnect on "
831 "different device!\n", __func__);
837 rdma_destroy_id(ia->ri_id);
841 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
843 dprintk("RPC: %s: rdma_create_qp failed %i\n",
848 /* XXX Tavor device performs badly with 2K MTU! */
849 if (strnicmp(ia->ri_id->device->dma_device->bus->name, "pci", 3) == 0) {
850 struct pci_dev *pcid = to_pci_dev(ia->ri_id->device->dma_device);
851 if (pcid->device == PCI_DEVICE_ID_MELLANOX_TAVOR &&
852 (pcid->vendor == PCI_VENDOR_ID_MELLANOX ||
853 pcid->vendor == PCI_VENDOR_ID_TOPSPIN)) {
854 struct ib_qp_attr attr = {
855 .path_mtu = IB_MTU_1024
857 rc = ib_modify_qp(ia->ri_id->qp, &attr, IB_QP_PATH_MTU);
861 /* Theoretically a client initiator_depth > 0 is not needed,
862 * but many peers fail to complete the connection unless they
863 * == responder_resources! */
864 if (ep->rep_remote_cma.initiator_depth !=
865 ep->rep_remote_cma.responder_resources)
866 ep->rep_remote_cma.initiator_depth =
867 ep->rep_remote_cma.responder_resources;
869 ep->rep_connected = 0;
871 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
873 dprintk("RPC: %s: rdma_connect() failed with %i\n",
881 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
884 * Check state. A non-peer reject indicates no listener
885 * (ECONNREFUSED), which may be a transient state. All
886 * others indicate a transport condition which has already
887 * undergone a best-effort.
889 if (ep->rep_connected == -ECONNREFUSED
890 && ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
891 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
894 if (ep->rep_connected <= 0) {
895 /* Sometimes, the only way to reliably connect to remote
896 * CMs is to use same nonzero values for ORD and IRD. */
897 ep->rep_remote_cma.initiator_depth =
898 ep->rep_remote_cma.responder_resources;
899 if (ep->rep_remote_cma.initiator_depth == 0)
900 ++ep->rep_remote_cma.initiator_depth;
901 if (ep->rep_remote_cma.responder_resources == 0)
902 ++ep->rep_remote_cma.responder_resources;
903 if (retry_count++ == 0)
905 rc = ep->rep_connected;
907 dprintk("RPC: %s: connected\n", __func__);
912 ep->rep_connected = rc;
917 * rpcrdma_ep_disconnect
919 * This is separate from destroy to facilitate the ability
920 * to reconnect without recreating the endpoint.
922 * This call is not reentrant, and must not be made in parallel
923 * on the same endpoint.
926 rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
930 rpcrdma_clean_cq(ep->rep_cq);
931 rc = rdma_disconnect(ia->ri_id);
933 /* returns without wait if not connected */
934 wait_event_interruptible(ep->rep_connect_wait,
935 ep->rep_connected != 1);
936 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
937 (ep->rep_connected == 1) ? "still " : "dis");
939 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
940 ep->rep_connected = rc;
946 * Initialize buffer memory
949 rpcrdma_buffer_create(struct rpcrdma_buffer *buf, struct rpcrdma_ep *ep,
950 struct rpcrdma_ia *ia, struct rpcrdma_create_data_internal *cdata)
955 struct rpcrdma_mw *r;
957 buf->rb_max_requests = cdata->max_requests;
958 spin_lock_init(&buf->rb_lock);
959 atomic_set(&buf->rb_credits, 1);
962 * 1. arrays for send and recv pointers
963 * 2. arrays of struct rpcrdma_req to fill in pointers
964 * 3. array of struct rpcrdma_rep for replies
966 * 5. mw's, fmr's or frmr's, if any
967 * Send/recv buffers in req/rep need to be registered
970 len = buf->rb_max_requests *
971 (sizeof(struct rpcrdma_req *) + sizeof(struct rpcrdma_rep *));
972 len += cdata->padding;
973 switch (ia->ri_memreg_strategy) {
975 len += buf->rb_max_requests * RPCRDMA_MAX_SEGS *
976 sizeof(struct rpcrdma_mw);
978 case RPCRDMA_MTHCAFMR:
979 /* TBD we are perhaps overallocating here */
980 len += (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS *
981 sizeof(struct rpcrdma_mw);
983 case RPCRDMA_MEMWINDOWS_ASYNC:
984 case RPCRDMA_MEMWINDOWS:
985 len += (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS *
986 sizeof(struct rpcrdma_mw);
992 /* allocate 1, 4 and 5 in one shot */
993 p = kzalloc(len, GFP_KERNEL);
995 dprintk("RPC: %s: req_t/rep_t/pad kzalloc(%zd) failed\n",
1000 buf->rb_pool = p; /* for freeing it later */
1002 buf->rb_send_bufs = (struct rpcrdma_req **) p;
1003 p = (char *) &buf->rb_send_bufs[buf->rb_max_requests];
1004 buf->rb_recv_bufs = (struct rpcrdma_rep **) p;
1005 p = (char *) &buf->rb_recv_bufs[buf->rb_max_requests];
1008 * Register the zeroed pad buffer, if any.
1010 if (cdata->padding) {
1011 rc = rpcrdma_register_internal(ia, p, cdata->padding,
1012 &ep->rep_pad_mr, &ep->rep_pad);
1016 p += cdata->padding;
1019 * Allocate the fmr's, or mw's for mw_bind chunk registration.
1020 * We "cycle" the mw's in order to minimize rkey reuse,
1021 * and also reduce unbind-to-bind collision.
1023 INIT_LIST_HEAD(&buf->rb_mws);
1024 r = (struct rpcrdma_mw *)p;
1025 switch (ia->ri_memreg_strategy) {
1027 for (i = buf->rb_max_requests * RPCRDMA_MAX_SEGS; i; i--) {
1028 r->r.frmr.fr_mr = ib_alloc_fast_reg_mr(ia->ri_pd,
1030 if (IS_ERR(r->r.frmr.fr_mr)) {
1031 rc = PTR_ERR(r->r.frmr.fr_mr);
1032 dprintk("RPC: %s: ib_alloc_fast_reg_mr"
1033 " failed %i\n", __func__, rc);
1037 ib_alloc_fast_reg_page_list(ia->ri_id->device,
1039 if (IS_ERR(r->r.frmr.fr_pgl)) {
1040 rc = PTR_ERR(r->r.frmr.fr_pgl);
1042 "ib_alloc_fast_reg_page_list "
1043 "failed %i\n", __func__, rc);
1046 list_add(&r->mw_list, &buf->rb_mws);
1050 case RPCRDMA_MTHCAFMR:
1051 /* TBD we are perhaps overallocating here */
1052 for (i = (buf->rb_max_requests+1) * RPCRDMA_MAX_SEGS; i; i--) {
1053 static struct ib_fmr_attr fa =
1054 { RPCRDMA_MAX_DATA_SEGS, 1, PAGE_SHIFT };
1055 r->r.fmr = ib_alloc_fmr(ia->ri_pd,
1056 IB_ACCESS_REMOTE_WRITE | IB_ACCESS_REMOTE_READ,
1058 if (IS_ERR(r->r.fmr)) {
1059 rc = PTR_ERR(r->r.fmr);
1060 dprintk("RPC: %s: ib_alloc_fmr"
1061 " failed %i\n", __func__, rc);
1064 list_add(&r->mw_list, &buf->rb_mws);
1068 case RPCRDMA_MEMWINDOWS_ASYNC:
1069 case RPCRDMA_MEMWINDOWS:
1070 /* Allocate one extra request's worth, for full cycling */
1071 for (i = (buf->rb_max_requests+1) * RPCRDMA_MAX_SEGS; i; i--) {
1072 r->r.mw = ib_alloc_mw(ia->ri_pd);
1073 if (IS_ERR(r->r.mw)) {
1074 rc = PTR_ERR(r->r.mw);
1075 dprintk("RPC: %s: ib_alloc_mw"
1076 " failed %i\n", __func__, rc);
1079 list_add(&r->mw_list, &buf->rb_mws);
1088 * Allocate/init the request/reply buffers. Doing this
1089 * using kmalloc for now -- one for each buf.
1091 for (i = 0; i < buf->rb_max_requests; i++) {
1092 struct rpcrdma_req *req;
1093 struct rpcrdma_rep *rep;
1095 len = cdata->inline_wsize + sizeof(struct rpcrdma_req);
1096 /* RPC layer requests *double* size + 1K RPC_SLACK_SPACE! */
1097 /* Typical ~2400b, so rounding up saves work later */
1100 req = kmalloc(len, GFP_KERNEL);
1102 dprintk("RPC: %s: request buffer %d alloc"
1103 " failed\n", __func__, i);
1107 memset(req, 0, sizeof(struct rpcrdma_req));
1108 buf->rb_send_bufs[i] = req;
1109 buf->rb_send_bufs[i]->rl_buffer = buf;
1111 rc = rpcrdma_register_internal(ia, req->rl_base,
1112 len - offsetof(struct rpcrdma_req, rl_base),
1113 &buf->rb_send_bufs[i]->rl_handle,
1114 &buf->rb_send_bufs[i]->rl_iov);
1118 buf->rb_send_bufs[i]->rl_size = len-sizeof(struct rpcrdma_req);
1120 len = cdata->inline_rsize + sizeof(struct rpcrdma_rep);
1121 rep = kmalloc(len, GFP_KERNEL);
1123 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1128 memset(rep, 0, sizeof(struct rpcrdma_rep));
1129 buf->rb_recv_bufs[i] = rep;
1130 buf->rb_recv_bufs[i]->rr_buffer = buf;
1131 init_waitqueue_head(&rep->rr_unbind);
1133 rc = rpcrdma_register_internal(ia, rep->rr_base,
1134 len - offsetof(struct rpcrdma_rep, rr_base),
1135 &buf->rb_recv_bufs[i]->rr_handle,
1136 &buf->rb_recv_bufs[i]->rr_iov);
1141 dprintk("RPC: %s: max_requests %d\n",
1142 __func__, buf->rb_max_requests);
1146 rpcrdma_buffer_destroy(buf);
1151 * Unregister and destroy buffer memory. Need to deal with
1152 * partial initialization, so it's callable from failed create.
1153 * Must be called before destroying endpoint, as registrations
1157 rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1160 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
1161 struct rpcrdma_mw *r;
1163 /* clean up in reverse order from create
1164 * 1. recv mr memory (mr free, then kfree)
1165 * 1a. bind mw memory
1166 * 2. send mr memory (mr free, then kfree)
1167 * 3. padding (if any) [moved to rpcrdma_ep_destroy]
1170 dprintk("RPC: %s: entering\n", __func__);
1172 for (i = 0; i < buf->rb_max_requests; i++) {
1173 if (buf->rb_recv_bufs && buf->rb_recv_bufs[i]) {
1174 rpcrdma_deregister_internal(ia,
1175 buf->rb_recv_bufs[i]->rr_handle,
1176 &buf->rb_recv_bufs[i]->rr_iov);
1177 kfree(buf->rb_recv_bufs[i]);
1179 if (buf->rb_send_bufs && buf->rb_send_bufs[i]) {
1180 while (!list_empty(&buf->rb_mws)) {
1181 r = list_entry(buf->rb_mws.next,
1182 struct rpcrdma_mw, mw_list);
1183 list_del(&r->mw_list);
1184 switch (ia->ri_memreg_strategy) {
1186 rc = ib_dereg_mr(r->r.frmr.fr_mr);
1192 ib_free_fast_reg_page_list(r->r.frmr.fr_pgl);
1194 case RPCRDMA_MTHCAFMR:
1195 rc = ib_dealloc_fmr(r->r.fmr);
1202 case RPCRDMA_MEMWINDOWS_ASYNC:
1203 case RPCRDMA_MEMWINDOWS:
1204 rc = ib_dealloc_mw(r->r.mw);
1215 rpcrdma_deregister_internal(ia,
1216 buf->rb_send_bufs[i]->rl_handle,
1217 &buf->rb_send_bufs[i]->rl_iov);
1218 kfree(buf->rb_send_bufs[i]);
1222 kfree(buf->rb_pool);
1226 * Get a set of request/reply buffers.
1228 * Reply buffer (if needed) is attached to send buffer upon return.
1230 * rb_send_index and rb_recv_index MUST always be pointing to the
1231 * *next* available buffer (non-NULL). They are incremented after
1232 * removing buffers, and decremented *before* returning them.
1234 struct rpcrdma_req *
1235 rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1237 struct rpcrdma_req *req;
1238 unsigned long flags;
1240 struct rpcrdma_mw *r;
1242 spin_lock_irqsave(&buffers->rb_lock, flags);
1243 if (buffers->rb_send_index == buffers->rb_max_requests) {
1244 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1245 dprintk("RPC: %s: out of request buffers\n", __func__);
1246 return ((struct rpcrdma_req *)NULL);
1249 req = buffers->rb_send_bufs[buffers->rb_send_index];
1250 if (buffers->rb_send_index < buffers->rb_recv_index) {
1251 dprintk("RPC: %s: %d extra receives outstanding (ok)\n",
1253 buffers->rb_recv_index - buffers->rb_send_index);
1254 req->rl_reply = NULL;
1256 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1257 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1259 buffers->rb_send_bufs[buffers->rb_send_index++] = NULL;
1260 if (!list_empty(&buffers->rb_mws)) {
1261 i = RPCRDMA_MAX_SEGS - 1;
1263 r = list_entry(buffers->rb_mws.next,
1264 struct rpcrdma_mw, mw_list);
1265 list_del(&r->mw_list);
1266 req->rl_segments[i].mr_chunk.rl_mw = r;
1269 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1274 * Put request/reply buffers back into pool.
1275 * Pre-decrement counter/array index.
1278 rpcrdma_buffer_put(struct rpcrdma_req *req)
1280 struct rpcrdma_buffer *buffers = req->rl_buffer;
1281 struct rpcrdma_ia *ia = rdmab_to_ia(buffers);
1283 unsigned long flags;
1285 BUG_ON(req->rl_nchunks != 0);
1286 spin_lock_irqsave(&buffers->rb_lock, flags);
1287 buffers->rb_send_bufs[--buffers->rb_send_index] = req;
1289 if (req->rl_reply) {
1290 buffers->rb_recv_bufs[--buffers->rb_recv_index] = req->rl_reply;
1291 init_waitqueue_head(&req->rl_reply->rr_unbind);
1292 req->rl_reply->rr_func = NULL;
1293 req->rl_reply = NULL;
1295 switch (ia->ri_memreg_strategy) {
1297 case RPCRDMA_MTHCAFMR:
1298 case RPCRDMA_MEMWINDOWS_ASYNC:
1299 case RPCRDMA_MEMWINDOWS:
1301 * Cycle mw's back in reverse order, and "spin" them.
1302 * This delays and scrambles reuse as much as possible.
1306 struct rpcrdma_mw **mw;
1307 mw = &req->rl_segments[i].mr_chunk.rl_mw;
1308 list_add_tail(&(*mw)->mw_list, &buffers->rb_mws);
1310 } while (++i < RPCRDMA_MAX_SEGS);
1311 list_add_tail(&req->rl_segments[0].mr_chunk.rl_mw->mw_list,
1313 req->rl_segments[0].mr_chunk.rl_mw = NULL;
1318 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1322 * Recover reply buffers from pool.
1323 * This happens when recovering from error conditions.
1324 * Post-increment counter/array index.
1327 rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1329 struct rpcrdma_buffer *buffers = req->rl_buffer;
1330 unsigned long flags;
1332 if (req->rl_iov.length == 0) /* special case xprt_rdma_allocate() */
1333 buffers = ((struct rpcrdma_req *) buffers)->rl_buffer;
1334 spin_lock_irqsave(&buffers->rb_lock, flags);
1335 if (buffers->rb_recv_index < buffers->rb_max_requests) {
1336 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1337 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1339 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1343 * Put reply buffers back into pool when not attached to
1344 * request. This happens in error conditions, and when
1345 * aborting unbinds. Pre-decrement counter/array index.
1348 rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1350 struct rpcrdma_buffer *buffers = rep->rr_buffer;
1351 unsigned long flags;
1353 rep->rr_func = NULL;
1354 spin_lock_irqsave(&buffers->rb_lock, flags);
1355 buffers->rb_recv_bufs[--buffers->rb_recv_index] = rep;
1356 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1360 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1364 rpcrdma_register_internal(struct rpcrdma_ia *ia, void *va, int len,
1365 struct ib_mr **mrp, struct ib_sge *iov)
1367 struct ib_phys_buf ipb;
1372 * All memory passed here was kmalloc'ed, therefore phys-contiguous.
1374 iov->addr = ib_dma_map_single(ia->ri_id->device,
1375 va, len, DMA_BIDIRECTIONAL);
1378 if (ia->ri_have_dma_lkey) {
1380 iov->lkey = ia->ri_dma_lkey;
1382 } else if (ia->ri_bind_mem != NULL) {
1384 iov->lkey = ia->ri_bind_mem->lkey;
1388 ipb.addr = iov->addr;
1389 ipb.size = iov->length;
1390 mr = ib_reg_phys_mr(ia->ri_pd, &ipb, 1,
1391 IB_ACCESS_LOCAL_WRITE, &iov->addr);
1393 dprintk("RPC: %s: phys convert: 0x%llx "
1394 "registered 0x%llx length %d\n",
1395 __func__, (unsigned long long)ipb.addr,
1396 (unsigned long long)iov->addr, len);
1401 dprintk("RPC: %s: failed with %i\n", __func__, rc);
1404 iov->lkey = mr->lkey;
1412 rpcrdma_deregister_internal(struct rpcrdma_ia *ia,
1413 struct ib_mr *mr, struct ib_sge *iov)
1417 ib_dma_unmap_single(ia->ri_id->device,
1418 iov->addr, iov->length, DMA_BIDIRECTIONAL);
1423 rc = ib_dereg_mr(mr);
1425 dprintk("RPC: %s: ib_dereg_mr failed %i\n", __func__, rc);
1430 * Wrappers for chunk registration, shared by read/write chunk code.
1434 rpcrdma_map_one(struct rpcrdma_ia *ia, struct rpcrdma_mr_seg *seg, int writing)
1436 seg->mr_dir = writing ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1437 seg->mr_dmalen = seg->mr_len;
1439 seg->mr_dma = ib_dma_map_page(ia->ri_id->device,
1440 seg->mr_page, offset_in_page(seg->mr_offset),
1441 seg->mr_dmalen, seg->mr_dir);
1443 seg->mr_dma = ib_dma_map_single(ia->ri_id->device,
1445 seg->mr_dmalen, seg->mr_dir);
1449 rpcrdma_unmap_one(struct rpcrdma_ia *ia, struct rpcrdma_mr_seg *seg)
1452 ib_dma_unmap_page(ia->ri_id->device,
1453 seg->mr_dma, seg->mr_dmalen, seg->mr_dir);
1455 ib_dma_unmap_single(ia->ri_id->device,
1456 seg->mr_dma, seg->mr_dmalen, seg->mr_dir);
1460 rpcrdma_register_frmr_external(struct rpcrdma_mr_seg *seg,
1461 int *nsegs, int writing, struct rpcrdma_ia *ia,
1462 struct rpcrdma_xprt *r_xprt)
1464 struct rpcrdma_mr_seg *seg1 = seg;
1465 struct ib_send_wr frmr_wr, *bad_wr;
1470 pageoff = offset_in_page(seg1->mr_offset);
1471 seg1->mr_offset -= pageoff; /* start of page */
1472 seg1->mr_len += pageoff;
1474 if (*nsegs > RPCRDMA_MAX_DATA_SEGS)
1475 *nsegs = RPCRDMA_MAX_DATA_SEGS;
1476 for (i = 0; i < *nsegs;) {
1477 rpcrdma_map_one(ia, seg, writing);
1478 seg1->mr_chunk.rl_mw->r.frmr.fr_pgl->page_list[i] = seg->mr_dma;
1482 /* Check for holes */
1483 if ((i < *nsegs && offset_in_page(seg->mr_offset)) ||
1484 offset_in_page((seg-1)->mr_offset + (seg-1)->mr_len))
1487 dprintk("RPC: %s: Using frmr %p to map %d segments\n",
1488 __func__, seg1->mr_chunk.rl_mw, i);
1491 key = (u8)(seg1->mr_chunk.rl_mw->r.frmr.fr_mr->rkey & 0x000000FF);
1492 ib_update_fast_reg_key(seg1->mr_chunk.rl_mw->r.frmr.fr_mr, ++key);
1494 /* Prepare FRMR WR */
1495 memset(&frmr_wr, 0, sizeof frmr_wr);
1496 frmr_wr.opcode = IB_WR_FAST_REG_MR;
1497 frmr_wr.send_flags = 0; /* unsignaled */
1498 frmr_wr.wr.fast_reg.iova_start = (unsigned long)seg1->mr_dma;
1499 frmr_wr.wr.fast_reg.page_list = seg1->mr_chunk.rl_mw->r.frmr.fr_pgl;
1500 frmr_wr.wr.fast_reg.page_list_len = i;
1501 frmr_wr.wr.fast_reg.page_shift = PAGE_SHIFT;
1502 frmr_wr.wr.fast_reg.length = i << PAGE_SHIFT;
1503 frmr_wr.wr.fast_reg.access_flags = (writing ?
1504 IB_ACCESS_REMOTE_WRITE : IB_ACCESS_REMOTE_READ);
1505 frmr_wr.wr.fast_reg.rkey = seg1->mr_chunk.rl_mw->r.frmr.fr_mr->rkey;
1506 DECR_CQCOUNT(&r_xprt->rx_ep);
1508 rc = ib_post_send(ia->ri_id->qp, &frmr_wr, &bad_wr);
1511 dprintk("RPC: %s: failed ib_post_send for register,"
1512 " status %i\n", __func__, rc);
1514 rpcrdma_unmap_one(ia, --seg);
1516 seg1->mr_rkey = seg1->mr_chunk.rl_mw->r.frmr.fr_mr->rkey;
1517 seg1->mr_base = seg1->mr_dma + pageoff;
1526 rpcrdma_deregister_frmr_external(struct rpcrdma_mr_seg *seg,
1527 struct rpcrdma_ia *ia, struct rpcrdma_xprt *r_xprt)
1529 struct rpcrdma_mr_seg *seg1 = seg;
1530 struct ib_send_wr invalidate_wr, *bad_wr;
1533 while (seg1->mr_nsegs--)
1534 rpcrdma_unmap_one(ia, seg++);
1536 memset(&invalidate_wr, 0, sizeof invalidate_wr);
1537 invalidate_wr.opcode = IB_WR_LOCAL_INV;
1538 invalidate_wr.send_flags = 0; /* unsignaled */
1539 invalidate_wr.ex.invalidate_rkey = seg1->mr_chunk.rl_mw->r.frmr.fr_mr->rkey;
1540 DECR_CQCOUNT(&r_xprt->rx_ep);
1542 rc = ib_post_send(ia->ri_id->qp, &invalidate_wr, &bad_wr);
1544 dprintk("RPC: %s: failed ib_post_send for invalidate,"
1545 " status %i\n", __func__, rc);
1550 rpcrdma_register_fmr_external(struct rpcrdma_mr_seg *seg,
1551 int *nsegs, int writing, struct rpcrdma_ia *ia)
1553 struct rpcrdma_mr_seg *seg1 = seg;
1554 u64 physaddrs[RPCRDMA_MAX_DATA_SEGS];
1555 int len, pageoff, i, rc;
1557 pageoff = offset_in_page(seg1->mr_offset);
1558 seg1->mr_offset -= pageoff; /* start of page */
1559 seg1->mr_len += pageoff;
1561 if (*nsegs > RPCRDMA_MAX_DATA_SEGS)
1562 *nsegs = RPCRDMA_MAX_DATA_SEGS;
1563 for (i = 0; i < *nsegs;) {
1564 rpcrdma_map_one(ia, seg, writing);
1565 physaddrs[i] = seg->mr_dma;
1569 /* Check for holes */
1570 if ((i < *nsegs && offset_in_page(seg->mr_offset)) ||
1571 offset_in_page((seg-1)->mr_offset + (seg-1)->mr_len))
1574 rc = ib_map_phys_fmr(seg1->mr_chunk.rl_mw->r.fmr,
1575 physaddrs, i, seg1->mr_dma);
1577 dprintk("RPC: %s: failed ib_map_phys_fmr "
1578 "%u@0x%llx+%i (%d)... status %i\n", __func__,
1579 len, (unsigned long long)seg1->mr_dma,
1582 rpcrdma_unmap_one(ia, --seg);
1584 seg1->mr_rkey = seg1->mr_chunk.rl_mw->r.fmr->rkey;
1585 seg1->mr_base = seg1->mr_dma + pageoff;
1594 rpcrdma_deregister_fmr_external(struct rpcrdma_mr_seg *seg,
1595 struct rpcrdma_ia *ia)
1597 struct rpcrdma_mr_seg *seg1 = seg;
1601 list_add(&seg1->mr_chunk.rl_mw->r.fmr->list, &l);
1602 rc = ib_unmap_fmr(&l);
1603 while (seg1->mr_nsegs--)
1604 rpcrdma_unmap_one(ia, seg++);
1606 dprintk("RPC: %s: failed ib_unmap_fmr,"
1607 " status %i\n", __func__, rc);
1612 rpcrdma_register_memwin_external(struct rpcrdma_mr_seg *seg,
1613 int *nsegs, int writing, struct rpcrdma_ia *ia,
1614 struct rpcrdma_xprt *r_xprt)
1616 int mem_priv = (writing ? IB_ACCESS_REMOTE_WRITE :
1617 IB_ACCESS_REMOTE_READ);
1618 struct ib_mw_bind param;
1622 rpcrdma_map_one(ia, seg, writing);
1623 param.mr = ia->ri_bind_mem;
1624 param.wr_id = 0ULL; /* no send cookie */
1625 param.addr = seg->mr_dma;
1626 param.length = seg->mr_len;
1627 param.send_flags = 0;
1628 param.mw_access_flags = mem_priv;
1630 DECR_CQCOUNT(&r_xprt->rx_ep);
1631 rc = ib_bind_mw(ia->ri_id->qp, seg->mr_chunk.rl_mw->r.mw, ¶m);
1633 dprintk("RPC: %s: failed ib_bind_mw "
1634 "%u@0x%llx status %i\n",
1635 __func__, seg->mr_len,
1636 (unsigned long long)seg->mr_dma, rc);
1637 rpcrdma_unmap_one(ia, seg);
1639 seg->mr_rkey = seg->mr_chunk.rl_mw->r.mw->rkey;
1640 seg->mr_base = param.addr;
1647 rpcrdma_deregister_memwin_external(struct rpcrdma_mr_seg *seg,
1648 struct rpcrdma_ia *ia,
1649 struct rpcrdma_xprt *r_xprt, void **r)
1651 struct ib_mw_bind param;
1655 BUG_ON(seg->mr_nsegs != 1);
1656 param.mr = ia->ri_bind_mem;
1657 param.addr = 0ULL; /* unbind */
1659 param.mw_access_flags = 0;
1661 param.wr_id = (u64) (unsigned long) *r;
1662 param.send_flags = IB_SEND_SIGNALED;
1663 INIT_CQCOUNT(&r_xprt->rx_ep);
1666 param.send_flags = 0;
1667 DECR_CQCOUNT(&r_xprt->rx_ep);
1669 rc = ib_bind_mw(ia->ri_id->qp, seg->mr_chunk.rl_mw->r.mw, ¶m);
1670 rpcrdma_unmap_one(ia, seg);
1672 dprintk("RPC: %s: failed ib_(un)bind_mw,"
1673 " status %i\n", __func__, rc);
1675 *r = NULL; /* will upcall on completion */
1680 rpcrdma_register_default_external(struct rpcrdma_mr_seg *seg,
1681 int *nsegs, int writing, struct rpcrdma_ia *ia)
1683 int mem_priv = (writing ? IB_ACCESS_REMOTE_WRITE :
1684 IB_ACCESS_REMOTE_READ);
1685 struct rpcrdma_mr_seg *seg1 = seg;
1686 struct ib_phys_buf ipb[RPCRDMA_MAX_DATA_SEGS];
1689 if (*nsegs > RPCRDMA_MAX_DATA_SEGS)
1690 *nsegs = RPCRDMA_MAX_DATA_SEGS;
1691 for (len = 0, i = 0; i < *nsegs;) {
1692 rpcrdma_map_one(ia, seg, writing);
1693 ipb[i].addr = seg->mr_dma;
1694 ipb[i].size = seg->mr_len;
1698 /* Check for holes */
1699 if ((i < *nsegs && offset_in_page(seg->mr_offset)) ||
1700 offset_in_page((seg-1)->mr_offset+(seg-1)->mr_len))
1703 seg1->mr_base = seg1->mr_dma;
1704 seg1->mr_chunk.rl_mr = ib_reg_phys_mr(ia->ri_pd,
1705 ipb, i, mem_priv, &seg1->mr_base);
1706 if (IS_ERR(seg1->mr_chunk.rl_mr)) {
1707 rc = PTR_ERR(seg1->mr_chunk.rl_mr);
1708 dprintk("RPC: %s: failed ib_reg_phys_mr "
1709 "%u@0x%llx (%d)... status %i\n",
1711 (unsigned long long)seg1->mr_dma, i, rc);
1713 rpcrdma_unmap_one(ia, --seg);
1715 seg1->mr_rkey = seg1->mr_chunk.rl_mr->rkey;
1724 rpcrdma_deregister_default_external(struct rpcrdma_mr_seg *seg,
1725 struct rpcrdma_ia *ia)
1727 struct rpcrdma_mr_seg *seg1 = seg;
1730 rc = ib_dereg_mr(seg1->mr_chunk.rl_mr);
1731 seg1->mr_chunk.rl_mr = NULL;
1732 while (seg1->mr_nsegs--)
1733 rpcrdma_unmap_one(ia, seg++);
1735 dprintk("RPC: %s: failed ib_dereg_mr,"
1736 " status %i\n", __func__, rc);
1741 rpcrdma_register_external(struct rpcrdma_mr_seg *seg,
1742 int nsegs, int writing, struct rpcrdma_xprt *r_xprt)
1744 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1747 switch (ia->ri_memreg_strategy) {
1749 #if RPCRDMA_PERSISTENT_REGISTRATION
1750 case RPCRDMA_ALLPHYSICAL:
1751 rpcrdma_map_one(ia, seg, writing);
1752 seg->mr_rkey = ia->ri_bind_mem->rkey;
1753 seg->mr_base = seg->mr_dma;
1759 /* Registration using frmr registration */
1761 rc = rpcrdma_register_frmr_external(seg, &nsegs, writing, ia, r_xprt);
1764 /* Registration using fmr memory registration */
1765 case RPCRDMA_MTHCAFMR:
1766 rc = rpcrdma_register_fmr_external(seg, &nsegs, writing, ia);
1769 /* Registration using memory windows */
1770 case RPCRDMA_MEMWINDOWS_ASYNC:
1771 case RPCRDMA_MEMWINDOWS:
1772 rc = rpcrdma_register_memwin_external(seg, &nsegs, writing, ia, r_xprt);
1775 /* Default registration each time */
1777 rc = rpcrdma_register_default_external(seg, &nsegs, writing, ia);
1787 rpcrdma_deregister_external(struct rpcrdma_mr_seg *seg,
1788 struct rpcrdma_xprt *r_xprt, void *r)
1790 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1791 int nsegs = seg->mr_nsegs, rc;
1793 switch (ia->ri_memreg_strategy) {
1795 #if RPCRDMA_PERSISTENT_REGISTRATION
1796 case RPCRDMA_ALLPHYSICAL:
1798 rpcrdma_unmap_one(ia, seg);
1804 rc = rpcrdma_deregister_frmr_external(seg, ia, r_xprt);
1807 case RPCRDMA_MTHCAFMR:
1808 rc = rpcrdma_deregister_fmr_external(seg, ia);
1811 case RPCRDMA_MEMWINDOWS_ASYNC:
1812 case RPCRDMA_MEMWINDOWS:
1813 rc = rpcrdma_deregister_memwin_external(seg, ia, r_xprt, &r);
1817 rc = rpcrdma_deregister_default_external(seg, ia);
1821 struct rpcrdma_rep *rep = r;
1822 void (*func)(struct rpcrdma_rep *) = rep->rr_func;
1823 rep->rr_func = NULL;
1824 func(rep); /* dereg done, callback now */
1830 * Prepost any receive buffer, then post send.
1832 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1835 rpcrdma_ep_post(struct rpcrdma_ia *ia,
1836 struct rpcrdma_ep *ep,
1837 struct rpcrdma_req *req)
1839 struct ib_send_wr send_wr, *send_wr_fail;
1840 struct rpcrdma_rep *rep = req->rl_reply;
1844 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1847 req->rl_reply = NULL;
1850 send_wr.next = NULL;
1851 send_wr.wr_id = 0ULL; /* no send cookie */
1852 send_wr.sg_list = req->rl_send_iov;
1853 send_wr.num_sge = req->rl_niovs;
1854 send_wr.opcode = IB_WR_SEND;
1855 if (send_wr.num_sge == 4) /* no need to sync any pad (constant) */
1856 ib_dma_sync_single_for_device(ia->ri_id->device,
1857 req->rl_send_iov[3].addr, req->rl_send_iov[3].length,
1859 ib_dma_sync_single_for_device(ia->ri_id->device,
1860 req->rl_send_iov[1].addr, req->rl_send_iov[1].length,
1862 ib_dma_sync_single_for_device(ia->ri_id->device,
1863 req->rl_send_iov[0].addr, req->rl_send_iov[0].length,
1866 if (DECR_CQCOUNT(ep) > 0)
1867 send_wr.send_flags = 0;
1868 else { /* Provider must take a send completion every now and then */
1870 send_wr.send_flags = IB_SEND_SIGNALED;
1873 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail);
1875 dprintk("RPC: %s: ib_post_send returned %i\n", __func__,
1882 * (Re)post a receive buffer.
1885 rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
1886 struct rpcrdma_ep *ep,
1887 struct rpcrdma_rep *rep)
1889 struct ib_recv_wr recv_wr, *recv_wr_fail;
1892 recv_wr.next = NULL;
1893 recv_wr.wr_id = (u64) (unsigned long) rep;
1894 recv_wr.sg_list = &rep->rr_iov;
1895 recv_wr.num_sge = 1;
1897 ib_dma_sync_single_for_cpu(ia->ri_id->device,
1898 rep->rr_iov.addr, rep->rr_iov.length, DMA_BIDIRECTIONAL);
1901 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
1904 dprintk("RPC: %s: ib_post_recv returned %i\n", __func__,