]> asedeno.scripts.mit.edu Git - linux.git/blob - net/sunrpc/xprtrdma/verbs.c
xprtrdma: Use an llist to manage free rpcrdma_reps
[linux.git] / net / sunrpc / xprtrdma / verbs.c
1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2 /*
3  * Copyright (c) 2014-2017 Oracle.  All rights reserved.
4  * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
5  *
6  * This software is available to you under a choice of one of two
7  * licenses.  You may choose to be licensed under the terms of the GNU
8  * General Public License (GPL) Version 2, available from the file
9  * COPYING in the main directory of this source tree, or the BSD-type
10  * license below:
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  *
16  *      Redistributions of source code must retain the above copyright
17  *      notice, this list of conditions and the following disclaimer.
18  *
19  *      Redistributions in binary form must reproduce the above
20  *      copyright notice, this list of conditions and the following
21  *      disclaimer in the documentation and/or other materials provided
22  *      with the distribution.
23  *
24  *      Neither the name of the Network Appliance, Inc. nor the names of
25  *      its contributors may be used to endorse or promote products
26  *      derived from this software without specific prior written
27  *      permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41
42 /*
43  * verbs.c
44  *
45  * Encapsulates the major functions managing:
46  *  o adapters
47  *  o endpoints
48  *  o connections
49  *  o buffer memory
50  */
51
52 #include <linux/interrupt.h>
53 #include <linux/slab.h>
54 #include <linux/sunrpc/addr.h>
55 #include <linux/sunrpc/svc_rdma.h>
56 #include <linux/log2.h>
57
58 #include <asm-generic/barrier.h>
59 #include <asm/bitops.h>
60
61 #include <rdma/ib_cm.h>
62
63 #include "xprt_rdma.h"
64 #include <trace/events/rpcrdma.h>
65
66 /*
67  * Globals/Macros
68  */
69
70 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
71 # define RPCDBG_FACILITY        RPCDBG_TRANS
72 #endif
73
74 /*
75  * internal functions
76  */
77 static void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc);
78 static void rpcrdma_reps_destroy(struct rpcrdma_buffer *buf);
79 static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
80 static void rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf);
81 static void rpcrdma_mr_free(struct rpcrdma_mr *mr);
82 static struct rpcrdma_regbuf *
83 rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
84                      gfp_t flags);
85 static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb);
86 static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb);
87 static void rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, bool temp);
88
89 /* Wait for outstanding transport work to finish. ib_drain_qp
90  * handles the drains in the wrong order for us, so open code
91  * them here.
92  */
93 static void rpcrdma_xprt_drain(struct rpcrdma_xprt *r_xprt)
94 {
95         struct rpcrdma_ia *ia = &r_xprt->rx_ia;
96
97         /* Flush Receives, then wait for deferred Reply work
98          * to complete.
99          */
100         ib_drain_rq(ia->ri_id->qp);
101
102         /* Deferred Reply processing might have scheduled
103          * local invalidations.
104          */
105         ib_drain_sq(ia->ri_id->qp);
106 }
107
108 /**
109  * rpcrdma_qp_event_handler - Handle one QP event (error notification)
110  * @event: details of the event
111  * @context: ep that owns QP where event occurred
112  *
113  * Called from the RDMA provider (device driver) possibly in an interrupt
114  * context.
115  */
116 static void
117 rpcrdma_qp_event_handler(struct ib_event *event, void *context)
118 {
119         struct rpcrdma_ep *ep = context;
120         struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
121                                                    rx_ep);
122
123         trace_xprtrdma_qp_event(r_xprt, event);
124 }
125
126 /**
127  * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
128  * @cq: completion queue (ignored)
129  * @wc: completed WR
130  *
131  */
132 static void
133 rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
134 {
135         struct ib_cqe *cqe = wc->wr_cqe;
136         struct rpcrdma_sendctx *sc =
137                 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
138
139         /* WARNING: Only wr_cqe and status are reliable at this point */
140         trace_xprtrdma_wc_send(sc, wc);
141         rpcrdma_sendctx_put_locked(sc);
142 }
143
144 /**
145  * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
146  * @cq: completion queue (ignored)
147  * @wc: completed WR
148  *
149  */
150 static void
151 rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
152 {
153         struct ib_cqe *cqe = wc->wr_cqe;
154         struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
155                                                rr_cqe);
156         struct rpcrdma_xprt *r_xprt = rep->rr_rxprt;
157
158         /* WARNING: Only wr_cqe and status are reliable at this point */
159         trace_xprtrdma_wc_receive(wc);
160         --r_xprt->rx_ep.rep_receive_count;
161         if (wc->status != IB_WC_SUCCESS)
162                 goto out_flushed;
163
164         /* status == SUCCESS means all fields in wc are trustworthy */
165         rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
166         rep->rr_wc_flags = wc->wc_flags;
167         rep->rr_inv_rkey = wc->ex.invalidate_rkey;
168
169         ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
170                                    rdmab_addr(rep->rr_rdmabuf),
171                                    wc->byte_len, DMA_FROM_DEVICE);
172
173         rpcrdma_post_recvs(r_xprt, false);
174         rpcrdma_reply_handler(rep);
175         return;
176
177 out_flushed:
178         rpcrdma_recv_buffer_put(rep);
179 }
180
181 static void
182 rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
183                                struct rdma_conn_param *param)
184 {
185         const struct rpcrdma_connect_private *pmsg = param->private_data;
186         unsigned int rsize, wsize;
187
188         /* Default settings for RPC-over-RDMA Version One */
189         r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
190         rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
191         wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
192
193         if (pmsg &&
194             pmsg->cp_magic == rpcrdma_cmp_magic &&
195             pmsg->cp_version == RPCRDMA_CMP_VERSION) {
196                 r_xprt->rx_ia.ri_implicit_roundup = true;
197                 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
198                 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
199         }
200
201         if (rsize < r_xprt->rx_ep.rep_inline_recv)
202                 r_xprt->rx_ep.rep_inline_recv = rsize;
203         if (wsize < r_xprt->rx_ep.rep_inline_send)
204                 r_xprt->rx_ep.rep_inline_send = wsize;
205         dprintk("RPC:       %s: max send %u, max recv %u\n", __func__,
206                 r_xprt->rx_ep.rep_inline_send,
207                 r_xprt->rx_ep.rep_inline_recv);
208         rpcrdma_set_max_header_sizes(r_xprt);
209 }
210
211 /**
212  * rpcrdma_cm_event_handler - Handle RDMA CM events
213  * @id: rdma_cm_id on which an event has occurred
214  * @event: details of the event
215  *
216  * Called with @id's mutex held. Returns 1 if caller should
217  * destroy @id, otherwise 0.
218  */
219 static int
220 rpcrdma_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
221 {
222         struct rpcrdma_xprt *r_xprt = id->context;
223         struct rpcrdma_ia *ia = &r_xprt->rx_ia;
224         struct rpcrdma_ep *ep = &r_xprt->rx_ep;
225         struct rpc_xprt *xprt = &r_xprt->rx_xprt;
226
227         might_sleep();
228
229         trace_xprtrdma_cm_event(r_xprt, event);
230         switch (event->event) {
231         case RDMA_CM_EVENT_ADDR_RESOLVED:
232         case RDMA_CM_EVENT_ROUTE_RESOLVED:
233                 ia->ri_async_rc = 0;
234                 complete(&ia->ri_done);
235                 return 0;
236         case RDMA_CM_EVENT_ADDR_ERROR:
237                 ia->ri_async_rc = -EPROTO;
238                 complete(&ia->ri_done);
239                 return 0;
240         case RDMA_CM_EVENT_ROUTE_ERROR:
241                 ia->ri_async_rc = -ENETUNREACH;
242                 complete(&ia->ri_done);
243                 return 0;
244         case RDMA_CM_EVENT_DEVICE_REMOVAL:
245 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
246                 pr_info("rpcrdma: removing device %s for %s:%s\n",
247                         ia->ri_id->device->name,
248                         rpcrdma_addrstr(r_xprt), rpcrdma_portstr(r_xprt));
249 #endif
250                 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
251                 ep->rep_connected = -ENODEV;
252                 xprt_force_disconnect(xprt);
253                 wait_for_completion(&ia->ri_remove_done);
254
255                 ia->ri_id = NULL;
256                 /* Return 1 to ensure the core destroys the id. */
257                 return 1;
258         case RDMA_CM_EVENT_ESTABLISHED:
259                 ++xprt->connect_cookie;
260                 ep->rep_connected = 1;
261                 rpcrdma_update_connect_private(r_xprt, &event->param.conn);
262                 wake_up_all(&ep->rep_connect_wait);
263                 break;
264         case RDMA_CM_EVENT_CONNECT_ERROR:
265                 ep->rep_connected = -ENOTCONN;
266                 goto disconnected;
267         case RDMA_CM_EVENT_UNREACHABLE:
268                 ep->rep_connected = -ENETUNREACH;
269                 goto disconnected;
270         case RDMA_CM_EVENT_REJECTED:
271                 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
272                         rpcrdma_addrstr(r_xprt), rpcrdma_portstr(r_xprt),
273                         rdma_reject_msg(id, event->status));
274                 ep->rep_connected = -ECONNREFUSED;
275                 if (event->status == IB_CM_REJ_STALE_CONN)
276                         ep->rep_connected = -EAGAIN;
277                 goto disconnected;
278         case RDMA_CM_EVENT_DISCONNECTED:
279                 ep->rep_connected = -ECONNABORTED;
280 disconnected:
281                 xprt_force_disconnect(xprt);
282                 wake_up_all(&ep->rep_connect_wait);
283                 break;
284         default:
285                 break;
286         }
287
288         dprintk("RPC:       %s: %s:%s on %s/frwr: %s\n", __func__,
289                 rpcrdma_addrstr(r_xprt), rpcrdma_portstr(r_xprt),
290                 ia->ri_id->device->name, rdma_event_msg(event->event));
291         return 0;
292 }
293
294 static struct rdma_cm_id *
295 rpcrdma_create_id(struct rpcrdma_xprt *xprt, struct rpcrdma_ia *ia)
296 {
297         unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
298         struct rdma_cm_id *id;
299         int rc;
300
301         trace_xprtrdma_conn_start(xprt);
302
303         init_completion(&ia->ri_done);
304         init_completion(&ia->ri_remove_done);
305
306         id = rdma_create_id(xprt->rx_xprt.xprt_net, rpcrdma_cm_event_handler,
307                             xprt, RDMA_PS_TCP, IB_QPT_RC);
308         if (IS_ERR(id))
309                 return id;
310
311         ia->ri_async_rc = -ETIMEDOUT;
312         rc = rdma_resolve_addr(id, NULL,
313                                (struct sockaddr *)&xprt->rx_xprt.addr,
314                                RDMA_RESOLVE_TIMEOUT);
315         if (rc)
316                 goto out;
317         rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
318         if (rc < 0) {
319                 trace_xprtrdma_conn_tout(xprt);
320                 goto out;
321         }
322
323         rc = ia->ri_async_rc;
324         if (rc)
325                 goto out;
326
327         ia->ri_async_rc = -ETIMEDOUT;
328         rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
329         if (rc)
330                 goto out;
331         rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
332         if (rc < 0) {
333                 trace_xprtrdma_conn_tout(xprt);
334                 goto out;
335         }
336         rc = ia->ri_async_rc;
337         if (rc)
338                 goto out;
339
340         return id;
341
342 out:
343         rdma_destroy_id(id);
344         return ERR_PTR(rc);
345 }
346
347 /*
348  * Exported functions.
349  */
350
351 /**
352  * rpcrdma_ia_open - Open and initialize an Interface Adapter.
353  * @xprt: transport with IA to (re)initialize
354  *
355  * Returns 0 on success, negative errno if an appropriate
356  * Interface Adapter could not be found and opened.
357  */
358 int
359 rpcrdma_ia_open(struct rpcrdma_xprt *xprt)
360 {
361         struct rpcrdma_ia *ia = &xprt->rx_ia;
362         int rc;
363
364         ia->ri_id = rpcrdma_create_id(xprt, ia);
365         if (IS_ERR(ia->ri_id)) {
366                 rc = PTR_ERR(ia->ri_id);
367                 goto out_err;
368         }
369
370         ia->ri_pd = ib_alloc_pd(ia->ri_id->device, 0);
371         if (IS_ERR(ia->ri_pd)) {
372                 rc = PTR_ERR(ia->ri_pd);
373                 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
374                 goto out_err;
375         }
376
377         switch (xprt_rdma_memreg_strategy) {
378         case RPCRDMA_FRWR:
379                 if (frwr_is_supported(ia->ri_id->device))
380                         break;
381                 /*FALLTHROUGH*/
382         default:
383                 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
384                        ia->ri_id->device->name, xprt_rdma_memreg_strategy);
385                 rc = -EINVAL;
386                 goto out_err;
387         }
388
389         return 0;
390
391 out_err:
392         rpcrdma_ia_close(ia);
393         return rc;
394 }
395
396 /**
397  * rpcrdma_ia_remove - Handle device driver unload
398  * @ia: interface adapter being removed
399  *
400  * Divest transport H/W resources associated with this adapter,
401  * but allow it to be restored later.
402  */
403 void
404 rpcrdma_ia_remove(struct rpcrdma_ia *ia)
405 {
406         struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
407                                                    rx_ia);
408         struct rpcrdma_ep *ep = &r_xprt->rx_ep;
409         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
410         struct rpcrdma_req *req;
411
412         cancel_work_sync(&buf->rb_refresh_worker);
413
414         /* This is similar to rpcrdma_ep_destroy, but:
415          * - Don't cancel the connect worker.
416          * - Don't call rpcrdma_ep_disconnect, which waits
417          *   for another conn upcall, which will deadlock.
418          * - rdma_disconnect is unneeded, the underlying
419          *   connection is already gone.
420          */
421         if (ia->ri_id->qp) {
422                 rpcrdma_xprt_drain(r_xprt);
423                 rdma_destroy_qp(ia->ri_id);
424                 ia->ri_id->qp = NULL;
425         }
426         ib_free_cq(ep->rep_attr.recv_cq);
427         ep->rep_attr.recv_cq = NULL;
428         ib_free_cq(ep->rep_attr.send_cq);
429         ep->rep_attr.send_cq = NULL;
430
431         /* The ULP is responsible for ensuring all DMA
432          * mappings and MRs are gone.
433          */
434         rpcrdma_reps_destroy(buf);
435         list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
436                 rpcrdma_regbuf_dma_unmap(req->rl_rdmabuf);
437                 rpcrdma_regbuf_dma_unmap(req->rl_sendbuf);
438                 rpcrdma_regbuf_dma_unmap(req->rl_recvbuf);
439         }
440         rpcrdma_mrs_destroy(buf);
441         ib_dealloc_pd(ia->ri_pd);
442         ia->ri_pd = NULL;
443
444         /* Allow waiters to continue */
445         complete(&ia->ri_remove_done);
446
447         trace_xprtrdma_remove(r_xprt);
448 }
449
450 /**
451  * rpcrdma_ia_close - Clean up/close an IA.
452  * @ia: interface adapter to close
453  *
454  */
455 void
456 rpcrdma_ia_close(struct rpcrdma_ia *ia)
457 {
458         if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
459                 if (ia->ri_id->qp)
460                         rdma_destroy_qp(ia->ri_id);
461                 rdma_destroy_id(ia->ri_id);
462         }
463         ia->ri_id = NULL;
464
465         /* If the pd is still busy, xprtrdma missed freeing a resource */
466         if (ia->ri_pd && !IS_ERR(ia->ri_pd))
467                 ib_dealloc_pd(ia->ri_pd);
468         ia->ri_pd = NULL;
469 }
470
471 /**
472  * rpcrdma_ep_create - Create unconnected endpoint
473  * @r_xprt: transport to instantiate
474  *
475  * Returns zero on success, or a negative errno.
476  */
477 int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
478 {
479         struct rpcrdma_ep *ep = &r_xprt->rx_ep;
480         struct rpcrdma_ia *ia = &r_xprt->rx_ia;
481         struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
482         struct ib_cq *sendcq, *recvcq;
483         unsigned int max_sge;
484         int rc;
485
486         ep->rep_max_requests = xprt_rdma_slot_table_entries;
487         ep->rep_inline_send = xprt_rdma_max_inline_write;
488         ep->rep_inline_recv = xprt_rdma_max_inline_read;
489
490         max_sge = min_t(unsigned int, ia->ri_id->device->attrs.max_send_sge,
491                         RPCRDMA_MAX_SEND_SGES);
492         if (max_sge < RPCRDMA_MIN_SEND_SGES) {
493                 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
494                 return -ENOMEM;
495         }
496         ia->ri_max_send_sges = max_sge;
497
498         rc = frwr_open(ia, ep);
499         if (rc)
500                 return rc;
501
502         ep->rep_attr.event_handler = rpcrdma_qp_event_handler;
503         ep->rep_attr.qp_context = ep;
504         ep->rep_attr.srq = NULL;
505         ep->rep_attr.cap.max_send_sge = max_sge;
506         ep->rep_attr.cap.max_recv_sge = 1;
507         ep->rep_attr.cap.max_inline_data = 0;
508         ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
509         ep->rep_attr.qp_type = IB_QPT_RC;
510         ep->rep_attr.port_num = ~0;
511
512         dprintk("RPC:       %s: requested max: dtos: send %d recv %d; "
513                 "iovs: send %d recv %d\n",
514                 __func__,
515                 ep->rep_attr.cap.max_send_wr,
516                 ep->rep_attr.cap.max_recv_wr,
517                 ep->rep_attr.cap.max_send_sge,
518                 ep->rep_attr.cap.max_recv_sge);
519
520         ep->rep_send_batch = ep->rep_max_requests >> 3;
521         ep->rep_send_count = ep->rep_send_batch;
522         init_waitqueue_head(&ep->rep_connect_wait);
523         ep->rep_receive_count = 0;
524
525         sendcq = ib_alloc_cq(ia->ri_id->device, NULL,
526                              ep->rep_attr.cap.max_send_wr + 1,
527                              ia->ri_id->device->num_comp_vectors > 1 ? 1 : 0,
528                              IB_POLL_WORKQUEUE);
529         if (IS_ERR(sendcq)) {
530                 rc = PTR_ERR(sendcq);
531                 goto out1;
532         }
533
534         recvcq = ib_alloc_cq(ia->ri_id->device, NULL,
535                              ep->rep_attr.cap.max_recv_wr + 1,
536                              0, IB_POLL_WORKQUEUE);
537         if (IS_ERR(recvcq)) {
538                 rc = PTR_ERR(recvcq);
539                 goto out2;
540         }
541
542         ep->rep_attr.send_cq = sendcq;
543         ep->rep_attr.recv_cq = recvcq;
544
545         /* Initialize cma parameters */
546         memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
547
548         /* Prepare RDMA-CM private message */
549         pmsg->cp_magic = rpcrdma_cmp_magic;
550         pmsg->cp_version = RPCRDMA_CMP_VERSION;
551         pmsg->cp_flags |= RPCRDMA_CMP_F_SND_W_INV_OK;
552         pmsg->cp_send_size = rpcrdma_encode_buffer_size(ep->rep_inline_send);
553         pmsg->cp_recv_size = rpcrdma_encode_buffer_size(ep->rep_inline_recv);
554         ep->rep_remote_cma.private_data = pmsg;
555         ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
556
557         /* Client offers RDMA Read but does not initiate */
558         ep->rep_remote_cma.initiator_depth = 0;
559         ep->rep_remote_cma.responder_resources =
560                 min_t(int, U8_MAX, ia->ri_id->device->attrs.max_qp_rd_atom);
561
562         /* Limit transport retries so client can detect server
563          * GID changes quickly. RPC layer handles re-establishing
564          * transport connection and retransmission.
565          */
566         ep->rep_remote_cma.retry_count = 6;
567
568         /* RPC-over-RDMA handles its own flow control. In addition,
569          * make all RNR NAKs visible so we know that RPC-over-RDMA
570          * flow control is working correctly (no NAKs should be seen).
571          */
572         ep->rep_remote_cma.flow_control = 0;
573         ep->rep_remote_cma.rnr_retry_count = 0;
574
575         return 0;
576
577 out2:
578         ib_free_cq(sendcq);
579 out1:
580         return rc;
581 }
582
583 /**
584  * rpcrdma_ep_destroy - Disconnect and destroy endpoint.
585  * @r_xprt: transport instance to shut down
586  *
587  */
588 void rpcrdma_ep_destroy(struct rpcrdma_xprt *r_xprt)
589 {
590         struct rpcrdma_ep *ep = &r_xprt->rx_ep;
591         struct rpcrdma_ia *ia = &r_xprt->rx_ia;
592
593         if (ia->ri_id && ia->ri_id->qp) {
594                 rpcrdma_ep_disconnect(ep, ia);
595                 rdma_destroy_qp(ia->ri_id);
596                 ia->ri_id->qp = NULL;
597         }
598
599         if (ep->rep_attr.recv_cq)
600                 ib_free_cq(ep->rep_attr.recv_cq);
601         if (ep->rep_attr.send_cq)
602                 ib_free_cq(ep->rep_attr.send_cq);
603 }
604
605 /* Re-establish a connection after a device removal event.
606  * Unlike a normal reconnection, a fresh PD and a new set
607  * of MRs and buffers is needed.
608  */
609 static int
610 rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
611                          struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
612 {
613         int rc, err;
614
615         trace_xprtrdma_reinsert(r_xprt);
616
617         rc = -EHOSTUNREACH;
618         if (rpcrdma_ia_open(r_xprt))
619                 goto out1;
620
621         rc = -ENOMEM;
622         err = rpcrdma_ep_create(r_xprt);
623         if (err) {
624                 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
625                 goto out2;
626         }
627
628         rc = -ENETUNREACH;
629         err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
630         if (err) {
631                 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
632                 goto out3;
633         }
634
635         rpcrdma_mrs_create(r_xprt);
636         return 0;
637
638 out3:
639         rpcrdma_ep_destroy(r_xprt);
640 out2:
641         rpcrdma_ia_close(ia);
642 out1:
643         return rc;
644 }
645
646 static int
647 rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
648                      struct rpcrdma_ia *ia)
649 {
650         struct rdma_cm_id *id, *old;
651         int err, rc;
652
653         trace_xprtrdma_reconnect(r_xprt);
654
655         rpcrdma_ep_disconnect(ep, ia);
656
657         rc = -EHOSTUNREACH;
658         id = rpcrdma_create_id(r_xprt, ia);
659         if (IS_ERR(id))
660                 goto out;
661
662         /* As long as the new ID points to the same device as the
663          * old ID, we can reuse the transport's existing PD and all
664          * previously allocated MRs. Also, the same device means
665          * the transport's previous DMA mappings are still valid.
666          *
667          * This is a sanity check only. There should be no way these
668          * point to two different devices here.
669          */
670         old = id;
671         rc = -ENETUNREACH;
672         if (ia->ri_id->device != id->device) {
673                 pr_err("rpcrdma: can't reconnect on different device!\n");
674                 goto out_destroy;
675         }
676
677         err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
678         if (err)
679                 goto out_destroy;
680
681         /* Atomically replace the transport's ID and QP. */
682         rc = 0;
683         old = ia->ri_id;
684         ia->ri_id = id;
685         rdma_destroy_qp(old);
686
687 out_destroy:
688         rdma_destroy_id(old);
689 out:
690         return rc;
691 }
692
693 /*
694  * Connect unconnected endpoint.
695  */
696 int
697 rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
698 {
699         struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
700                                                    rx_ia);
701         struct rpc_xprt *xprt = &r_xprt->rx_xprt;
702         int rc;
703
704 retry:
705         switch (ep->rep_connected) {
706         case 0:
707                 dprintk("RPC:       %s: connecting...\n", __func__);
708                 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
709                 if (rc) {
710                         rc = -ENETUNREACH;
711                         goto out_noupdate;
712                 }
713                 break;
714         case -ENODEV:
715                 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
716                 if (rc)
717                         goto out_noupdate;
718                 break;
719         default:
720                 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
721                 if (rc)
722                         goto out;
723         }
724
725         ep->rep_connected = 0;
726         xprt_clear_connected(xprt);
727
728         rpcrdma_post_recvs(r_xprt, true);
729
730         rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
731         if (rc)
732                 goto out;
733
734         wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
735         if (ep->rep_connected <= 0) {
736                 if (ep->rep_connected == -EAGAIN)
737                         goto retry;
738                 rc = ep->rep_connected;
739                 goto out;
740         }
741
742         dprintk("RPC:       %s: connected\n", __func__);
743
744 out:
745         if (rc)
746                 ep->rep_connected = rc;
747
748 out_noupdate:
749         return rc;
750 }
751
752 /**
753  * rpcrdma_ep_disconnect - Disconnect underlying transport
754  * @ep: endpoint to disconnect
755  * @ia: associated interface adapter
756  *
757  * This is separate from destroy to facilitate the ability
758  * to reconnect without recreating the endpoint.
759  *
760  * This call is not reentrant, and must not be made in parallel
761  * on the same endpoint.
762  */
763 void
764 rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
765 {
766         struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
767                                                    rx_ep);
768         int rc;
769
770         /* returns without wait if ID is not connected */
771         rc = rdma_disconnect(ia->ri_id);
772         if (!rc)
773                 wait_event_interruptible(ep->rep_connect_wait,
774                                                         ep->rep_connected != 1);
775         else
776                 ep->rep_connected = rc;
777         trace_xprtrdma_disconnect(r_xprt, rc);
778
779         rpcrdma_xprt_drain(r_xprt);
780 }
781
782 /* Fixed-size circular FIFO queue. This implementation is wait-free and
783  * lock-free.
784  *
785  * Consumer is the code path that posts Sends. This path dequeues a
786  * sendctx for use by a Send operation. Multiple consumer threads
787  * are serialized by the RPC transport lock, which allows only one
788  * ->send_request call at a time.
789  *
790  * Producer is the code path that handles Send completions. This path
791  * enqueues a sendctx that has been completed. Multiple producer
792  * threads are serialized by the ib_poll_cq() function.
793  */
794
795 /* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
796  * queue activity, and rpcrdma_xprt_drain has flushed all remaining
797  * Send requests.
798  */
799 static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
800 {
801         unsigned long i;
802
803         for (i = 0; i <= buf->rb_sc_last; i++)
804                 kfree(buf->rb_sc_ctxs[i]);
805         kfree(buf->rb_sc_ctxs);
806 }
807
808 static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
809 {
810         struct rpcrdma_sendctx *sc;
811
812         sc = kzalloc(struct_size(sc, sc_sges, ia->ri_max_send_sges),
813                      GFP_KERNEL);
814         if (!sc)
815                 return NULL;
816
817         sc->sc_wr.wr_cqe = &sc->sc_cqe;
818         sc->sc_wr.sg_list = sc->sc_sges;
819         sc->sc_wr.opcode = IB_WR_SEND;
820         sc->sc_cqe.done = rpcrdma_wc_send;
821         return sc;
822 }
823
824 static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
825 {
826         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
827         struct rpcrdma_sendctx *sc;
828         unsigned long i;
829
830         /* Maximum number of concurrent outstanding Send WRs. Capping
831          * the circular queue size stops Send Queue overflow by causing
832          * the ->send_request call to fail temporarily before too many
833          * Sends are posted.
834          */
835         i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
836         dprintk("RPC:       %s: allocating %lu send_ctxs\n", __func__, i);
837         buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
838         if (!buf->rb_sc_ctxs)
839                 return -ENOMEM;
840
841         buf->rb_sc_last = i - 1;
842         for (i = 0; i <= buf->rb_sc_last; i++) {
843                 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
844                 if (!sc)
845                         return -ENOMEM;
846
847                 sc->sc_xprt = r_xprt;
848                 buf->rb_sc_ctxs[i] = sc;
849         }
850
851         return 0;
852 }
853
854 /* The sendctx queue is not guaranteed to have a size that is a
855  * power of two, thus the helpers in circ_buf.h cannot be used.
856  * The other option is to use modulus (%), which can be expensive.
857  */
858 static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
859                                           unsigned long item)
860 {
861         return likely(item < buf->rb_sc_last) ? item + 1 : 0;
862 }
863
864 /**
865  * rpcrdma_sendctx_get_locked - Acquire a send context
866  * @r_xprt: controlling transport instance
867  *
868  * Returns pointer to a free send completion context; or NULL if
869  * the queue is empty.
870  *
871  * Usage: Called to acquire an SGE array before preparing a Send WR.
872  *
873  * The caller serializes calls to this function (per transport), and
874  * provides an effective memory barrier that flushes the new value
875  * of rb_sc_head.
876  */
877 struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_xprt *r_xprt)
878 {
879         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
880         struct rpcrdma_sendctx *sc;
881         unsigned long next_head;
882
883         next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
884
885         if (next_head == READ_ONCE(buf->rb_sc_tail))
886                 goto out_emptyq;
887
888         /* ORDER: item must be accessed _before_ head is updated */
889         sc = buf->rb_sc_ctxs[next_head];
890
891         /* Releasing the lock in the caller acts as a memory
892          * barrier that flushes rb_sc_head.
893          */
894         buf->rb_sc_head = next_head;
895
896         return sc;
897
898 out_emptyq:
899         /* The queue is "empty" if there have not been enough Send
900          * completions recently. This is a sign the Send Queue is
901          * backing up. Cause the caller to pause and try again.
902          */
903         xprt_wait_for_buffer_space(&r_xprt->rx_xprt);
904         r_xprt->rx_stats.empty_sendctx_q++;
905         return NULL;
906 }
907
908 /**
909  * rpcrdma_sendctx_put_locked - Release a send context
910  * @sc: send context to release
911  *
912  * Usage: Called from Send completion to return a sendctxt
913  * to the queue.
914  *
915  * The caller serializes calls to this function (per transport).
916  */
917 static void
918 rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
919 {
920         struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
921         unsigned long next_tail;
922
923         /* Unmap SGEs of previously completed but unsignaled
924          * Sends by walking up the queue until @sc is found.
925          */
926         next_tail = buf->rb_sc_tail;
927         do {
928                 next_tail = rpcrdma_sendctx_next(buf, next_tail);
929
930                 /* ORDER: item must be accessed _before_ tail is updated */
931                 rpcrdma_sendctx_unmap(buf->rb_sc_ctxs[next_tail]);
932
933         } while (buf->rb_sc_ctxs[next_tail] != sc);
934
935         /* Paired with READ_ONCE */
936         smp_store_release(&buf->rb_sc_tail, next_tail);
937
938         xprt_write_space(&sc->sc_xprt->rx_xprt);
939 }
940
941 static void
942 rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
943 {
944         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
945         struct rpcrdma_ia *ia = &r_xprt->rx_ia;
946         unsigned int count;
947
948         for (count = 0; count < ia->ri_max_segs; count++) {
949                 struct rpcrdma_mr *mr;
950                 int rc;
951
952                 mr = kzalloc(sizeof(*mr), GFP_NOFS);
953                 if (!mr)
954                         break;
955
956                 rc = frwr_init_mr(ia, mr);
957                 if (rc) {
958                         kfree(mr);
959                         break;
960                 }
961
962                 mr->mr_xprt = r_xprt;
963
964                 spin_lock(&buf->rb_lock);
965                 list_add(&mr->mr_list, &buf->rb_mrs);
966                 list_add(&mr->mr_all, &buf->rb_all_mrs);
967                 spin_unlock(&buf->rb_lock);
968         }
969
970         r_xprt->rx_stats.mrs_allocated += count;
971         trace_xprtrdma_createmrs(r_xprt, count);
972 }
973
974 static void
975 rpcrdma_mr_refresh_worker(struct work_struct *work)
976 {
977         struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
978                                                   rb_refresh_worker);
979         struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
980                                                    rx_buf);
981
982         rpcrdma_mrs_create(r_xprt);
983         xprt_write_space(&r_xprt->rx_xprt);
984 }
985
986 /**
987  * rpcrdma_req_create - Allocate an rpcrdma_req object
988  * @r_xprt: controlling r_xprt
989  * @size: initial size, in bytes, of send and receive buffers
990  * @flags: GFP flags passed to memory allocators
991  *
992  * Returns an allocated and fully initialized rpcrdma_req or NULL.
993  */
994 struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt, size_t size,
995                                        gfp_t flags)
996 {
997         struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
998         struct rpcrdma_regbuf *rb;
999         struct rpcrdma_req *req;
1000         size_t maxhdrsize;
1001
1002         req = kzalloc(sizeof(*req), flags);
1003         if (req == NULL)
1004                 goto out1;
1005
1006         /* Compute maximum header buffer size in bytes */
1007         maxhdrsize = rpcrdma_fixed_maxsz + 3 +
1008                      r_xprt->rx_ia.ri_max_segs * rpcrdma_readchunk_maxsz;
1009         maxhdrsize *= sizeof(__be32);
1010         rb = rpcrdma_regbuf_alloc(__roundup_pow_of_two(maxhdrsize),
1011                                   DMA_TO_DEVICE, flags);
1012         if (!rb)
1013                 goto out2;
1014         req->rl_rdmabuf = rb;
1015         xdr_buf_init(&req->rl_hdrbuf, rdmab_data(rb), rdmab_length(rb));
1016
1017         req->rl_sendbuf = rpcrdma_regbuf_alloc(size, DMA_TO_DEVICE, flags);
1018         if (!req->rl_sendbuf)
1019                 goto out3;
1020
1021         req->rl_recvbuf = rpcrdma_regbuf_alloc(size, DMA_NONE, flags);
1022         if (!req->rl_recvbuf)
1023                 goto out4;
1024
1025         INIT_LIST_HEAD(&req->rl_free_mrs);
1026         INIT_LIST_HEAD(&req->rl_registered);
1027         spin_lock(&buffer->rb_lock);
1028         list_add(&req->rl_all, &buffer->rb_allreqs);
1029         spin_unlock(&buffer->rb_lock);
1030         return req;
1031
1032 out4:
1033         kfree(req->rl_sendbuf);
1034 out3:
1035         kfree(req->rl_rdmabuf);
1036 out2:
1037         kfree(req);
1038 out1:
1039         return NULL;
1040 }
1041
1042 static struct rpcrdma_rep *rpcrdma_rep_create(struct rpcrdma_xprt *r_xprt,
1043                                               bool temp)
1044 {
1045         struct rpcrdma_rep *rep;
1046
1047         rep = kzalloc(sizeof(*rep), GFP_KERNEL);
1048         if (rep == NULL)
1049                 goto out;
1050
1051         rep->rr_rdmabuf = rpcrdma_regbuf_alloc(r_xprt->rx_ep.rep_inline_recv,
1052                                                DMA_FROM_DEVICE, GFP_KERNEL);
1053         if (!rep->rr_rdmabuf)
1054                 goto out_free;
1055
1056         xdr_buf_init(&rep->rr_hdrbuf, rdmab_data(rep->rr_rdmabuf),
1057                      rdmab_length(rep->rr_rdmabuf));
1058         rep->rr_cqe.done = rpcrdma_wc_receive;
1059         rep->rr_rxprt = r_xprt;
1060         rep->rr_recv_wr.next = NULL;
1061         rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1062         rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1063         rep->rr_recv_wr.num_sge = 1;
1064         rep->rr_temp = temp;
1065         return rep;
1066
1067 out_free:
1068         kfree(rep);
1069 out:
1070         return NULL;
1071 }
1072
1073 static void rpcrdma_rep_destroy(struct rpcrdma_rep *rep)
1074 {
1075         rpcrdma_regbuf_free(rep->rr_rdmabuf);
1076         kfree(rep);
1077 }
1078
1079 static struct rpcrdma_rep *rpcrdma_rep_get_locked(struct rpcrdma_buffer *buf)
1080 {
1081         struct llist_node *node;
1082
1083         /* Calls to llist_del_first are required to be serialized */
1084         node = llist_del_first(&buf->rb_free_reps);
1085         if (!node)
1086                 return NULL;
1087         return llist_entry(node, struct rpcrdma_rep, rr_node);
1088 }
1089
1090 static void rpcrdma_rep_put(struct rpcrdma_buffer *buf,
1091                             struct rpcrdma_rep *rep)
1092 {
1093         if (!rep->rr_temp)
1094                 llist_add(&rep->rr_node, &buf->rb_free_reps);
1095         else
1096                 rpcrdma_rep_destroy(rep);
1097 }
1098
1099 static void rpcrdma_reps_destroy(struct rpcrdma_buffer *buf)
1100 {
1101         struct rpcrdma_rep *rep;
1102
1103         while ((rep = rpcrdma_rep_get_locked(buf)) != NULL)
1104                 rpcrdma_rep_destroy(rep);
1105 }
1106
1107 /**
1108  * rpcrdma_buffer_create - Create initial set of req/rep objects
1109  * @r_xprt: transport instance to (re)initialize
1110  *
1111  * Returns zero on success, otherwise a negative errno.
1112  */
1113 int rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
1114 {
1115         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1116         int i, rc;
1117
1118         buf->rb_max_requests = r_xprt->rx_ep.rep_max_requests;
1119         buf->rb_bc_srv_max_requests = 0;
1120         spin_lock_init(&buf->rb_lock);
1121         INIT_LIST_HEAD(&buf->rb_mrs);
1122         INIT_LIST_HEAD(&buf->rb_all_mrs);
1123         INIT_WORK(&buf->rb_refresh_worker, rpcrdma_mr_refresh_worker);
1124
1125         rpcrdma_mrs_create(r_xprt);
1126
1127         INIT_LIST_HEAD(&buf->rb_send_bufs);
1128         INIT_LIST_HEAD(&buf->rb_allreqs);
1129
1130         rc = -ENOMEM;
1131         for (i = 0; i < buf->rb_max_requests; i++) {
1132                 struct rpcrdma_req *req;
1133
1134                 req = rpcrdma_req_create(r_xprt, RPCRDMA_V1_DEF_INLINE_SIZE,
1135                                          GFP_KERNEL);
1136                 if (!req)
1137                         goto out;
1138                 list_add(&req->rl_list, &buf->rb_send_bufs);
1139         }
1140
1141         buf->rb_credits = 1;
1142         init_llist_head(&buf->rb_free_reps);
1143
1144         rc = rpcrdma_sendctxs_create(r_xprt);
1145         if (rc)
1146                 goto out;
1147
1148         return 0;
1149 out:
1150         rpcrdma_buffer_destroy(buf);
1151         return rc;
1152 }
1153
1154 /**
1155  * rpcrdma_req_destroy - Destroy an rpcrdma_req object
1156  * @req: unused object to be destroyed
1157  *
1158  * This function assumes that the caller prevents concurrent device
1159  * unload and transport tear-down.
1160  */
1161 void rpcrdma_req_destroy(struct rpcrdma_req *req)
1162 {
1163         list_del(&req->rl_all);
1164
1165         while (!list_empty(&req->rl_free_mrs))
1166                 rpcrdma_mr_free(rpcrdma_mr_pop(&req->rl_free_mrs));
1167
1168         rpcrdma_regbuf_free(req->rl_recvbuf);
1169         rpcrdma_regbuf_free(req->rl_sendbuf);
1170         rpcrdma_regbuf_free(req->rl_rdmabuf);
1171         kfree(req);
1172 }
1173
1174 static void
1175 rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf)
1176 {
1177         struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1178                                                    rx_buf);
1179         struct rpcrdma_mr *mr;
1180         unsigned int count;
1181
1182         count = 0;
1183         spin_lock(&buf->rb_lock);
1184         while ((mr = list_first_entry_or_null(&buf->rb_all_mrs,
1185                                               struct rpcrdma_mr,
1186                                               mr_all)) != NULL) {
1187                 list_del(&mr->mr_all);
1188                 spin_unlock(&buf->rb_lock);
1189
1190                 frwr_release_mr(mr);
1191                 count++;
1192                 spin_lock(&buf->rb_lock);
1193         }
1194         spin_unlock(&buf->rb_lock);
1195         r_xprt->rx_stats.mrs_allocated = 0;
1196 }
1197
1198 /**
1199  * rpcrdma_buffer_destroy - Release all hw resources
1200  * @buf: root control block for resources
1201  *
1202  * ORDERING: relies on a prior rpcrdma_xprt_drain :
1203  * - No more Send or Receive completions can occur
1204  * - All MRs, reps, and reqs are returned to their free lists
1205  */
1206 void
1207 rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1208 {
1209         cancel_work_sync(&buf->rb_refresh_worker);
1210
1211         rpcrdma_sendctxs_destroy(buf);
1212         rpcrdma_reps_destroy(buf);
1213
1214         while (!list_empty(&buf->rb_send_bufs)) {
1215                 struct rpcrdma_req *req;
1216
1217                 req = list_first_entry(&buf->rb_send_bufs,
1218                                        struct rpcrdma_req, rl_list);
1219                 list_del(&req->rl_list);
1220                 rpcrdma_req_destroy(req);
1221         }
1222
1223         rpcrdma_mrs_destroy(buf);
1224 }
1225
1226 /**
1227  * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1228  * @r_xprt: controlling transport
1229  *
1230  * Returns an initialized rpcrdma_mr or NULL if no free
1231  * rpcrdma_mr objects are available.
1232  */
1233 struct rpcrdma_mr *
1234 rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
1235 {
1236         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1237         struct rpcrdma_mr *mr;
1238
1239         spin_lock(&buf->rb_lock);
1240         mr = rpcrdma_mr_pop(&buf->rb_mrs);
1241         spin_unlock(&buf->rb_lock);
1242         return mr;
1243 }
1244
1245 /**
1246  * rpcrdma_mr_put - DMA unmap an MR and release it
1247  * @mr: MR to release
1248  *
1249  */
1250 void rpcrdma_mr_put(struct rpcrdma_mr *mr)
1251 {
1252         struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1253
1254         if (mr->mr_dir != DMA_NONE) {
1255                 trace_xprtrdma_mr_unmap(mr);
1256                 ib_dma_unmap_sg(r_xprt->rx_ia.ri_id->device,
1257                                 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1258                 mr->mr_dir = DMA_NONE;
1259         }
1260
1261         rpcrdma_mr_push(mr, &mr->mr_req->rl_free_mrs);
1262 }
1263
1264 static void rpcrdma_mr_free(struct rpcrdma_mr *mr)
1265 {
1266         struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1267         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1268
1269         mr->mr_req = NULL;
1270         spin_lock(&buf->rb_lock);
1271         rpcrdma_mr_push(mr, &buf->rb_mrs);
1272         spin_unlock(&buf->rb_lock);
1273 }
1274
1275 /**
1276  * rpcrdma_buffer_get - Get a request buffer
1277  * @buffers: Buffer pool from which to obtain a buffer
1278  *
1279  * Returns a fresh rpcrdma_req, or NULL if none are available.
1280  */
1281 struct rpcrdma_req *
1282 rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1283 {
1284         struct rpcrdma_req *req;
1285
1286         spin_lock(&buffers->rb_lock);
1287         req = list_first_entry_or_null(&buffers->rb_send_bufs,
1288                                        struct rpcrdma_req, rl_list);
1289         if (req)
1290                 list_del_init(&req->rl_list);
1291         spin_unlock(&buffers->rb_lock);
1292         return req;
1293 }
1294
1295 /**
1296  * rpcrdma_buffer_put - Put request/reply buffers back into pool
1297  * @buffers: buffer pool
1298  * @req: object to return
1299  *
1300  */
1301 void rpcrdma_buffer_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
1302 {
1303         if (req->rl_reply)
1304                 rpcrdma_rep_put(buffers, req->rl_reply);
1305         req->rl_reply = NULL;
1306
1307         spin_lock(&buffers->rb_lock);
1308         list_add(&req->rl_list, &buffers->rb_send_bufs);
1309         spin_unlock(&buffers->rb_lock);
1310 }
1311
1312 /**
1313  * rpcrdma_recv_buffer_put - Release rpcrdma_rep back to free list
1314  * @rep: rep to release
1315  *
1316  * Used after error conditions.
1317  */
1318 void rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1319 {
1320         rpcrdma_rep_put(&rep->rr_rxprt->rx_buf, rep);
1321 }
1322
1323 /* Returns a pointer to a rpcrdma_regbuf object, or NULL.
1324  *
1325  * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1326  * receiving the payload of RDMA RECV operations. During Long Calls
1327  * or Replies they may be registered externally via frwr_map.
1328  */
1329 static struct rpcrdma_regbuf *
1330 rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
1331                      gfp_t flags)
1332 {
1333         struct rpcrdma_regbuf *rb;
1334
1335         rb = kmalloc(sizeof(*rb), flags);
1336         if (!rb)
1337                 return NULL;
1338         rb->rg_data = kmalloc(size, flags);
1339         if (!rb->rg_data) {
1340                 kfree(rb);
1341                 return NULL;
1342         }
1343
1344         rb->rg_device = NULL;
1345         rb->rg_direction = direction;
1346         rb->rg_iov.length = size;
1347         return rb;
1348 }
1349
1350 /**
1351  * rpcrdma_regbuf_realloc - re-allocate a SEND/RECV buffer
1352  * @rb: regbuf to reallocate
1353  * @size: size of buffer to be allocated, in bytes
1354  * @flags: GFP flags
1355  *
1356  * Returns true if reallocation was successful. If false is
1357  * returned, @rb is left untouched.
1358  */
1359 bool rpcrdma_regbuf_realloc(struct rpcrdma_regbuf *rb, size_t size, gfp_t flags)
1360 {
1361         void *buf;
1362
1363         buf = kmalloc(size, flags);
1364         if (!buf)
1365                 return false;
1366
1367         rpcrdma_regbuf_dma_unmap(rb);
1368         kfree(rb->rg_data);
1369
1370         rb->rg_data = buf;
1371         rb->rg_iov.length = size;
1372         return true;
1373 }
1374
1375 /**
1376  * __rpcrdma_regbuf_dma_map - DMA-map a regbuf
1377  * @r_xprt: controlling transport instance
1378  * @rb: regbuf to be mapped
1379  *
1380  * Returns true if the buffer is now DMA mapped to @r_xprt's device
1381  */
1382 bool __rpcrdma_regbuf_dma_map(struct rpcrdma_xprt *r_xprt,
1383                               struct rpcrdma_regbuf *rb)
1384 {
1385         struct ib_device *device = r_xprt->rx_ia.ri_id->device;
1386
1387         if (rb->rg_direction == DMA_NONE)
1388                 return false;
1389
1390         rb->rg_iov.addr = ib_dma_map_single(device, rdmab_data(rb),
1391                                             rdmab_length(rb), rb->rg_direction);
1392         if (ib_dma_mapping_error(device, rdmab_addr(rb))) {
1393                 trace_xprtrdma_dma_maperr(rdmab_addr(rb));
1394                 return false;
1395         }
1396
1397         rb->rg_device = device;
1398         rb->rg_iov.lkey = r_xprt->rx_ia.ri_pd->local_dma_lkey;
1399         return true;
1400 }
1401
1402 static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb)
1403 {
1404         if (!rb)
1405                 return;
1406
1407         if (!rpcrdma_regbuf_is_mapped(rb))
1408                 return;
1409
1410         ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb), rdmab_length(rb),
1411                             rb->rg_direction);
1412         rb->rg_device = NULL;
1413 }
1414
1415 static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb)
1416 {
1417         rpcrdma_regbuf_dma_unmap(rb);
1418         if (rb)
1419                 kfree(rb->rg_data);
1420         kfree(rb);
1421 }
1422
1423 /**
1424  * rpcrdma_ep_post - Post WRs to a transport's Send Queue
1425  * @ia: transport's device information
1426  * @ep: transport's RDMA endpoint information
1427  * @req: rpcrdma_req containing the Send WR to post
1428  *
1429  * Returns 0 if the post was successful, otherwise -ENOTCONN
1430  * is returned.
1431  */
1432 int
1433 rpcrdma_ep_post(struct rpcrdma_ia *ia,
1434                 struct rpcrdma_ep *ep,
1435                 struct rpcrdma_req *req)
1436 {
1437         struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
1438         int rc;
1439
1440         if (!ep->rep_send_count || kref_read(&req->rl_kref) > 1) {
1441                 send_wr->send_flags |= IB_SEND_SIGNALED;
1442                 ep->rep_send_count = ep->rep_send_batch;
1443         } else {
1444                 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1445                 --ep->rep_send_count;
1446         }
1447
1448         rc = frwr_send(ia, req);
1449         trace_xprtrdma_post_send(req, rc);
1450         if (rc)
1451                 return -ENOTCONN;
1452         return 0;
1453 }
1454
1455 static void
1456 rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, bool temp)
1457 {
1458         struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1459         struct rpcrdma_ep *ep = &r_xprt->rx_ep;
1460         struct ib_recv_wr *i, *wr, *bad_wr;
1461         struct rpcrdma_rep *rep;
1462         int needed, count, rc;
1463
1464         rc = 0;
1465         count = 0;
1466
1467         needed = buf->rb_credits + (buf->rb_bc_srv_max_requests << 1);
1468         if (ep->rep_receive_count > needed)
1469                 goto out;
1470         needed -= ep->rep_receive_count;
1471         if (!temp)
1472                 needed += RPCRDMA_MAX_RECV_BATCH;
1473
1474         /* fast path: all needed reps can be found on the free list */
1475         wr = NULL;
1476         while (needed) {
1477                 rep = rpcrdma_rep_get_locked(buf);
1478                 if (!rep)
1479                         rep = rpcrdma_rep_create(r_xprt, temp);
1480                 if (!rep)
1481                         break;
1482
1483                 rep->rr_recv_wr.next = wr;
1484                 wr = &rep->rr_recv_wr;
1485                 --needed;
1486         }
1487         if (!wr)
1488                 goto out;
1489
1490         for (i = wr; i; i = i->next) {
1491                 rep = container_of(i, struct rpcrdma_rep, rr_recv_wr);
1492
1493                 if (!rpcrdma_regbuf_dma_map(r_xprt, rep->rr_rdmabuf))
1494                         goto release_wrs;
1495
1496                 trace_xprtrdma_post_recv(rep);
1497                 ++count;
1498         }
1499
1500         rc = ib_post_recv(r_xprt->rx_ia.ri_id->qp, wr,
1501                           (const struct ib_recv_wr **)&bad_wr);
1502 out:
1503         trace_xprtrdma_post_recvs(r_xprt, count, rc);
1504         if (rc) {
1505                 for (wr = bad_wr; wr;) {
1506                         struct rpcrdma_rep *rep;
1507
1508                         rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
1509                         wr = wr->next;
1510                         rpcrdma_recv_buffer_put(rep);
1511                         --count;
1512                 }
1513         }
1514         ep->rep_receive_count += count;
1515         return;
1516
1517 release_wrs:
1518         for (i = wr; i;) {
1519                 rep = container_of(i, struct rpcrdma_rep, rr_recv_wr);
1520                 i = i->next;
1521                 rpcrdma_recv_buffer_put(rep);
1522         }
1523 }