xprtrdma: Explicitly resetting MRs is no longer necessary
[linux-2.6-block.git] / net / sunrpc / xprtrdma / verbs.c
CommitLineData
a2268cfb 1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
f58851e6 2/*
62b56a67 3 * Copyright (c) 2014-2017 Oracle. All rights reserved.
c56c65fb
TT
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.
f58851e6
TT
40 */
41
c56c65fb
TT
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
a6b7a407 52#include <linux/interrupt.h>
5a0e3ad6 53#include <linux/slab.h>
0dd39cae 54#include <linux/sunrpc/addr.h>
05c97466 55#include <linux/sunrpc/svc_rdma.h>
ae72950a
CL
56
57#include <asm-generic/barrier.h>
65866f82 58#include <asm/bitops.h>
56a6bd15 59
0a90487b 60#include <rdma/ib_cm.h>
c56c65fb 61
f58851e6 62#include "xprt_rdma.h"
b6e717cb 63#include <trace/events/rpcrdma.h>
f58851e6 64
c56c65fb
TT
65/*
66 * Globals/Macros
67 */
68
f895b252 69#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
c56c65fb
TT
70# define RPCDBG_FACILITY RPCDBG_TRANS
71#endif
72
73/*
74 * internal functions
75 */
efd81e90 76static void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc);
96ceddea
CL
77static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
78static void rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf);
7c8d9e7c 79static int rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt, bool temp);
bebd0318 80static void rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb);
c56c65fb 81
d8f532d2 82struct workqueue_struct *rpcrdma_receive_wq __read_mostly;
c56c65fb 83
fe97b47c
CL
84int
85rpcrdma_alloc_wq(void)
c56c65fb 86{
fe97b47c 87 struct workqueue_struct *recv_wq;
c56c65fb 88
fe97b47c 89 recv_wq = alloc_workqueue("xprtrdma_receive",
ccede759 90 WQ_MEM_RECLAIM | WQ_HIGHPRI,
fe97b47c
CL
91 0);
92 if (!recv_wq)
93 return -ENOMEM;
c56c65fb 94
fe97b47c
CL
95 rpcrdma_receive_wq = recv_wq;
96 return 0;
c56c65fb
TT
97}
98
fe97b47c
CL
99void
100rpcrdma_destroy_wq(void)
f1a03b76 101{
fe97b47c 102 struct workqueue_struct *wq;
f1a03b76 103
fe97b47c
CL
104 if (rpcrdma_receive_wq) {
105 wq = rpcrdma_receive_wq;
106 rpcrdma_receive_wq = NULL;
107 destroy_workqueue(wq);
108 }
f1a03b76
CL
109}
110
c56c65fb
TT
111static void
112rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
113{
114 struct rpcrdma_ep *ep = context;
643cf323
CL
115 struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
116 rx_ep);
c56c65fb 117
643cf323 118 trace_xprtrdma_qp_error(r_xprt, event);
2f6922ca
CL
119 pr_err("rpcrdma: %s on device %s ep %p\n",
120 ib_event_msg(event->event), event->device->name, context);
121
c56c65fb
TT
122 if (ep->rep_connected == 1) {
123 ep->rep_connected = -EIO;
afadc468 124 rpcrdma_conn_func(ep);
c56c65fb
TT
125 wake_up_all(&ep->rep_connect_wait);
126 }
127}
128
2fa8f88d
CL
129/**
130 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
131 * @cq: completion queue (ignored)
132 * @wc: completed WR
133 *
fc664485
CL
134 */
135static void
2fa8f88d 136rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
fc664485 137{
ae72950a
CL
138 struct ib_cqe *cqe = wc->wr_cqe;
139 struct rpcrdma_sendctx *sc =
140 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
141
2fa8f88d 142 /* WARNING: Only wr_cqe and status are reliable at this point */
ab03eff5 143 trace_xprtrdma_wc_send(sc, wc);
2fa8f88d
CL
144 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
145 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
146 ib_wc_status_msg(wc->status),
147 wc->status, wc->vendor_err);
ae72950a
CL
148
149 rpcrdma_sendctx_put_locked(sc);
fc664485 150}
c56c65fb 151
552bf225 152/**
1519e969 153 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
552bf225
CL
154 * @cq: completion queue (ignored)
155 * @wc: completed WR
156 *
157 */
fc664485 158static void
1519e969 159rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
fc664485 160{
552bf225
CL
161 struct ib_cqe *cqe = wc->wr_cqe;
162 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
163 rr_cqe);
fc664485 164
8502427c 165 /* WARNING: Only wr_id and status are reliable at this point */
0e0b854c 166 trace_xprtrdma_wc_receive(wc);
8502427c
CL
167 if (wc->status != IB_WC_SUCCESS)
168 goto out_fail;
fc664485 169
8502427c 170 /* status == SUCCESS means all fields in wc are trustworthy */
96f8778f 171 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
c8b920bb
CL
172 rep->rr_wc_flags = wc->wc_flags;
173 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
174
91a10c52 175 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
6b1184cd 176 rdmab_addr(rep->rr_rdmabuf),
e2a67190 177 wc->byte_len, DMA_FROM_DEVICE);
23826c7a 178
fc664485 179out_schedule:
d8f532d2 180 rpcrdma_reply_handler(rep);
8502427c 181 return;
fe97b47c 182
8502427c
CL
183out_fail:
184 if (wc->status != IB_WC_WR_FLUSH_ERR)
552bf225
CL
185 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
186 ib_wc_status_msg(wc->status),
187 wc->status, wc->vendor_err);
e2a67190 188 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, 0);
8502427c 189 goto out_schedule;
fc664485
CL
190}
191
87cfb9a0
CL
192static void
193rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
194 struct rdma_conn_param *param)
195{
196 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
197 const struct rpcrdma_connect_private *pmsg = param->private_data;
198 unsigned int rsize, wsize;
199
c8b920bb 200 /* Default settings for RPC-over-RDMA Version One */
b5f0afbe 201 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
87cfb9a0
CL
202 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
203 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
204
205 if (pmsg &&
206 pmsg->cp_magic == rpcrdma_cmp_magic &&
207 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
c95a3c6b 208 r_xprt->rx_ia.ri_implicit_roundup = true;
87cfb9a0
CL
209 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
210 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
211 }
212
213 if (rsize < cdata->inline_rsize)
214 cdata->inline_rsize = rsize;
215 if (wsize < cdata->inline_wsize)
216 cdata->inline_wsize = wsize;
6d6bf72d
CL
217 dprintk("RPC: %s: max send %u, max recv %u\n",
218 __func__, cdata->inline_wsize, cdata->inline_rsize);
87cfb9a0
CL
219 rpcrdma_set_max_header_sizes(r_xprt);
220}
221
c56c65fb
TT
222static int
223rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
224{
225 struct rpcrdma_xprt *xprt = id->context;
226 struct rpcrdma_ia *ia = &xprt->rx_ia;
227 struct rpcrdma_ep *ep = &xprt->rx_ep;
c56c65fb
TT
228 int connstate = 0;
229
b4744e00 230 trace_xprtrdma_conn_upcall(xprt, event);
c56c65fb
TT
231 switch (event->event) {
232 case RDMA_CM_EVENT_ADDR_RESOLVED:
233 case RDMA_CM_EVENT_ROUTE_RESOLVED:
5675add3 234 ia->ri_async_rc = 0;
c56c65fb
TT
235 complete(&ia->ri_done);
236 break;
237 case RDMA_CM_EVENT_ADDR_ERROR:
52d28fe4 238 ia->ri_async_rc = -EPROTO;
c56c65fb
TT
239 complete(&ia->ri_done);
240 break;
241 case RDMA_CM_EVENT_ROUTE_ERROR:
242 ia->ri_async_rc = -ENETUNREACH;
c56c65fb
TT
243 complete(&ia->ri_done);
244 break;
bebd0318
CL
245 case RDMA_CM_EVENT_DEVICE_REMOVAL:
246#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
d461f1f2 247 pr_info("rpcrdma: removing device %s for %s:%s\n",
173b8f49 248 ia->ri_device->name,
d461f1f2 249 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt));
bebd0318
CL
250#endif
251 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
252 ep->rep_connected = -ENODEV;
253 xprt_force_disconnect(&xprt->rx_xprt);
254 wait_for_completion(&ia->ri_remove_done);
255
256 ia->ri_id = NULL;
bebd0318
CL
257 ia->ri_device = NULL;
258 /* Return 1 to ensure the core destroys the id. */
259 return 1;
c56c65fb 260 case RDMA_CM_EVENT_ESTABLISHED:
8a14793e 261 ++xprt->rx_xprt.connect_cookie;
c56c65fb 262 connstate = 1;
87cfb9a0 263 rpcrdma_update_connect_private(xprt, &event->param.conn);
c56c65fb
TT
264 goto connected;
265 case RDMA_CM_EVENT_CONNECT_ERROR:
266 connstate = -ENOTCONN;
267 goto connected;
268 case RDMA_CM_EVENT_UNREACHABLE:
52d28fe4 269 connstate = -ENETUNREACH;
c56c65fb
TT
270 goto connected;
271 case RDMA_CM_EVENT_REJECTED:
d461f1f2
CL
272 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
273 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
0a90487b 274 rdma_reject_msg(id, event->status));
c56c65fb 275 connstate = -ECONNREFUSED;
0a90487b
CL
276 if (event->status == IB_CM_REJ_STALE_CONN)
277 connstate = -EAGAIN;
c56c65fb
TT
278 goto connected;
279 case RDMA_CM_EVENT_DISCONNECTED:
8a14793e 280 ++xprt->rx_xprt.connect_cookie;
c56c65fb 281 connstate = -ECONNABORTED;
c56c65fb 282connected:
c56c65fb 283 ep->rep_connected = connstate;
afadc468 284 rpcrdma_conn_func(ep);
c56c65fb 285 wake_up_all(&ep->rep_connect_wait);
8079fb78 286 /*FALLTHROUGH*/
c56c65fb 287 default:
d461f1f2
CL
288 dprintk("RPC: %s: %s:%s on %s/%s (ep 0x%p): %s\n",
289 __func__,
290 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
173b8f49
CL
291 ia->ri_device->name, ia->ri_ops->ro_displayname,
292 ep, rdma_event_msg(event->event));
c56c65fb
TT
293 break;
294 }
295
296 return 0;
297}
298
299static struct rdma_cm_id *
dd229cee 300rpcrdma_create_id(struct rpcrdma_xprt *xprt, struct rpcrdma_ia *ia)
c56c65fb 301{
109b88ab 302 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
c56c65fb
TT
303 struct rdma_cm_id *id;
304 int rc;
305
b4744e00
CL
306 trace_xprtrdma_conn_start(xprt);
307
1a954051 308 init_completion(&ia->ri_done);
bebd0318 309 init_completion(&ia->ri_remove_done);
1a954051 310
107c4beb
CL
311 id = rdma_create_id(xprt->rx_xprt.xprt_net, rpcrdma_conn_upcall,
312 xprt, RDMA_PS_TCP, IB_QPT_RC);
c56c65fb
TT
313 if (IS_ERR(id)) {
314 rc = PTR_ERR(id);
315 dprintk("RPC: %s: rdma_create_id() failed %i\n",
316 __func__, rc);
317 return id;
318 }
319
5675add3 320 ia->ri_async_rc = -ETIMEDOUT;
dd229cee
CL
321 rc = rdma_resolve_addr(id, NULL,
322 (struct sockaddr *)&xprt->rx_xprt.addr,
323 RDMA_RESOLVE_TIMEOUT);
c56c65fb
TT
324 if (rc) {
325 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
326 __func__, rc);
327 goto out;
328 }
109b88ab
CL
329 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
330 if (rc < 0) {
b4744e00 331 trace_xprtrdma_conn_tout(xprt);
109b88ab
CL
332 goto out;
333 }
d0f36c46 334
c56c65fb
TT
335 rc = ia->ri_async_rc;
336 if (rc)
337 goto out;
338
5675add3 339 ia->ri_async_rc = -ETIMEDOUT;
c56c65fb
TT
340 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
341 if (rc) {
342 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
343 __func__, rc);
56a6bd15 344 goto out;
c56c65fb 345 }
109b88ab
CL
346 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
347 if (rc < 0) {
b4744e00 348 trace_xprtrdma_conn_tout(xprt);
56a6bd15 349 goto out;
109b88ab 350 }
c56c65fb
TT
351 rc = ia->ri_async_rc;
352 if (rc)
56a6bd15 353 goto out;
c56c65fb
TT
354
355 return id;
56a6bd15 356
c56c65fb
TT
357out:
358 rdma_destroy_id(id);
359 return ERR_PTR(rc);
360}
361
c56c65fb
TT
362/*
363 * Exported functions.
364 */
365
fff09594
CL
366/**
367 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
dd229cee 368 * @xprt: transport with IA to (re)initialize
fff09594
CL
369 *
370 * Returns 0 on success, negative errno if an appropriate
371 * Interface Adapter could not be found and opened.
c56c65fb
TT
372 */
373int
dd229cee 374rpcrdma_ia_open(struct rpcrdma_xprt *xprt)
c56c65fb 375{
c56c65fb 376 struct rpcrdma_ia *ia = &xprt->rx_ia;
d1ed857e
CL
377 int rc;
378
dd229cee 379 ia->ri_id = rpcrdma_create_id(xprt, ia);
c56c65fb
TT
380 if (IS_ERR(ia->ri_id)) {
381 rc = PTR_ERR(ia->ri_id);
fff09594 382 goto out_err;
c56c65fb 383 }
89e0d112 384 ia->ri_device = ia->ri_id->device;
c56c65fb 385
ed082d36 386 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
c56c65fb
TT
387 if (IS_ERR(ia->ri_pd)) {
388 rc = PTR_ERR(ia->ri_pd);
b54054ca 389 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
fff09594 390 goto out_err;
c56c65fb
TT
391 }
392
fff09594 393 switch (xprt_rdma_memreg_strategy) {
ce5b3717 394 case RPCRDMA_FRWR:
b54054ca
CL
395 if (frwr_is_supported(ia)) {
396 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
397 break;
398 }
399 /*FALLTHROUGH*/
bd7ed1d1 400 case RPCRDMA_MTHCAFMR:
b54054ca
CL
401 if (fmr_is_supported(ia)) {
402 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
403 break;
404 }
405 /*FALLTHROUGH*/
bd7ed1d1 406 default:
fff09594
CL
407 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
408 ia->ri_device->name, xprt_rdma_memreg_strategy);
b54054ca 409 rc = -EINVAL;
fff09594 410 goto out_err;
c56c65fb
TT
411 }
412
c56c65fb 413 return 0;
5ae711a2 414
fff09594
CL
415out_err:
416 rpcrdma_ia_close(ia);
c56c65fb
TT
417 return rc;
418}
419
bebd0318
CL
420/**
421 * rpcrdma_ia_remove - Handle device driver unload
422 * @ia: interface adapter being removed
423 *
424 * Divest transport H/W resources associated with this adapter,
425 * but allow it to be restored later.
426 */
427void
428rpcrdma_ia_remove(struct rpcrdma_ia *ia)
429{
430 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
431 rx_ia);
432 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
433 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
434 struct rpcrdma_req *req;
435 struct rpcrdma_rep *rep;
436
437 cancel_delayed_work_sync(&buf->rb_refresh_worker);
438
439 /* This is similar to rpcrdma_ep_destroy, but:
440 * - Don't cancel the connect worker.
441 * - Don't call rpcrdma_ep_disconnect, which waits
442 * for another conn upcall, which will deadlock.
443 * - rdma_disconnect is unneeded, the underlying
444 * connection is already gone.
445 */
446 if (ia->ri_id->qp) {
447 ib_drain_qp(ia->ri_id->qp);
448 rdma_destroy_qp(ia->ri_id);
449 ia->ri_id->qp = NULL;
450 }
451 ib_free_cq(ep->rep_attr.recv_cq);
25524288 452 ep->rep_attr.recv_cq = NULL;
bebd0318 453 ib_free_cq(ep->rep_attr.send_cq);
25524288 454 ep->rep_attr.send_cq = NULL;
bebd0318
CL
455
456 /* The ULP is responsible for ensuring all DMA
457 * mappings and MRs are gone.
458 */
459 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
460 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
461 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
462 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
463 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
464 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
465 }
96ceddea 466 rpcrdma_mrs_destroy(buf);
25524288
CL
467 ib_dealloc_pd(ia->ri_pd);
468 ia->ri_pd = NULL;
bebd0318
CL
469
470 /* Allow waiters to continue */
471 complete(&ia->ri_remove_done);
b4744e00
CL
472
473 trace_xprtrdma_remove(r_xprt);
bebd0318
CL
474}
475
fff09594
CL
476/**
477 * rpcrdma_ia_close - Clean up/close an IA.
478 * @ia: interface adapter to close
479 *
c56c65fb
TT
480 */
481void
482rpcrdma_ia_close(struct rpcrdma_ia *ia)
483{
fee08caf
TT
484 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
485 if (ia->ri_id->qp)
486 rdma_destroy_qp(ia->ri_id);
56a6bd15 487 rdma_destroy_id(ia->ri_id);
fee08caf 488 }
fff09594
CL
489 ia->ri_id = NULL;
490 ia->ri_device = NULL;
6d44698d
CL
491
492 /* If the pd is still busy, xprtrdma missed freeing a resource */
493 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
7dd78647 494 ib_dealloc_pd(ia->ri_pd);
fff09594 495 ia->ri_pd = NULL;
c56c65fb
TT
496}
497
498/*
499 * Create unconnected endpoint.
500 */
501int
502rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
16f906d6 503 struct rpcrdma_create_data_internal *cdata)
c56c65fb 504{
87cfb9a0 505 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
fc664485 506 struct ib_cq *sendcq, *recvcq;
914fcad9 507 unsigned int max_sge;
2fa8f88d 508 int rc;
c56c65fb 509
33023fb8 510 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_send_sge,
eed50879 511 RPCRDMA_MAX_SEND_SGES);
16f906d6
CL
512 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
513 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
b3221d6a
CL
514 return -ENOMEM;
515 }
1179e2c2 516 ia->ri_max_send_sges = max_sge;
b3221d6a 517
914fcad9
CL
518 rc = ia->ri_ops->ro_open(ia, ep, cdata);
519 if (rc)
520 return rc;
c56c65fb
TT
521
522 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
523 ep->rep_attr.qp_context = ep;
c56c65fb 524 ep->rep_attr.srq = NULL;
16f906d6 525 ep->rep_attr.cap.max_send_sge = max_sge;
c56c65fb
TT
526 ep->rep_attr.cap.max_recv_sge = 1;
527 ep->rep_attr.cap.max_inline_data = 0;
528 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
529 ep->rep_attr.qp_type = IB_QPT_RC;
530 ep->rep_attr.port_num = ~0;
531
532 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
533 "iovs: send %d recv %d\n",
534 __func__,
535 ep->rep_attr.cap.max_send_wr,
536 ep->rep_attr.cap.max_recv_wr,
537 ep->rep_attr.cap.max_send_sge,
538 ep->rep_attr.cap.max_recv_sge);
539
540 /* set trigger for requesting send completion */
ae72950a
CL
541 ep->rep_send_batch = min_t(unsigned int, RPCRDMA_MAX_SEND_BATCH,
542 cdata->max_requests >> 2);
543 ep->rep_send_count = ep->rep_send_batch;
c56c65fb 544 init_waitqueue_head(&ep->rep_connect_wait);
254f91e2 545 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
c56c65fb 546
2fa8f88d
CL
547 sendcq = ib_alloc_cq(ia->ri_device, NULL,
548 ep->rep_attr.cap.max_send_wr + 1,
a4699f56 549 1, IB_POLL_WORKQUEUE);
fc664485
CL
550 if (IS_ERR(sendcq)) {
551 rc = PTR_ERR(sendcq);
552 dprintk("RPC: %s: failed to create send CQ: %i\n",
c56c65fb
TT
553 __func__, rc);
554 goto out1;
555 }
556
552bf225
CL
557 recvcq = ib_alloc_cq(ia->ri_device, NULL,
558 ep->rep_attr.cap.max_recv_wr + 1,
d8f532d2 559 0, IB_POLL_WORKQUEUE);
fc664485
CL
560 if (IS_ERR(recvcq)) {
561 rc = PTR_ERR(recvcq);
562 dprintk("RPC: %s: failed to create recv CQ: %i\n",
563 __func__, rc);
564 goto out2;
565 }
566
fc664485
CL
567 ep->rep_attr.send_cq = sendcq;
568 ep->rep_attr.recv_cq = recvcq;
c56c65fb
TT
569
570 /* Initialize cma parameters */
b2dde94b 571 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
c56c65fb 572
87cfb9a0
CL
573 /* Prepare RDMA-CM private message */
574 pmsg->cp_magic = rpcrdma_cmp_magic;
575 pmsg->cp_version = RPCRDMA_CMP_VERSION;
c8b920bb 576 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
87cfb9a0
CL
577 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
578 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
579 ep->rep_remote_cma.private_data = pmsg;
580 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
c56c65fb
TT
581
582 /* Client offers RDMA Read but does not initiate */
b334eaab 583 ep->rep_remote_cma.initiator_depth = 0;
b7e85fff
CL
584 ep->rep_remote_cma.responder_resources =
585 min_t(int, U8_MAX, ia->ri_device->attrs.max_qp_rd_atom);
c56c65fb 586
b2dde94b
CL
587 /* Limit transport retries so client can detect server
588 * GID changes quickly. RPC layer handles re-establishing
589 * transport connection and retransmission.
590 */
591 ep->rep_remote_cma.retry_count = 6;
592
593 /* RPC-over-RDMA handles its own flow control. In addition,
594 * make all RNR NAKs visible so we know that RPC-over-RDMA
595 * flow control is working correctly (no NAKs should be seen).
596 */
c56c65fb
TT
597 ep->rep_remote_cma.flow_control = 0;
598 ep->rep_remote_cma.rnr_retry_count = 0;
599
600 return 0;
601
602out2:
2fa8f88d 603 ib_free_cq(sendcq);
c56c65fb
TT
604out1:
605 return rc;
606}
607
608/*
609 * rpcrdma_ep_destroy
610 *
611 * Disconnect and destroy endpoint. After this, the only
612 * valid operations on the ep are to free it (if dynamically
613 * allocated) or re-create it.
c56c65fb 614 */
7f1d5419 615void
c56c65fb
TT
616rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
617{
254f91e2
CL
618 cancel_delayed_work_sync(&ep->rep_connect_worker);
619
25524288 620 if (ia->ri_id && ia->ri_id->qp) {
550d7502 621 rpcrdma_ep_disconnect(ep, ia);
fee08caf
TT
622 rdma_destroy_qp(ia->ri_id);
623 ia->ri_id->qp = NULL;
c56c65fb
TT
624 }
625
25524288
CL
626 if (ep->rep_attr.recv_cq)
627 ib_free_cq(ep->rep_attr.recv_cq);
628 if (ep->rep_attr.send_cq)
629 ib_free_cq(ep->rep_attr.send_cq);
c56c65fb
TT
630}
631
a9b0e381
CL
632/* Re-establish a connection after a device removal event.
633 * Unlike a normal reconnection, a fresh PD and a new set
634 * of MRs and buffers is needed.
635 */
636static int
637rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
638 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
639{
a9b0e381
CL
640 int rc, err;
641
b4744e00 642 trace_xprtrdma_reinsert(r_xprt);
a9b0e381
CL
643
644 rc = -EHOSTUNREACH;
dd229cee 645 if (rpcrdma_ia_open(r_xprt))
a9b0e381
CL
646 goto out1;
647
648 rc = -ENOMEM;
649 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
650 if (err) {
651 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
652 goto out2;
653 }
654
655 rc = -ENETUNREACH;
656 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
657 if (err) {
658 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
659 goto out3;
660 }
661
96ceddea 662 rpcrdma_mrs_create(r_xprt);
a9b0e381
CL
663 return 0;
664
665out3:
666 rpcrdma_ep_destroy(ep, ia);
667out2:
668 rpcrdma_ia_close(ia);
669out1:
670 return rc;
671}
672
1890896b
CL
673static int
674rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
675 struct rpcrdma_ia *ia)
676{
1890896b
CL
677 struct rdma_cm_id *id, *old;
678 int err, rc;
679
b4744e00 680 trace_xprtrdma_reconnect(r_xprt);
1890896b
CL
681
682 rpcrdma_ep_disconnect(ep, ia);
683
684 rc = -EHOSTUNREACH;
dd229cee 685 id = rpcrdma_create_id(r_xprt, ia);
1890896b
CL
686 if (IS_ERR(id))
687 goto out;
688
689 /* As long as the new ID points to the same device as the
690 * old ID, we can reuse the transport's existing PD and all
691 * previously allocated MRs. Also, the same device means
692 * the transport's previous DMA mappings are still valid.
693 *
694 * This is a sanity check only. There should be no way these
695 * point to two different devices here.
696 */
697 old = id;
698 rc = -ENETUNREACH;
699 if (ia->ri_device != id->device) {
700 pr_err("rpcrdma: can't reconnect on different device!\n");
701 goto out_destroy;
702 }
703
704 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
705 if (err) {
706 dprintk("RPC: %s: rdma_create_qp returned %d\n",
707 __func__, err);
708 goto out_destroy;
709 }
710
711 /* Atomically replace the transport's ID and QP. */
712 rc = 0;
713 old = ia->ri_id;
714 ia->ri_id = id;
715 rdma_destroy_qp(old);
716
717out_destroy:
56a6bd15 718 rdma_destroy_id(old);
1890896b
CL
719out:
720 return rc;
721}
722
c56c65fb
TT
723/*
724 * Connect unconnected endpoint.
725 */
726int
727rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
728{
0a90487b
CL
729 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
730 rx_ia);
1890896b 731 int rc;
c56c65fb 732
c56c65fb 733retry:
1890896b
CL
734 switch (ep->rep_connected) {
735 case 0:
ec62f40d
CL
736 dprintk("RPC: %s: connecting...\n", __func__);
737 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
738 if (rc) {
739 dprintk("RPC: %s: rdma_create_qp failed %i\n",
740 __func__, rc);
1890896b
CL
741 rc = -ENETUNREACH;
742 goto out_noupdate;
ec62f40d 743 }
1890896b 744 break;
a9b0e381
CL
745 case -ENODEV:
746 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
747 if (rc)
748 goto out_noupdate;
749 break;
1890896b
CL
750 default:
751 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
752 if (rc)
753 goto out;
c56c65fb
TT
754 }
755
c56c65fb 756 ep->rep_connected = 0;
8d4fb8ff 757 rpcrdma_post_recvs(r_xprt, true);
c56c65fb
TT
758
759 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
760 if (rc) {
761 dprintk("RPC: %s: rdma_connect() failed with %i\n",
762 __func__, rc);
763 goto out;
764 }
765
c56c65fb 766 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
c56c65fb 767 if (ep->rep_connected <= 0) {
0a90487b 768 if (ep->rep_connected == -EAGAIN)
c56c65fb
TT
769 goto retry;
770 rc = ep->rep_connected;
0a90487b 771 goto out;
c56c65fb
TT
772 }
773
0a90487b 774 dprintk("RPC: %s: connected\n", __func__);
7c8d9e7c 775
c56c65fb
TT
776out:
777 if (rc)
778 ep->rep_connected = rc;
1890896b
CL
779
780out_noupdate:
c56c65fb
TT
781 return rc;
782}
783
784/*
785 * rpcrdma_ep_disconnect
786 *
787 * This is separate from destroy to facilitate the ability
788 * to reconnect without recreating the endpoint.
789 *
790 * This call is not reentrant, and must not be made in parallel
791 * on the same endpoint.
792 */
282191cb 793void
c56c65fb
TT
794rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
795{
796 int rc;
797
c56c65fb 798 rc = rdma_disconnect(ia->ri_id);
b4744e00 799 if (!rc)
c56c65fb
TT
800 /* returns without wait if not connected */
801 wait_event_interruptible(ep->rep_connect_wait,
802 ep->rep_connected != 1);
b4744e00 803 else
c56c65fb 804 ep->rep_connected = rc;
b4744e00
CL
805 trace_xprtrdma_disconnect(container_of(ep, struct rpcrdma_xprt,
806 rx_ep), rc);
550d7502
CL
807
808 ib_drain_qp(ia->ri_id->qp);
c56c65fb
TT
809}
810
ae72950a
CL
811/* Fixed-size circular FIFO queue. This implementation is wait-free and
812 * lock-free.
813 *
814 * Consumer is the code path that posts Sends. This path dequeues a
815 * sendctx for use by a Send operation. Multiple consumer threads
816 * are serialized by the RPC transport lock, which allows only one
817 * ->send_request call at a time.
818 *
819 * Producer is the code path that handles Send completions. This path
820 * enqueues a sendctx that has been completed. Multiple producer
821 * threads are serialized by the ib_poll_cq() function.
822 */
823
824/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
825 * queue activity, and ib_drain_qp has flushed all remaining Send
826 * requests.
827 */
828static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
829{
830 unsigned long i;
831
832 for (i = 0; i <= buf->rb_sc_last; i++)
833 kfree(buf->rb_sc_ctxs[i]);
834 kfree(buf->rb_sc_ctxs);
835}
836
837static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
838{
839 struct rpcrdma_sendctx *sc;
840
841 sc = kzalloc(sizeof(*sc) +
842 ia->ri_max_send_sges * sizeof(struct ib_sge),
843 GFP_KERNEL);
844 if (!sc)
845 return NULL;
846
847 sc->sc_wr.wr_cqe = &sc->sc_cqe;
848 sc->sc_wr.sg_list = sc->sc_sges;
849 sc->sc_wr.opcode = IB_WR_SEND;
850 sc->sc_cqe.done = rpcrdma_wc_send;
851 return sc;
852}
853
854static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
855{
856 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
857 struct rpcrdma_sendctx *sc;
858 unsigned long i;
859
860 /* Maximum number of concurrent outstanding Send WRs. Capping
861 * the circular queue size stops Send Queue overflow by causing
862 * the ->send_request call to fail temporarily before too many
863 * Sends are posted.
864 */
865 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
866 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
867 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
868 if (!buf->rb_sc_ctxs)
869 return -ENOMEM;
870
871 buf->rb_sc_last = i - 1;
872 for (i = 0; i <= buf->rb_sc_last; i++) {
873 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
874 if (!sc)
875 goto out_destroy;
876
877 sc->sc_xprt = r_xprt;
878 buf->rb_sc_ctxs[i] = sc;
879 }
2fad6592 880 buf->rb_flags = 0;
ae72950a
CL
881
882 return 0;
883
884out_destroy:
885 rpcrdma_sendctxs_destroy(buf);
886 return -ENOMEM;
887}
888
889/* The sendctx queue is not guaranteed to have a size that is a
890 * power of two, thus the helpers in circ_buf.h cannot be used.
891 * The other option is to use modulus (%), which can be expensive.
892 */
893static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
894 unsigned long item)
895{
896 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
897}
898
899/**
900 * rpcrdma_sendctx_get_locked - Acquire a send context
901 * @buf: transport buffers from which to acquire an unused context
902 *
903 * Returns pointer to a free send completion context; or NULL if
904 * the queue is empty.
905 *
906 * Usage: Called to acquire an SGE array before preparing a Send WR.
907 *
908 * The caller serializes calls to this function (per rpcrdma_buffer),
909 * and provides an effective memory barrier that flushes the new value
910 * of rb_sc_head.
911 */
912struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_buffer *buf)
913{
914 struct rpcrdma_xprt *r_xprt;
915 struct rpcrdma_sendctx *sc;
916 unsigned long next_head;
917
918 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
919
920 if (next_head == READ_ONCE(buf->rb_sc_tail))
921 goto out_emptyq;
922
923 /* ORDER: item must be accessed _before_ head is updated */
924 sc = buf->rb_sc_ctxs[next_head];
925
926 /* Releasing the lock in the caller acts as a memory
927 * barrier that flushes rb_sc_head.
928 */
929 buf->rb_sc_head = next_head;
930
931 return sc;
932
933out_emptyq:
934 /* The queue is "empty" if there have not been enough Send
935 * completions recently. This is a sign the Send Queue is
936 * backing up. Cause the caller to pause and try again.
937 */
2fad6592 938 set_bit(RPCRDMA_BUF_F_EMPTY_SCQ, &buf->rb_flags);
ae72950a
CL
939 r_xprt = container_of(buf, struct rpcrdma_xprt, rx_buf);
940 r_xprt->rx_stats.empty_sendctx_q++;
941 return NULL;
942}
943
944/**
945 * rpcrdma_sendctx_put_locked - Release a send context
946 * @sc: send context to release
947 *
948 * Usage: Called from Send completion to return a sendctxt
949 * to the queue.
950 *
951 * The caller serializes calls to this function (per rpcrdma_buffer).
952 */
efd81e90
CL
953static void
954rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
ae72950a
CL
955{
956 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
957 unsigned long next_tail;
958
959 /* Unmap SGEs of previously completed by unsignaled
960 * Sends by walking up the queue until @sc is found.
961 */
962 next_tail = buf->rb_sc_tail;
963 do {
964 next_tail = rpcrdma_sendctx_next(buf, next_tail);
965
966 /* ORDER: item must be accessed _before_ tail is updated */
967 rpcrdma_unmap_sendctx(buf->rb_sc_ctxs[next_tail]);
968
969 } while (buf->rb_sc_ctxs[next_tail] != sc);
970
971 /* Paired with READ_ONCE */
972 smp_store_release(&buf->rb_sc_tail, next_tail);
2fad6592
CL
973
974 if (test_and_clear_bit(RPCRDMA_BUF_F_EMPTY_SCQ, &buf->rb_flags)) {
975 smp_mb__after_atomic();
976 xprt_write_space(&sc->sc_xprt->rx_xprt);
977 }
ae72950a
CL
978}
979
e2ac236c 980static void
96ceddea 981rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
e2ac236c
CL
982{
983 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
984 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
985 unsigned int count;
986 LIST_HEAD(free);
987 LIST_HEAD(all);
988
c421ece6 989 for (count = 0; count < ia->ri_max_segs; count++) {
96ceddea 990 struct rpcrdma_mr *mr;
e2ac236c
CL
991 int rc;
992
96ceddea
CL
993 mr = kzalloc(sizeof(*mr), GFP_KERNEL);
994 if (!mr)
e2ac236c
CL
995 break;
996
96ceddea 997 rc = ia->ri_ops->ro_init_mr(ia, mr);
e2ac236c 998 if (rc) {
96ceddea 999 kfree(mr);
e2ac236c
CL
1000 break;
1001 }
1002
96ceddea 1003 mr->mr_xprt = r_xprt;
e2ac236c 1004
96ceddea
CL
1005 list_add(&mr->mr_list, &free);
1006 list_add(&mr->mr_all, &all);
e2ac236c
CL
1007 }
1008
96ceddea
CL
1009 spin_lock(&buf->rb_mrlock);
1010 list_splice(&free, &buf->rb_mrs);
e2ac236c
CL
1011 list_splice(&all, &buf->rb_all);
1012 r_xprt->rx_stats.mrs_allocated += count;
96ceddea 1013 spin_unlock(&buf->rb_mrlock);
1c443eff 1014 trace_xprtrdma_createmrs(r_xprt, count);
9e679d5e
CL
1015
1016 xprt_write_space(&r_xprt->rx_xprt);
e2ac236c
CL
1017}
1018
1019static void
1020rpcrdma_mr_refresh_worker(struct work_struct *work)
1021{
1022 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
1023 rb_refresh_worker.work);
1024 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1025 rx_buf);
1026
96ceddea 1027 rpcrdma_mrs_create(r_xprt);
e2ac236c
CL
1028}
1029
f531a5db 1030struct rpcrdma_req *
1392402c
CL
1031rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
1032{
f531a5db 1033 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
2dd4a012 1034 struct rpcrdma_regbuf *rb;
1392402c 1035 struct rpcrdma_req *req;
1392402c 1036
85275c87 1037 req = kzalloc(sizeof(*req), GFP_KERNEL);
1392402c 1038 if (req == NULL)
85275c87 1039 return ERR_PTR(-ENOMEM);
1392402c 1040
2dd4a012
CL
1041 rb = rpcrdma_alloc_regbuf(RPCRDMA_HDRBUF_SIZE,
1042 DMA_TO_DEVICE, GFP_KERNEL);
1043 if (IS_ERR(rb)) {
1044 kfree(req);
1045 return ERR_PTR(-ENOMEM);
1046 }
1047 req->rl_rdmabuf = rb;
1048 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
1049 req->rl_buffer = buffer;
1050 INIT_LIST_HEAD(&req->rl_registered);
1051
f531a5db
CL
1052 spin_lock(&buffer->rb_reqslock);
1053 list_add(&req->rl_all, &buffer->rb_allreqs);
1054 spin_unlock(&buffer->rb_reqslock);
1392402c 1055 return req;
1392402c
CL
1056}
1057
7c8d9e7c
CL
1058static int
1059rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt, bool temp)
1392402c
CL
1060{
1061 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
d698c4a0 1062 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1392402c
CL
1063 struct rpcrdma_rep *rep;
1064 int rc;
1065
1066 rc = -ENOMEM;
6b1184cd 1067 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
1392402c
CL
1068 if (rep == NULL)
1069 goto out;
1392402c 1070
13650c23 1071 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
99ef4db3 1072 DMA_FROM_DEVICE, GFP_KERNEL);
6b1184cd
CL
1073 if (IS_ERR(rep->rr_rdmabuf)) {
1074 rc = PTR_ERR(rep->rr_rdmabuf);
1392402c 1075 goto out_free;
6b1184cd 1076 }
96f8778f
CL
1077 xdr_buf_init(&rep->rr_hdrbuf, rep->rr_rdmabuf->rg_base,
1078 rdmab_length(rep->rr_rdmabuf));
1392402c 1079
1519e969 1080 rep->rr_cqe.done = rpcrdma_wc_receive;
fed171b3 1081 rep->rr_rxprt = r_xprt;
d8f532d2 1082 INIT_WORK(&rep->rr_work, rpcrdma_deferred_completion);
6ea8e711
CL
1083 rep->rr_recv_wr.next = NULL;
1084 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1085 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1086 rep->rr_recv_wr.num_sge = 1;
7c8d9e7c 1087 rep->rr_temp = temp;
d698c4a0
CL
1088
1089 spin_lock(&buf->rb_lock);
1090 list_add(&rep->rr_list, &buf->rb_recv_bufs);
1091 spin_unlock(&buf->rb_lock);
1092 return 0;
1392402c
CL
1093
1094out_free:
1095 kfree(rep);
1096out:
d698c4a0
CL
1097 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1098 __func__, rc);
1099 return rc;
1392402c
CL
1100}
1101
c56c65fb 1102int
ac920d04 1103rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
c56c65fb 1104{
ac920d04 1105 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
c56c65fb
TT
1106 int i, rc;
1107
1e465fd4 1108 buf->rb_max_requests = r_xprt->rx_data.max_requests;
f531a5db 1109 buf->rb_bc_srv_max_requests = 0;
96ceddea 1110 spin_lock_init(&buf->rb_mrlock);
505bbe64 1111 spin_lock_init(&buf->rb_lock);
96ceddea 1112 INIT_LIST_HEAD(&buf->rb_mrs);
e2ac236c 1113 INIT_LIST_HEAD(&buf->rb_all);
e2ac236c
CL
1114 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1115 rpcrdma_mr_refresh_worker);
c56c65fb 1116
96ceddea 1117 rpcrdma_mrs_create(r_xprt);
c56c65fb 1118
1e465fd4 1119 INIT_LIST_HEAD(&buf->rb_send_bufs);
f531a5db
CL
1120 INIT_LIST_HEAD(&buf->rb_allreqs);
1121 spin_lock_init(&buf->rb_reqslock);
c56c65fb
TT
1122 for (i = 0; i < buf->rb_max_requests; i++) {
1123 struct rpcrdma_req *req;
c56c65fb 1124
1392402c
CL
1125 req = rpcrdma_create_req(r_xprt);
1126 if (IS_ERR(req)) {
c56c65fb
TT
1127 dprintk("RPC: %s: request buffer %d alloc"
1128 " failed\n", __func__, i);
1392402c 1129 rc = PTR_ERR(req);
c56c65fb
TT
1130 goto out;
1131 }
a80d66c9 1132 list_add(&req->rl_list, &buf->rb_send_bufs);
1e465fd4
CL
1133 }
1134
8d4fb8ff 1135 buf->rb_credits = 1;
7c8d9e7c 1136 buf->rb_posted_receives = 0;
1e465fd4 1137 INIT_LIST_HEAD(&buf->rb_recv_bufs);
1392402c 1138
ae72950a
CL
1139 rc = rpcrdma_sendctxs_create(r_xprt);
1140 if (rc)
1141 goto out;
1142
c56c65fb
TT
1143 return 0;
1144out:
1145 rpcrdma_buffer_destroy(buf);
1146 return rc;
1147}
1148
1392402c 1149static void
13650c23 1150rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
1392402c 1151{
13650c23 1152 rpcrdma_free_regbuf(rep->rr_rdmabuf);
1392402c
CL
1153 kfree(rep);
1154}
1155
f531a5db 1156void
13650c23 1157rpcrdma_destroy_req(struct rpcrdma_req *req)
1392402c 1158{
13650c23
CL
1159 rpcrdma_free_regbuf(req->rl_recvbuf);
1160 rpcrdma_free_regbuf(req->rl_sendbuf);
1161 rpcrdma_free_regbuf(req->rl_rdmabuf);
1392402c
CL
1162 kfree(req);
1163}
1164
e2ac236c 1165static void
96ceddea 1166rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf)
e2ac236c
CL
1167{
1168 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1169 rx_buf);
1170 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
96ceddea 1171 struct rpcrdma_mr *mr;
e2ac236c
CL
1172 unsigned int count;
1173
1174 count = 0;
96ceddea 1175 spin_lock(&buf->rb_mrlock);
e2ac236c 1176 while (!list_empty(&buf->rb_all)) {
96ceddea
CL
1177 mr = list_entry(buf->rb_all.next, struct rpcrdma_mr, mr_all);
1178 list_del(&mr->mr_all);
e2ac236c 1179
96ceddea 1180 spin_unlock(&buf->rb_mrlock);
054f1557
CL
1181
1182 /* Ensure MW is not on any rl_registered list */
1183 if (!list_empty(&mr->mr_list))
1184 list_del(&mr->mr_list);
1185
96ceddea 1186 ia->ri_ops->ro_release_mr(mr);
e2ac236c 1187 count++;
96ceddea 1188 spin_lock(&buf->rb_mrlock);
e2ac236c 1189 }
96ceddea 1190 spin_unlock(&buf->rb_mrlock);
e2ac236c
CL
1191 r_xprt->rx_stats.mrs_allocated = 0;
1192
1193 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1194}
1195
c56c65fb
TT
1196void
1197rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1198{
9378b274 1199 cancel_delayed_work_sync(&buf->rb_refresh_worker);
505bbe64 1200
ae72950a
CL
1201 rpcrdma_sendctxs_destroy(buf);
1202
1e465fd4
CL
1203 while (!list_empty(&buf->rb_recv_bufs)) {
1204 struct rpcrdma_rep *rep;
c56c65fb 1205
9d95cd53
CL
1206 rep = list_first_entry(&buf->rb_recv_bufs,
1207 struct rpcrdma_rep, rr_list);
1208 list_del(&rep->rr_list);
13650c23 1209 rpcrdma_destroy_rep(rep);
c56c65fb
TT
1210 }
1211
f531a5db
CL
1212 spin_lock(&buf->rb_reqslock);
1213 while (!list_empty(&buf->rb_allreqs)) {
1e465fd4 1214 struct rpcrdma_req *req;
4034ba04 1215
f531a5db
CL
1216 req = list_first_entry(&buf->rb_allreqs,
1217 struct rpcrdma_req, rl_all);
1218 list_del(&req->rl_all);
1219
1220 spin_unlock(&buf->rb_reqslock);
13650c23 1221 rpcrdma_destroy_req(req);
f531a5db 1222 spin_lock(&buf->rb_reqslock);
1e465fd4 1223 }
f531a5db 1224 spin_unlock(&buf->rb_reqslock);
4034ba04 1225
96ceddea 1226 rpcrdma_mrs_destroy(buf);
c56c65fb
TT
1227}
1228
96ceddea
CL
1229/**
1230 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1231 * @r_xprt: controlling transport
1232 *
1233 * Returns an initialized rpcrdma_mr or NULL if no free
1234 * rpcrdma_mr objects are available.
1235 */
1236struct rpcrdma_mr *
1237rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
c2922c02 1238{
346aa66b 1239 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
96ceddea 1240 struct rpcrdma_mr *mr = NULL;
346aa66b 1241
96ceddea
CL
1242 spin_lock(&buf->rb_mrlock);
1243 if (!list_empty(&buf->rb_mrs))
1244 mr = rpcrdma_mr_pop(&buf->rb_mrs);
1245 spin_unlock(&buf->rb_mrlock);
346aa66b 1246
96ceddea
CL
1247 if (!mr)
1248 goto out_nomrs;
1249 return mr;
e2ac236c 1250
96ceddea 1251out_nomrs:
1c443eff 1252 trace_xprtrdma_nomrs(r_xprt);
bebd0318
CL
1253 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1254 schedule_delayed_work(&buf->rb_refresh_worker, 0);
e2ac236c
CL
1255
1256 /* Allow the reply handler and refresh worker to run */
1257 cond_resched();
1258
1259 return NULL;
c2922c02
CL
1260}
1261
ec12e479
CL
1262static void
1263__rpcrdma_mr_put(struct rpcrdma_buffer *buf, struct rpcrdma_mr *mr)
1264{
1265 spin_lock(&buf->rb_mrlock);
1266 rpcrdma_mr_push(mr, &buf->rb_mrs);
1267 spin_unlock(&buf->rb_mrlock);
1268}
1269
96ceddea
CL
1270/**
1271 * rpcrdma_mr_put - Release an rpcrdma_mr object
1272 * @mr: object to release
1273 *
1274 */
346aa66b 1275void
96ceddea 1276rpcrdma_mr_put(struct rpcrdma_mr *mr)
ec12e479
CL
1277{
1278 __rpcrdma_mr_put(&mr->mr_xprt->rx_buf, mr);
1279}
1280
1281/**
1282 * rpcrdma_mr_unmap_and_put - DMA unmap an MR and release it
1283 * @mr: object to release
1284 *
1285 */
1286void
1287rpcrdma_mr_unmap_and_put(struct rpcrdma_mr *mr)
c2922c02 1288{
96ceddea 1289 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
c2922c02 1290
2937fede 1291 trace_xprtrdma_dma_unmap(mr);
ec12e479
CL
1292 ib_dma_unmap_sg(r_xprt->rx_ia.ri_device,
1293 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1294 __rpcrdma_mr_put(&r_xprt->rx_buf, mr);
c2922c02
CL
1295}
1296
7c8d9e7c
CL
1297/**
1298 * rpcrdma_buffer_get - Get a request buffer
1299 * @buffers: Buffer pool from which to obtain a buffer
78d506e1 1300 *
7c8d9e7c 1301 * Returns a fresh rpcrdma_req, or NULL if none are available.
c56c65fb
TT
1302 */
1303struct rpcrdma_req *
1304rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1305{
1306 struct rpcrdma_req *req;
c14d86e5 1307
a5b027e1 1308 spin_lock(&buffers->rb_lock);
e68699cc
CL
1309 req = list_first_entry_or_null(&buffers->rb_send_bufs,
1310 struct rpcrdma_req, rl_list);
1311 if (req)
1312 list_del_init(&req->rl_list);
a5b027e1 1313 spin_unlock(&buffers->rb_lock);
1e465fd4 1314 return req;
c56c65fb
TT
1315}
1316
7c8d9e7c
CL
1317/**
1318 * rpcrdma_buffer_put - Put request/reply buffers back into pool
1319 * @req: object to return
1320 *
c56c65fb
TT
1321 */
1322void
1323rpcrdma_buffer_put(struct rpcrdma_req *req)
1324{
1325 struct rpcrdma_buffer *buffers = req->rl_buffer;
1e465fd4 1326 struct rpcrdma_rep *rep = req->rl_reply;
c56c65fb 1327
1e465fd4
CL
1328 req->rl_reply = NULL;
1329
a5b027e1 1330 spin_lock(&buffers->rb_lock);
7c8d9e7c 1331 list_add(&req->rl_list, &buffers->rb_send_bufs);
05c97466 1332 if (rep) {
7c8d9e7c
CL
1333 if (!rep->rr_temp) {
1334 list_add(&rep->rr_list, &buffers->rb_recv_bufs);
1335 rep = NULL;
1336 }
05c97466 1337 }
a5b027e1 1338 spin_unlock(&buffers->rb_lock);
7c8d9e7c
CL
1339 if (rep)
1340 rpcrdma_destroy_rep(rep);
c56c65fb
TT
1341}
1342
1343/*
1344 * Put reply buffers back into pool when not attached to
b45ccfd2 1345 * request. This happens in error conditions.
c56c65fb
TT
1346 */
1347void
1348rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1349{
fed171b3 1350 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
c56c65fb 1351
7c8d9e7c
CL
1352 if (!rep->rr_temp) {
1353 spin_lock(&buffers->rb_lock);
1354 list_add(&rep->rr_list, &buffers->rb_recv_bufs);
1355 spin_unlock(&buffers->rb_lock);
1356 } else {
1357 rpcrdma_destroy_rep(rep);
1358 }
c56c65fb
TT
1359}
1360
9128c3e7 1361/**
99ef4db3 1362 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
9128c3e7 1363 * @size: size of buffer to be allocated, in bytes
99ef4db3 1364 * @direction: direction of data movement
9128c3e7
CL
1365 * @flags: GFP flags
1366 *
54cbd6b0
CL
1367 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1368 * can be persistently DMA-mapped for I/O.
9128c3e7
CL
1369 *
1370 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
99ef4db3
CL
1371 * receiving the payload of RDMA RECV operations. During Long Calls
1372 * or Replies they may be registered externally via ro_map.
9128c3e7
CL
1373 */
1374struct rpcrdma_regbuf *
13650c23
CL
1375rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1376 gfp_t flags)
9128c3e7
CL
1377{
1378 struct rpcrdma_regbuf *rb;
9128c3e7 1379
9128c3e7
CL
1380 rb = kmalloc(sizeof(*rb) + size, flags);
1381 if (rb == NULL)
54cbd6b0 1382 return ERR_PTR(-ENOMEM);
9128c3e7 1383
54cbd6b0 1384 rb->rg_device = NULL;
99ef4db3 1385 rb->rg_direction = direction;
54cbd6b0 1386 rb->rg_iov.length = size;
9128c3e7
CL
1387
1388 return rb;
54cbd6b0 1389}
9128c3e7 1390
54cbd6b0
CL
1391/**
1392 * __rpcrdma_map_regbuf - DMA-map a regbuf
1393 * @ia: controlling rpcrdma_ia
1394 * @rb: regbuf to be mapped
1395 */
1396bool
1397__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1398{
91a10c52
CL
1399 struct ib_device *device = ia->ri_device;
1400
54cbd6b0
CL
1401 if (rb->rg_direction == DMA_NONE)
1402 return false;
1403
91a10c52 1404 rb->rg_iov.addr = ib_dma_map_single(device,
54cbd6b0
CL
1405 (void *)rb->rg_base,
1406 rdmab_length(rb),
1407 rb->rg_direction);
91a10c52 1408 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
54cbd6b0
CL
1409 return false;
1410
91a10c52 1411 rb->rg_device = device;
54cbd6b0
CL
1412 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1413 return true;
1414}
1415
1416static void
1417rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1418{
e89e8d8f
CL
1419 if (!rb)
1420 return;
1421
54cbd6b0
CL
1422 if (!rpcrdma_regbuf_is_mapped(rb))
1423 return;
1424
1425 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1426 rdmab_length(rb), rb->rg_direction);
1427 rb->rg_device = NULL;
9128c3e7
CL
1428}
1429
1430/**
1431 * rpcrdma_free_regbuf - deregister and free registered buffer
9128c3e7
CL
1432 * @rb: regbuf to be deregistered and freed
1433 */
1434void
13650c23 1435rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
9128c3e7 1436{
54cbd6b0 1437 rpcrdma_dma_unmap_regbuf(rb);
e531dcab 1438 kfree(rb);
9128c3e7
CL
1439}
1440
c56c65fb
TT
1441/*
1442 * Prepost any receive buffer, then post send.
1443 *
1444 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1445 */
1446int
1447rpcrdma_ep_post(struct rpcrdma_ia *ia,
1448 struct rpcrdma_ep *ep,
1449 struct rpcrdma_req *req)
1450{
ae72950a 1451 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
655fec69 1452 int rc;
c56c65fb 1453
01bb35c8
CL
1454 if (!ep->rep_send_count ||
1455 test_bit(RPCRDMA_REQ_F_TX_RESOURCES, &req->rl_flags)) {
ae72950a
CL
1456 send_wr->send_flags |= IB_SEND_SIGNALED;
1457 ep->rep_send_count = ep->rep_send_batch;
1458 } else {
1459 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1460 --ep->rep_send_count;
1461 }
ab03eff5 1462
f2877623 1463 rc = ia->ri_ops->ro_send(ia, req);
ab03eff5 1464 trace_xprtrdma_post_send(req, rc);
c56c65fb 1465 if (rc)
ab03eff5 1466 return -ENOTCONN;
7a89f9c6 1467 return 0;
c56c65fb
TT
1468}
1469
f531a5db 1470/**
7c8d9e7c
CL
1471 * rpcrdma_post_recvs - Maybe post some Receive buffers
1472 * @r_xprt: controlling transport
1473 * @temp: when true, allocate temp rpcrdma_rep objects
f531a5db 1474 *
f531a5db 1475 */
7c8d9e7c
CL
1476void
1477rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, bool temp)
f531a5db 1478{
7c8d9e7c
CL
1479 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1480 struct ib_recv_wr *wr, *bad_wr;
1481 int needed, count, rc;
f531a5db 1482
7c8d9e7c
CL
1483 needed = buf->rb_credits + (buf->rb_bc_srv_max_requests << 1);
1484 if (buf->rb_posted_receives > needed)
1485 return;
1486 needed -= buf->rb_posted_receives;
f531a5db 1487
7c8d9e7c
CL
1488 count = 0;
1489 wr = NULL;
1490 while (needed) {
1491 struct rpcrdma_regbuf *rb;
1492 struct rpcrdma_rep *rep;
f531a5db 1493
7c8d9e7c
CL
1494 spin_lock(&buf->rb_lock);
1495 rep = list_first_entry_or_null(&buf->rb_recv_bufs,
1496 struct rpcrdma_rep, rr_list);
1497 if (likely(rep))
1498 list_del(&rep->rr_list);
1499 spin_unlock(&buf->rb_lock);
1500 if (!rep) {
1501 if (rpcrdma_create_rep(r_xprt, temp))
1502 break;
1503 continue;
1504 }
f531a5db 1505
7c8d9e7c
CL
1506 rb = rep->rr_rdmabuf;
1507 if (!rpcrdma_regbuf_is_mapped(rb)) {
1508 if (!__rpcrdma_dma_map_regbuf(&r_xprt->rx_ia, rb)) {
1509 rpcrdma_recv_buffer_put(rep);
1510 break;
1511 }
1512 }
f531a5db 1513
7c8d9e7c
CL
1514 trace_xprtrdma_post_recv(rep->rr_recv_wr.wr_cqe);
1515 rep->rr_recv_wr.next = wr;
1516 wr = &rep->rr_recv_wr;
1517 ++count;
1518 --needed;
1519 }
1520 if (!count)
1521 return;
1522
d34ac5cd
BVA
1523 rc = ib_post_recv(r_xprt->rx_ia.ri_id->qp, wr,
1524 (const struct ib_recv_wr **)&bad_wr);
7c8d9e7c
CL
1525 if (rc) {
1526 for (wr = bad_wr; wr; wr = wr->next) {
1527 struct rpcrdma_rep *rep;
1528
1529 rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
1530 rpcrdma_recv_buffer_put(rep);
1531 --count;
1532 }
1533 }
1534 buf->rb_posted_receives += count;
1535 trace_xprtrdma_post_recvs(r_xprt, count, rc);
f531a5db 1536}