xprtrdma: Allocate MRs on demand
[deliverable/linux.git] / net / sunrpc / xprtrdma / verbs.c
CommitLineData
f58851e6 1/*
c56c65fb
TT
2 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the BSD-type
8 * license below:
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 *
17 * Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials provided
20 * with the distribution.
21 *
22 * Neither the name of the Network Appliance, Inc. nor the names of
23 * its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written
25 * permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
f58851e6
TT
38 */
39
c56c65fb
TT
40/*
41 * verbs.c
42 *
43 * Encapsulates the major functions managing:
44 * o adapters
45 * o endpoints
46 * o connections
47 * o buffer memory
48 */
49
a6b7a407 50#include <linux/interrupt.h>
5a0e3ad6 51#include <linux/slab.h>
eba8ff66 52#include <linux/prefetch.h>
0dd39cae 53#include <linux/sunrpc/addr.h>
65866f82 54#include <asm/bitops.h>
d0f36c46 55#include <linux/module.h> /* try_module_get()/module_put() */
c56c65fb 56
f58851e6
TT
57#include "xprt_rdma.h"
58
c56c65fb
TT
59/*
60 * Globals/Macros
61 */
62
f895b252 63#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
c56c65fb
TT
64# define RPCDBG_FACILITY RPCDBG_TRANS
65#endif
66
67/*
68 * internal functions
69 */
70
fe97b47c 71static struct workqueue_struct *rpcrdma_receive_wq;
c56c65fb 72
fe97b47c
CL
73int
74rpcrdma_alloc_wq(void)
c56c65fb 75{
fe97b47c 76 struct workqueue_struct *recv_wq;
c56c65fb 77
fe97b47c
CL
78 recv_wq = alloc_workqueue("xprtrdma_receive",
79 WQ_MEM_RECLAIM | WQ_UNBOUND | WQ_HIGHPRI,
80 0);
81 if (!recv_wq)
82 return -ENOMEM;
c56c65fb 83
fe97b47c
CL
84 rpcrdma_receive_wq = recv_wq;
85 return 0;
c56c65fb
TT
86}
87
fe97b47c
CL
88void
89rpcrdma_destroy_wq(void)
f1a03b76 90{
fe97b47c 91 struct workqueue_struct *wq;
f1a03b76 92
fe97b47c
CL
93 if (rpcrdma_receive_wq) {
94 wq = rpcrdma_receive_wq;
95 rpcrdma_receive_wq = NULL;
96 destroy_workqueue(wq);
97 }
f1a03b76
CL
98}
99
c56c65fb
TT
100static void
101rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
102{
103 struct rpcrdma_ep *ep = context;
104
7ff11de1 105 pr_err("RPC: %s: %s on device %s ep %p\n",
76357c71 106 __func__, ib_event_msg(event->event),
7ff11de1 107 event->device->name, context);
c56c65fb
TT
108 if (ep->rep_connected == 1) {
109 ep->rep_connected = -EIO;
afadc468 110 rpcrdma_conn_func(ep);
c56c65fb
TT
111 wake_up_all(&ep->rep_connect_wait);
112 }
113}
114
2fa8f88d
CL
115/**
116 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
117 * @cq: completion queue (ignored)
118 * @wc: completed WR
119 *
fc664485
CL
120 */
121static void
2fa8f88d 122rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
fc664485 123{
2fa8f88d
CL
124 /* WARNING: Only wr_cqe and status are reliable at this point */
125 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
126 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
127 ib_wc_status_msg(wc->status),
128 wc->status, wc->vendor_err);
fc664485 129}
c56c65fb 130
fc664485 131static void
fe97b47c
CL
132rpcrdma_receive_worker(struct work_struct *work)
133{
134 struct rpcrdma_rep *rep =
135 container_of(work, struct rpcrdma_rep, rr_work);
fc664485 136
fe97b47c 137 rpcrdma_reply_handler(rep);
fc664485
CL
138}
139
23826c7a
CL
140/* Perform basic sanity checking to avoid using garbage
141 * to update the credit grant value.
142 */
143static void
144rpcrdma_update_granted_credits(struct rpcrdma_rep *rep)
145{
146 struct rpcrdma_msg *rmsgp = rdmab_to_msg(rep->rr_rdmabuf);
147 struct rpcrdma_buffer *buffer = &rep->rr_rxprt->rx_buf;
148 u32 credits;
149
150 if (rep->rr_len < RPCRDMA_HDRLEN_ERR)
151 return;
152
153 credits = be32_to_cpu(rmsgp->rm_credit);
154 if (credits == 0)
155 credits = 1; /* don't deadlock */
156 else if (credits > buffer->rb_max_requests)
157 credits = buffer->rb_max_requests;
158
159 atomic_set(&buffer->rb_credits, credits);
160}
161
552bf225
CL
162/**
163 * rpcrdma_receive_wc - Invoked by RDMA provider for each polled Receive WC
164 * @cq: completion queue (ignored)
165 * @wc: completed WR
166 *
167 */
fc664485 168static void
552bf225 169rpcrdma_receive_wc(struct ib_cq *cq, struct ib_wc *wc)
fc664485 170{
552bf225
CL
171 struct ib_cqe *cqe = wc->wr_cqe;
172 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
173 rr_cqe);
fc664485 174
8502427c
CL
175 /* WARNING: Only wr_id and status are reliable at this point */
176 if (wc->status != IB_WC_SUCCESS)
177 goto out_fail;
fc664485 178
8502427c 179 /* status == SUCCESS means all fields in wc are trustworthy */
fc664485
CL
180 if (wc->opcode != IB_WC_RECV)
181 return;
182
8502427c
CL
183 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
184 __func__, rep, wc->byte_len);
185
fc664485 186 rep->rr_len = wc->byte_len;
89e0d112 187 ib_dma_sync_single_for_cpu(rep->rr_device,
6b1184cd
CL
188 rdmab_addr(rep->rr_rdmabuf),
189 rep->rr_len, DMA_FROM_DEVICE);
23826c7a
CL
190
191 rpcrdma_update_granted_credits(rep);
fc664485
CL
192
193out_schedule:
fe97b47c 194 queue_work(rpcrdma_receive_wq, &rep->rr_work);
8502427c 195 return;
fe97b47c 196
8502427c
CL
197out_fail:
198 if (wc->status != IB_WC_WR_FLUSH_ERR)
552bf225
CL
199 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
200 ib_wc_status_msg(wc->status),
201 wc->status, wc->vendor_err);
b0e178a2 202 rep->rr_len = RPCRDMA_BAD_LEN;
8502427c 203 goto out_schedule;
fc664485
CL
204}
205
c56c65fb
TT
206static int
207rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
208{
209 struct rpcrdma_xprt *xprt = id->context;
210 struct rpcrdma_ia *ia = &xprt->rx_ia;
211 struct rpcrdma_ep *ep = &xprt->rx_ep;
f895b252 212#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
0dd39cae 213 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
ff0db049 214#endif
ce1ab9ab
CL
215 struct ib_qp_attr *attr = &ia->ri_qp_attr;
216 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
c56c65fb
TT
217 int connstate = 0;
218
219 switch (event->event) {
220 case RDMA_CM_EVENT_ADDR_RESOLVED:
221 case RDMA_CM_EVENT_ROUTE_RESOLVED:
5675add3 222 ia->ri_async_rc = 0;
c56c65fb
TT
223 complete(&ia->ri_done);
224 break;
225 case RDMA_CM_EVENT_ADDR_ERROR:
226 ia->ri_async_rc = -EHOSTUNREACH;
227 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
228 __func__, ep);
229 complete(&ia->ri_done);
230 break;
231 case RDMA_CM_EVENT_ROUTE_ERROR:
232 ia->ri_async_rc = -ENETUNREACH;
233 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
234 __func__, ep);
235 complete(&ia->ri_done);
236 break;
237 case RDMA_CM_EVENT_ESTABLISHED:
238 connstate = 1;
ce1ab9ab
CL
239 ib_query_qp(ia->ri_id->qp, attr,
240 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
241 iattr);
c56c65fb
TT
242 dprintk("RPC: %s: %d responder resources"
243 " (%d initiator)\n",
ce1ab9ab
CL
244 __func__, attr->max_dest_rd_atomic,
245 attr->max_rd_atomic);
c56c65fb
TT
246 goto connected;
247 case RDMA_CM_EVENT_CONNECT_ERROR:
248 connstate = -ENOTCONN;
249 goto connected;
250 case RDMA_CM_EVENT_UNREACHABLE:
251 connstate = -ENETDOWN;
252 goto connected;
253 case RDMA_CM_EVENT_REJECTED:
254 connstate = -ECONNREFUSED;
255 goto connected;
256 case RDMA_CM_EVENT_DISCONNECTED:
257 connstate = -ECONNABORTED;
258 goto connected;
259 case RDMA_CM_EVENT_DEVICE_REMOVAL:
260 connstate = -ENODEV;
261connected:
c56c65fb
TT
262 dprintk("RPC: %s: %sconnected\n",
263 __func__, connstate > 0 ? "" : "dis");
23826c7a 264 atomic_set(&xprt->rx_buf.rb_credits, 1);
c56c65fb 265 ep->rep_connected = connstate;
afadc468 266 rpcrdma_conn_func(ep);
c56c65fb 267 wake_up_all(&ep->rep_connect_wait);
8079fb78 268 /*FALLTHROUGH*/
c56c65fb 269 default:
0dd39cae
CL
270 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
271 __func__, sap, rpc_get_port(sap), ep,
76357c71 272 rdma_event_msg(event->event));
c56c65fb
TT
273 break;
274 }
275
f895b252 276#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
b3cd8d45 277 if (connstate == 1) {
ce1ab9ab 278 int ird = attr->max_dest_rd_atomic;
b3cd8d45 279 int tird = ep->rep_remote_cma.responder_resources;
0dd39cae 280
a0ce85f5 281 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
0dd39cae 282 sap, rpc_get_port(sap),
89e0d112 283 ia->ri_device->name,
a0ce85f5 284 ia->ri_ops->ro_displayname,
b3cd8d45
TT
285 xprt->rx_buf.rb_max_requests,
286 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
287 } else if (connstate < 0) {
0dd39cae
CL
288 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
289 sap, rpc_get_port(sap), connstate);
b3cd8d45
TT
290 }
291#endif
292
c56c65fb
TT
293 return 0;
294}
295
d0f36c46
DS
296static void rpcrdma_destroy_id(struct rdma_cm_id *id)
297{
298 if (id) {
299 module_put(id->device->owner);
300 rdma_destroy_id(id);
301 }
302}
303
c56c65fb
TT
304static struct rdma_cm_id *
305rpcrdma_create_id(struct rpcrdma_xprt *xprt,
306 struct rpcrdma_ia *ia, struct sockaddr *addr)
307{
308 struct rdma_cm_id *id;
309 int rc;
310
1a954051
TT
311 init_completion(&ia->ri_done);
312
fa20105e
GS
313 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
314 IB_QPT_RC);
c56c65fb
TT
315 if (IS_ERR(id)) {
316 rc = PTR_ERR(id);
317 dprintk("RPC: %s: rdma_create_id() failed %i\n",
318 __func__, rc);
319 return id;
320 }
321
5675add3 322 ia->ri_async_rc = -ETIMEDOUT;
c56c65fb
TT
323 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
324 if (rc) {
325 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
326 __func__, rc);
327 goto out;
328 }
5675add3
TT
329 wait_for_completion_interruptible_timeout(&ia->ri_done,
330 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
d0f36c46
DS
331
332 /* FIXME:
333 * Until xprtrdma supports DEVICE_REMOVAL, the provider must
334 * be pinned while there are active NFS/RDMA mounts to prevent
335 * hangs and crashes at umount time.
336 */
337 if (!ia->ri_async_rc && !try_module_get(id->device->owner)) {
338 dprintk("RPC: %s: Failed to get device module\n",
339 __func__);
340 ia->ri_async_rc = -ENODEV;
341 }
c56c65fb
TT
342 rc = ia->ri_async_rc;
343 if (rc)
344 goto out;
345
5675add3 346 ia->ri_async_rc = -ETIMEDOUT;
c56c65fb
TT
347 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
348 if (rc) {
349 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
350 __func__, rc);
d0f36c46 351 goto put;
c56c65fb 352 }
5675add3
TT
353 wait_for_completion_interruptible_timeout(&ia->ri_done,
354 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
c56c65fb
TT
355 rc = ia->ri_async_rc;
356 if (rc)
d0f36c46 357 goto put;
c56c65fb
TT
358
359 return id;
d0f36c46
DS
360put:
361 module_put(id->device->owner);
c56c65fb
TT
362out:
363 rdma_destroy_id(id);
364 return ERR_PTR(rc);
365}
366
c56c65fb
TT
367/*
368 * Exported functions.
369 */
370
371/*
372 * Open and initialize an Interface Adapter.
373 * o initializes fields of struct rpcrdma_ia, including
374 * interface and provider attributes and protection zone.
375 */
376int
377rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
378{
c56c65fb 379 struct rpcrdma_ia *ia = &xprt->rx_ia;
d1ed857e
CL
380 int rc;
381
c56c65fb
TT
382 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
383 if (IS_ERR(ia->ri_id)) {
384 rc = PTR_ERR(ia->ri_id);
385 goto out1;
386 }
89e0d112 387 ia->ri_device = ia->ri_id->device;
c56c65fb 388
89e0d112 389 ia->ri_pd = ib_alloc_pd(ia->ri_device);
c56c65fb
TT
390 if (IS_ERR(ia->ri_pd)) {
391 rc = PTR_ERR(ia->ri_pd);
b54054ca 392 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
c56c65fb
TT
393 goto out2;
394 }
395
bd7ed1d1 396 switch (memreg) {
3197d309 397 case RPCRDMA_FRMR:
b54054ca
CL
398 if (frwr_is_supported(ia)) {
399 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
400 break;
401 }
402 /*FALLTHROUGH*/
bd7ed1d1 403 case RPCRDMA_MTHCAFMR:
b54054ca
CL
404 if (fmr_is_supported(ia)) {
405 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
406 break;
407 }
408 /*FALLTHROUGH*/
bd7ed1d1 409 default:
b54054ca
CL
410 pr_err("rpcrdma: Unsupported memory registration mode: %d\n",
411 memreg);
412 rc = -EINVAL;
5ae711a2 413 goto out3;
c56c65fb
TT
414 }
415
c56c65fb 416 return 0;
5ae711a2
CL
417
418out3:
419 ib_dealloc_pd(ia->ri_pd);
420 ia->ri_pd = NULL;
c56c65fb 421out2:
d0f36c46 422 rpcrdma_destroy_id(ia->ri_id);
fee08caf 423 ia->ri_id = NULL;
c56c65fb
TT
424out1:
425 return rc;
426}
427
428/*
429 * Clean up/close an IA.
430 * o if event handles and PD have been initialized, free them.
431 * o close the IA
432 */
433void
434rpcrdma_ia_close(struct rpcrdma_ia *ia)
435{
c56c65fb 436 dprintk("RPC: %s: entering\n", __func__);
fee08caf
TT
437 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
438 if (ia->ri_id->qp)
439 rdma_destroy_qp(ia->ri_id);
d0f36c46 440 rpcrdma_destroy_id(ia->ri_id);
fee08caf
TT
441 ia->ri_id = NULL;
442 }
6d44698d
CL
443
444 /* If the pd is still busy, xprtrdma missed freeing a resource */
445 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
7dd78647 446 ib_dealloc_pd(ia->ri_pd);
c56c65fb
TT
447}
448
449/*
450 * Create unconnected endpoint.
451 */
452int
453rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
454 struct rpcrdma_create_data_internal *cdata)
455{
fc664485 456 struct ib_cq *sendcq, *recvcq;
124fa17d 457 unsigned int max_qp_wr;
2fa8f88d 458 int rc;
c56c65fb 459
e3e45b1b 460 if (ia->ri_device->attrs.max_sge < RPCRDMA_MAX_IOVS) {
b3221d6a
CL
461 dprintk("RPC: %s: insufficient sge's available\n",
462 __func__);
463 return -ENOMEM;
464 }
465
e3e45b1b 466 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
124fa17d
CL
467 dprintk("RPC: %s: insufficient wqe's available\n",
468 __func__);
469 return -ENOMEM;
470 }
550d7502 471 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
124fa17d 472
c56c65fb 473 /* check provider's send/recv wr limits */
124fa17d
CL
474 if (cdata->max_requests > max_qp_wr)
475 cdata->max_requests = max_qp_wr;
c56c65fb
TT
476
477 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
478 ep->rep_attr.qp_context = ep;
c56c65fb
TT
479 ep->rep_attr.srq = NULL;
480 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
124fa17d 481 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
550d7502 482 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
3968cb58
CL
483 rc = ia->ri_ops->ro_open(ia, ep, cdata);
484 if (rc)
485 return rc;
c56c65fb 486 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
124fa17d 487 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
550d7502 488 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
b3221d6a 489 ep->rep_attr.cap.max_send_sge = RPCRDMA_MAX_IOVS;
c56c65fb
TT
490 ep->rep_attr.cap.max_recv_sge = 1;
491 ep->rep_attr.cap.max_inline_data = 0;
492 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
493 ep->rep_attr.qp_type = IB_QPT_RC;
494 ep->rep_attr.port_num = ~0;
495
496 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
497 "iovs: send %d recv %d\n",
498 __func__,
499 ep->rep_attr.cap.max_send_wr,
500 ep->rep_attr.cap.max_recv_wr,
501 ep->rep_attr.cap.max_send_sge,
502 ep->rep_attr.cap.max_recv_sge);
503
504 /* set trigger for requesting send completion */
fc664485 505 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
26ae9d1c
CL
506 if (ep->rep_cqinit <= 2)
507 ep->rep_cqinit = 0; /* always signal? */
c56c65fb 508 INIT_CQCOUNT(ep);
c56c65fb 509 init_waitqueue_head(&ep->rep_connect_wait);
254f91e2 510 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
c56c65fb 511
2fa8f88d
CL
512 sendcq = ib_alloc_cq(ia->ri_device, NULL,
513 ep->rep_attr.cap.max_send_wr + 1,
514 0, IB_POLL_SOFTIRQ);
fc664485
CL
515 if (IS_ERR(sendcq)) {
516 rc = PTR_ERR(sendcq);
517 dprintk("RPC: %s: failed to create send CQ: %i\n",
c56c65fb
TT
518 __func__, rc);
519 goto out1;
520 }
521
552bf225
CL
522 recvcq = ib_alloc_cq(ia->ri_device, NULL,
523 ep->rep_attr.cap.max_recv_wr + 1,
524 0, IB_POLL_SOFTIRQ);
fc664485
CL
525 if (IS_ERR(recvcq)) {
526 rc = PTR_ERR(recvcq);
527 dprintk("RPC: %s: failed to create recv CQ: %i\n",
528 __func__, rc);
529 goto out2;
530 }
531
fc664485
CL
532 ep->rep_attr.send_cq = sendcq;
533 ep->rep_attr.recv_cq = recvcq;
c56c65fb
TT
534
535 /* Initialize cma parameters */
b2dde94b 536 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
c56c65fb
TT
537
538 /* RPC/RDMA does not use private data */
539 ep->rep_remote_cma.private_data = NULL;
540 ep->rep_remote_cma.private_data_len = 0;
541
542 /* Client offers RDMA Read but does not initiate */
b334eaab 543 ep->rep_remote_cma.initiator_depth = 0;
e3e45b1b 544 if (ia->ri_device->attrs.max_qp_rd_atom > 32) /* arbitrary but <= 255 */
b334eaab
TT
545 ep->rep_remote_cma.responder_resources = 32;
546 else
7bc7972c 547 ep->rep_remote_cma.responder_resources =
e3e45b1b 548 ia->ri_device->attrs.max_qp_rd_atom;
c56c65fb 549
b2dde94b
CL
550 /* Limit transport retries so client can detect server
551 * GID changes quickly. RPC layer handles re-establishing
552 * transport connection and retransmission.
553 */
554 ep->rep_remote_cma.retry_count = 6;
555
556 /* RPC-over-RDMA handles its own flow control. In addition,
557 * make all RNR NAKs visible so we know that RPC-over-RDMA
558 * flow control is working correctly (no NAKs should be seen).
559 */
c56c65fb
TT
560 ep->rep_remote_cma.flow_control = 0;
561 ep->rep_remote_cma.rnr_retry_count = 0;
562
563 return 0;
564
565out2:
2fa8f88d 566 ib_free_cq(sendcq);
c56c65fb
TT
567out1:
568 return rc;
569}
570
571/*
572 * rpcrdma_ep_destroy
573 *
574 * Disconnect and destroy endpoint. After this, the only
575 * valid operations on the ep are to free it (if dynamically
576 * allocated) or re-create it.
c56c65fb 577 */
7f1d5419 578void
c56c65fb
TT
579rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
580{
c56c65fb
TT
581 dprintk("RPC: %s: entering, connected is %d\n",
582 __func__, ep->rep_connected);
583
254f91e2
CL
584 cancel_delayed_work_sync(&ep->rep_connect_worker);
585
72c02173 586 if (ia->ri_id->qp) {
550d7502 587 rpcrdma_ep_disconnect(ep, ia);
fee08caf
TT
588 rdma_destroy_qp(ia->ri_id);
589 ia->ri_id->qp = NULL;
c56c65fb
TT
590 }
591
552bf225 592 ib_free_cq(ep->rep_attr.recv_cq);
2fa8f88d 593 ib_free_cq(ep->rep_attr.send_cq);
c56c65fb
TT
594}
595
596/*
597 * Connect unconnected endpoint.
598 */
599int
600rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
601{
73806c88 602 struct rdma_cm_id *id, *old;
c56c65fb
TT
603 int rc = 0;
604 int retry_count = 0;
c56c65fb 605
c055551e 606 if (ep->rep_connected != 0) {
c56c65fb
TT
607 struct rpcrdma_xprt *xprt;
608retry:
ec62f40d 609 dprintk("RPC: %s: reconnecting...\n", __func__);
282191cb
CL
610
611 rpcrdma_ep_disconnect(ep, ia);
c56c65fb
TT
612
613 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
614 id = rpcrdma_create_id(xprt, ia,
615 (struct sockaddr *)&xprt->rx_data.addr);
616 if (IS_ERR(id)) {
ec62f40d 617 rc = -EHOSTUNREACH;
c56c65fb
TT
618 goto out;
619 }
620 /* TEMP TEMP TEMP - fail if new device:
621 * Deregister/remarshal *all* requests!
622 * Close and recreate adapter, pd, etc!
623 * Re-determine all attributes still sane!
624 * More stuff I haven't thought of!
625 * Rrrgh!
626 */
89e0d112 627 if (ia->ri_device != id->device) {
c56c65fb
TT
628 printk("RPC: %s: can't reconnect on "
629 "different device!\n", __func__);
d0f36c46 630 rpcrdma_destroy_id(id);
ec62f40d 631 rc = -ENETUNREACH;
c56c65fb
TT
632 goto out;
633 }
634 /* END TEMP */
ec62f40d
CL
635 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
636 if (rc) {
637 dprintk("RPC: %s: rdma_create_qp failed %i\n",
638 __func__, rc);
d0f36c46 639 rpcrdma_destroy_id(id);
ec62f40d
CL
640 rc = -ENETUNREACH;
641 goto out;
642 }
73806c88 643
73806c88 644 old = ia->ri_id;
c56c65fb 645 ia->ri_id = id;
73806c88
CL
646
647 rdma_destroy_qp(old);
d0f36c46 648 rpcrdma_destroy_id(old);
ec62f40d
CL
649 } else {
650 dprintk("RPC: %s: connecting...\n", __func__);
651 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
652 if (rc) {
653 dprintk("RPC: %s: rdma_create_qp failed %i\n",
654 __func__, rc);
655 /* do not update ep->rep_connected */
656 return -ENETUNREACH;
657 }
c56c65fb
TT
658 }
659
c56c65fb
TT
660 ep->rep_connected = 0;
661
662 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
663 if (rc) {
664 dprintk("RPC: %s: rdma_connect() failed with %i\n",
665 __func__, rc);
666 goto out;
667 }
668
c56c65fb
TT
669 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
670
671 /*
672 * Check state. A non-peer reject indicates no listener
673 * (ECONNREFUSED), which may be a transient state. All
674 * others indicate a transport condition which has already
675 * undergone a best-effort.
676 */
f64f9e71
JP
677 if (ep->rep_connected == -ECONNREFUSED &&
678 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
c56c65fb
TT
679 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
680 goto retry;
681 }
682 if (ep->rep_connected <= 0) {
683 /* Sometimes, the only way to reliably connect to remote
684 * CMs is to use same nonzero values for ORD and IRD. */
b334eaab
TT
685 if (retry_count++ <= RDMA_CONNECT_RETRY_MAX + 1 &&
686 (ep->rep_remote_cma.responder_resources == 0 ||
687 ep->rep_remote_cma.initiator_depth !=
688 ep->rep_remote_cma.responder_resources)) {
689 if (ep->rep_remote_cma.responder_resources == 0)
690 ep->rep_remote_cma.responder_resources = 1;
691 ep->rep_remote_cma.initiator_depth =
692 ep->rep_remote_cma.responder_resources;
c56c65fb 693 goto retry;
b334eaab 694 }
c56c65fb
TT
695 rc = ep->rep_connected;
696 } else {
f531a5db
CL
697 struct rpcrdma_xprt *r_xprt;
698 unsigned int extras;
699
c56c65fb 700 dprintk("RPC: %s: connected\n", __func__);
f531a5db
CL
701
702 r_xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
703 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
704
705 if (extras) {
706 rc = rpcrdma_ep_post_extra_recv(r_xprt, extras);
38b95bcf 707 if (rc) {
f531a5db
CL
708 pr_warn("%s: rpcrdma_ep_post_extra_recv: %i\n",
709 __func__, rc);
710 rc = 0;
38b95bcf 711 }
f531a5db 712 }
c56c65fb
TT
713 }
714
715out:
716 if (rc)
717 ep->rep_connected = rc;
718 return rc;
719}
720
721/*
722 * rpcrdma_ep_disconnect
723 *
724 * This is separate from destroy to facilitate the ability
725 * to reconnect without recreating the endpoint.
726 *
727 * This call is not reentrant, and must not be made in parallel
728 * on the same endpoint.
729 */
282191cb 730void
c56c65fb
TT
731rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
732{
733 int rc;
734
c56c65fb
TT
735 rc = rdma_disconnect(ia->ri_id);
736 if (!rc) {
737 /* returns without wait if not connected */
738 wait_event_interruptible(ep->rep_connect_wait,
739 ep->rep_connected != 1);
740 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
741 (ep->rep_connected == 1) ? "still " : "dis");
742 } else {
743 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
744 ep->rep_connected = rc;
745 }
550d7502
CL
746
747 ib_drain_qp(ia->ri_id->qp);
c56c65fb
TT
748}
749
505bbe64
CL
750static void
751rpcrdma_mr_recovery_worker(struct work_struct *work)
752{
753 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
754 rb_recovery_worker.work);
755 struct rpcrdma_mw *mw;
756
757 spin_lock(&buf->rb_recovery_lock);
758 while (!list_empty(&buf->rb_stale_mrs)) {
759 mw = list_first_entry(&buf->rb_stale_mrs,
760 struct rpcrdma_mw, mw_list);
761 list_del_init(&mw->mw_list);
762 spin_unlock(&buf->rb_recovery_lock);
763
764 dprintk("RPC: %s: recovering MR %p\n", __func__, mw);
765 mw->mw_xprt->rx_ia.ri_ops->ro_recover_mr(mw);
766
767 spin_lock(&buf->rb_recovery_lock);
768 };
769 spin_unlock(&buf->rb_recovery_lock);
770}
771
772void
773rpcrdma_defer_mr_recovery(struct rpcrdma_mw *mw)
774{
775 struct rpcrdma_xprt *r_xprt = mw->mw_xprt;
776 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
777
778 spin_lock(&buf->rb_recovery_lock);
779 list_add(&mw->mw_list, &buf->rb_stale_mrs);
780 spin_unlock(&buf->rb_recovery_lock);
781
782 schedule_delayed_work(&buf->rb_recovery_worker, 0);
783}
784
e2ac236c
CL
785static void
786rpcrdma_create_mrs(struct rpcrdma_xprt *r_xprt)
787{
788 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
789 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
790 unsigned int count;
791 LIST_HEAD(free);
792 LIST_HEAD(all);
793
794 for (count = 0; count < 32; count++) {
795 struct rpcrdma_mw *mw;
796 int rc;
797
798 mw = kzalloc(sizeof(*mw), GFP_KERNEL);
799 if (!mw)
800 break;
801
802 rc = ia->ri_ops->ro_init_mr(ia, mw);
803 if (rc) {
804 kfree(mw);
805 break;
806 }
807
808 mw->mw_xprt = r_xprt;
809
810 list_add(&mw->mw_list, &free);
811 list_add(&mw->mw_all, &all);
812 }
813
814 spin_lock(&buf->rb_mwlock);
815 list_splice(&free, &buf->rb_mws);
816 list_splice(&all, &buf->rb_all);
817 r_xprt->rx_stats.mrs_allocated += count;
818 spin_unlock(&buf->rb_mwlock);
819
820 dprintk("RPC: %s: created %u MRs\n", __func__, count);
821}
822
823static void
824rpcrdma_mr_refresh_worker(struct work_struct *work)
825{
826 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
827 rb_refresh_worker.work);
828 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
829 rx_buf);
830
831 rpcrdma_create_mrs(r_xprt);
832}
833
f531a5db 834struct rpcrdma_req *
1392402c
CL
835rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
836{
f531a5db 837 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
1392402c 838 struct rpcrdma_req *req;
1392402c 839
85275c87 840 req = kzalloc(sizeof(*req), GFP_KERNEL);
1392402c 841 if (req == NULL)
85275c87 842 return ERR_PTR(-ENOMEM);
1392402c 843
f531a5db
CL
844 INIT_LIST_HEAD(&req->rl_free);
845 spin_lock(&buffer->rb_reqslock);
846 list_add(&req->rl_all, &buffer->rb_allreqs);
847 spin_unlock(&buffer->rb_reqslock);
2fa8f88d 848 req->rl_cqe.done = rpcrdma_wc_send;
1392402c
CL
849 req->rl_buffer = &r_xprt->rx_buf;
850 return req;
1392402c
CL
851}
852
f531a5db 853struct rpcrdma_rep *
1392402c
CL
854rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
855{
856 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
1392402c
CL
857 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
858 struct rpcrdma_rep *rep;
859 int rc;
860
861 rc = -ENOMEM;
6b1184cd 862 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
1392402c
CL
863 if (rep == NULL)
864 goto out;
1392402c 865
6b1184cd
CL
866 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(ia, cdata->inline_rsize,
867 GFP_KERNEL);
868 if (IS_ERR(rep->rr_rdmabuf)) {
869 rc = PTR_ERR(rep->rr_rdmabuf);
1392402c 870 goto out_free;
6b1184cd 871 }
1392402c 872
89e0d112 873 rep->rr_device = ia->ri_device;
552bf225 874 rep->rr_cqe.done = rpcrdma_receive_wc;
fed171b3 875 rep->rr_rxprt = r_xprt;
fe97b47c 876 INIT_WORK(&rep->rr_work, rpcrdma_receive_worker);
1392402c
CL
877 return rep;
878
879out_free:
880 kfree(rep);
881out:
882 return ERR_PTR(rc);
883}
884
c56c65fb 885int
ac920d04 886rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
c56c65fb 887{
ac920d04 888 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
c56c65fb
TT
889 int i, rc;
890
1e465fd4 891 buf->rb_max_requests = r_xprt->rx_data.max_requests;
f531a5db 892 buf->rb_bc_srv_max_requests = 0;
23826c7a 893 atomic_set(&buf->rb_credits, 1);
e2ac236c 894 spin_lock_init(&buf->rb_mwlock);
505bbe64
CL
895 spin_lock_init(&buf->rb_lock);
896 spin_lock_init(&buf->rb_recovery_lock);
e2ac236c
CL
897 INIT_LIST_HEAD(&buf->rb_mws);
898 INIT_LIST_HEAD(&buf->rb_all);
505bbe64 899 INIT_LIST_HEAD(&buf->rb_stale_mrs);
e2ac236c
CL
900 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
901 rpcrdma_mr_refresh_worker);
505bbe64
CL
902 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
903 rpcrdma_mr_recovery_worker);
c56c65fb 904
e2ac236c 905 rpcrdma_create_mrs(r_xprt);
c56c65fb 906
1e465fd4 907 INIT_LIST_HEAD(&buf->rb_send_bufs);
f531a5db
CL
908 INIT_LIST_HEAD(&buf->rb_allreqs);
909 spin_lock_init(&buf->rb_reqslock);
c56c65fb
TT
910 for (i = 0; i < buf->rb_max_requests; i++) {
911 struct rpcrdma_req *req;
c56c65fb 912
1392402c
CL
913 req = rpcrdma_create_req(r_xprt);
914 if (IS_ERR(req)) {
c56c65fb
TT
915 dprintk("RPC: %s: request buffer %d alloc"
916 " failed\n", __func__, i);
1392402c 917 rc = PTR_ERR(req);
c56c65fb
TT
918 goto out;
919 }
f531a5db 920 req->rl_backchannel = false;
1e465fd4
CL
921 list_add(&req->rl_free, &buf->rb_send_bufs);
922 }
923
924 INIT_LIST_HEAD(&buf->rb_recv_bufs);
3d4cf35b 925 for (i = 0; i < buf->rb_max_requests; i++) {
1e465fd4 926 struct rpcrdma_rep *rep;
c56c65fb 927
1392402c
CL
928 rep = rpcrdma_create_rep(r_xprt);
929 if (IS_ERR(rep)) {
c56c65fb
TT
930 dprintk("RPC: %s: reply buffer %d alloc failed\n",
931 __func__, i);
1392402c 932 rc = PTR_ERR(rep);
c56c65fb
TT
933 goto out;
934 }
1e465fd4 935 list_add(&rep->rr_list, &buf->rb_recv_bufs);
c56c65fb 936 }
1392402c 937
c56c65fb
TT
938 return 0;
939out:
940 rpcrdma_buffer_destroy(buf);
941 return rc;
942}
943
1e465fd4
CL
944static struct rpcrdma_req *
945rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
946{
947 struct rpcrdma_req *req;
948
949 req = list_first_entry(&buf->rb_send_bufs,
950 struct rpcrdma_req, rl_free);
951 list_del(&req->rl_free);
952 return req;
953}
954
955static struct rpcrdma_rep *
956rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
957{
958 struct rpcrdma_rep *rep;
959
960 rep = list_first_entry(&buf->rb_recv_bufs,
961 struct rpcrdma_rep, rr_list);
962 list_del(&rep->rr_list);
963 return rep;
964}
965
1392402c
CL
966static void
967rpcrdma_destroy_rep(struct rpcrdma_ia *ia, struct rpcrdma_rep *rep)
968{
6b1184cd 969 rpcrdma_free_regbuf(ia, rep->rr_rdmabuf);
1392402c
CL
970 kfree(rep);
971}
972
f531a5db 973void
1392402c
CL
974rpcrdma_destroy_req(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
975{
0ca77dc3 976 rpcrdma_free_regbuf(ia, req->rl_sendbuf);
85275c87 977 rpcrdma_free_regbuf(ia, req->rl_rdmabuf);
1392402c
CL
978 kfree(req);
979}
980
e2ac236c
CL
981static void
982rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf)
983{
984 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
985 rx_buf);
986 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
987 struct rpcrdma_mw *mw;
988 unsigned int count;
989
990 count = 0;
991 spin_lock(&buf->rb_mwlock);
992 while (!list_empty(&buf->rb_all)) {
993 mw = list_entry(buf->rb_all.next, struct rpcrdma_mw, mw_all);
994 list_del(&mw->mw_all);
995
996 spin_unlock(&buf->rb_mwlock);
997 ia->ri_ops->ro_release_mr(mw);
998 count++;
999 spin_lock(&buf->rb_mwlock);
1000 }
1001 spin_unlock(&buf->rb_mwlock);
1002 r_xprt->rx_stats.mrs_allocated = 0;
1003
1004 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1005}
1006
c56c65fb
TT
1007void
1008rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1009{
c56c65fb
TT
1010 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
1011
505bbe64
CL
1012 cancel_delayed_work_sync(&buf->rb_recovery_worker);
1013
1e465fd4
CL
1014 while (!list_empty(&buf->rb_recv_bufs)) {
1015 struct rpcrdma_rep *rep;
c56c65fb 1016
1e465fd4
CL
1017 rep = rpcrdma_buffer_get_rep_locked(buf);
1018 rpcrdma_destroy_rep(ia, rep);
c56c65fb
TT
1019 }
1020
f531a5db
CL
1021 spin_lock(&buf->rb_reqslock);
1022 while (!list_empty(&buf->rb_allreqs)) {
1e465fd4 1023 struct rpcrdma_req *req;
4034ba04 1024
f531a5db
CL
1025 req = list_first_entry(&buf->rb_allreqs,
1026 struct rpcrdma_req, rl_all);
1027 list_del(&req->rl_all);
1028
1029 spin_unlock(&buf->rb_reqslock);
1e465fd4 1030 rpcrdma_destroy_req(ia, req);
f531a5db 1031 spin_lock(&buf->rb_reqslock);
1e465fd4 1032 }
f531a5db 1033 spin_unlock(&buf->rb_reqslock);
4034ba04 1034
e2ac236c 1035 rpcrdma_destroy_mrs(buf);
c56c65fb
TT
1036}
1037
346aa66b
CL
1038struct rpcrdma_mw *
1039rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
c2922c02 1040{
346aa66b
CL
1041 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1042 struct rpcrdma_mw *mw = NULL;
346aa66b 1043
58d1dcf5 1044 spin_lock(&buf->rb_mwlock);
346aa66b
CL
1045 if (!list_empty(&buf->rb_mws)) {
1046 mw = list_first_entry(&buf->rb_mws,
1047 struct rpcrdma_mw, mw_list);
1048 list_del_init(&mw->mw_list);
c2922c02 1049 }
58d1dcf5 1050 spin_unlock(&buf->rb_mwlock);
346aa66b
CL
1051
1052 if (!mw)
e2ac236c 1053 goto out_nomws;
346aa66b 1054 return mw;
e2ac236c
CL
1055
1056out_nomws:
1057 dprintk("RPC: %s: no MWs available\n", __func__);
1058 schedule_delayed_work(&buf->rb_refresh_worker, 0);
1059
1060 /* Allow the reply handler and refresh worker to run */
1061 cond_resched();
1062
1063 return NULL;
c2922c02
CL
1064}
1065
346aa66b
CL
1066void
1067rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
c2922c02 1068{
346aa66b 1069 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
c2922c02 1070
58d1dcf5 1071 spin_lock(&buf->rb_mwlock);
346aa66b 1072 list_add_tail(&mw->mw_list, &buf->rb_mws);
58d1dcf5 1073 spin_unlock(&buf->rb_mwlock);
c2922c02
CL
1074}
1075
c56c65fb
TT
1076/*
1077 * Get a set of request/reply buffers.
c56c65fb
TT
1078 */
1079struct rpcrdma_req *
1080rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1081{
1082 struct rpcrdma_req *req;
c14d86e5 1083
a5b027e1 1084 spin_lock(&buffers->rb_lock);
1e465fd4
CL
1085 if (list_empty(&buffers->rb_send_bufs))
1086 goto out_reqbuf;
1087 req = rpcrdma_buffer_get_req_locked(buffers);
1088 if (list_empty(&buffers->rb_recv_bufs))
1089 goto out_repbuf;
1090 req->rl_reply = rpcrdma_buffer_get_rep_locked(buffers);
a5b027e1 1091 spin_unlock(&buffers->rb_lock);
1e465fd4 1092 return req;
ddb6bebc 1093
1e465fd4 1094out_reqbuf:
a5b027e1 1095 spin_unlock(&buffers->rb_lock);
3d4cf35b 1096 pr_warn("rpcrdma: out of request buffers (%p)\n", buffers);
1e465fd4
CL
1097 return NULL;
1098out_repbuf:
3d4cf35b 1099 list_add(&req->rl_free, &buffers->rb_send_bufs);
a5b027e1 1100 spin_unlock(&buffers->rb_lock);
3d4cf35b
CL
1101 pr_warn("rpcrdma: out of reply buffers (%p)\n", buffers);
1102 return NULL;
c56c65fb
TT
1103}
1104
1105/*
1106 * Put request/reply buffers back into pool.
1107 * Pre-decrement counter/array index.
1108 */
1109void
1110rpcrdma_buffer_put(struct rpcrdma_req *req)
1111{
1112 struct rpcrdma_buffer *buffers = req->rl_buffer;
1e465fd4 1113 struct rpcrdma_rep *rep = req->rl_reply;
c56c65fb 1114
1e465fd4
CL
1115 req->rl_niovs = 0;
1116 req->rl_reply = NULL;
1117
a5b027e1 1118 spin_lock(&buffers->rb_lock);
1e465fd4
CL
1119 list_add_tail(&req->rl_free, &buffers->rb_send_bufs);
1120 if (rep)
1121 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
a5b027e1 1122 spin_unlock(&buffers->rb_lock);
c56c65fb
TT
1123}
1124
1125/*
1126 * Recover reply buffers from pool.
1e465fd4 1127 * This happens when recovering from disconnect.
c56c65fb
TT
1128 */
1129void
1130rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1131{
1132 struct rpcrdma_buffer *buffers = req->rl_buffer;
c56c65fb 1133
a5b027e1 1134 spin_lock(&buffers->rb_lock);
1e465fd4
CL
1135 if (!list_empty(&buffers->rb_recv_bufs))
1136 req->rl_reply = rpcrdma_buffer_get_rep_locked(buffers);
a5b027e1 1137 spin_unlock(&buffers->rb_lock);
c56c65fb
TT
1138}
1139
1140/*
1141 * Put reply buffers back into pool when not attached to
b45ccfd2 1142 * request. This happens in error conditions.
c56c65fb
TT
1143 */
1144void
1145rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1146{
fed171b3 1147 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
c56c65fb 1148
a5b027e1 1149 spin_lock(&buffers->rb_lock);
1e465fd4 1150 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
a5b027e1 1151 spin_unlock(&buffers->rb_lock);
c56c65fb
TT
1152}
1153
1154/*
1155 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1156 */
1157
9128c3e7
CL
1158/**
1159 * rpcrdma_alloc_regbuf - kmalloc and register memory for SEND/RECV buffers
1160 * @ia: controlling rpcrdma_ia
1161 * @size: size of buffer to be allocated, in bytes
1162 * @flags: GFP flags
1163 *
1164 * Returns pointer to private header of an area of internally
1165 * registered memory, or an ERR_PTR. The registered buffer follows
1166 * the end of the private header.
1167 *
1168 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1169 * receiving the payload of RDMA RECV operations. regbufs are not
1170 * used for RDMA READ/WRITE operations, thus are registered only for
1171 * LOCAL access.
1172 */
1173struct rpcrdma_regbuf *
1174rpcrdma_alloc_regbuf(struct rpcrdma_ia *ia, size_t size, gfp_t flags)
1175{
1176 struct rpcrdma_regbuf *rb;
e531dcab 1177 struct ib_sge *iov;
9128c3e7 1178
9128c3e7
CL
1179 rb = kmalloc(sizeof(*rb) + size, flags);
1180 if (rb == NULL)
1181 goto out;
1182
e531dcab
CL
1183 iov = &rb->rg_iov;
1184 iov->addr = ib_dma_map_single(ia->ri_device,
1185 (void *)rb->rg_base, size,
1186 DMA_BIDIRECTIONAL);
1187 if (ib_dma_mapping_error(ia->ri_device, iov->addr))
9128c3e7
CL
1188 goto out_free;
1189
e531dcab 1190 iov->length = size;
bb6c96d7 1191 iov->lkey = ia->ri_pd->local_dma_lkey;
e531dcab
CL
1192 rb->rg_size = size;
1193 rb->rg_owner = NULL;
9128c3e7
CL
1194 return rb;
1195
1196out_free:
1197 kfree(rb);
1198out:
e531dcab 1199 return ERR_PTR(-ENOMEM);
9128c3e7
CL
1200}
1201
1202/**
1203 * rpcrdma_free_regbuf - deregister and free registered buffer
1204 * @ia: controlling rpcrdma_ia
1205 * @rb: regbuf to be deregistered and freed
1206 */
1207void
1208rpcrdma_free_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1209{
e531dcab
CL
1210 struct ib_sge *iov;
1211
1212 if (!rb)
1213 return;
1214
1215 iov = &rb->rg_iov;
1216 ib_dma_unmap_single(ia->ri_device,
1217 iov->addr, iov->length, DMA_BIDIRECTIONAL);
1218 kfree(rb);
9128c3e7
CL
1219}
1220
c56c65fb
TT
1221/*
1222 * Prepost any receive buffer, then post send.
1223 *
1224 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1225 */
1226int
1227rpcrdma_ep_post(struct rpcrdma_ia *ia,
1228 struct rpcrdma_ep *ep,
1229 struct rpcrdma_req *req)
1230{
b3221d6a 1231 struct ib_device *device = ia->ri_device;
c56c65fb
TT
1232 struct ib_send_wr send_wr, *send_wr_fail;
1233 struct rpcrdma_rep *rep = req->rl_reply;
b3221d6a
CL
1234 struct ib_sge *iov = req->rl_send_iov;
1235 int i, rc;
c56c65fb
TT
1236
1237 if (rep) {
1238 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1239 if (rc)
7a89f9c6 1240 return rc;
c56c65fb
TT
1241 req->rl_reply = NULL;
1242 }
1243
1244 send_wr.next = NULL;
2fa8f88d 1245 send_wr.wr_cqe = &req->rl_cqe;
b3221d6a 1246 send_wr.sg_list = iov;
c56c65fb
TT
1247 send_wr.num_sge = req->rl_niovs;
1248 send_wr.opcode = IB_WR_SEND;
b3221d6a
CL
1249
1250 for (i = 0; i < send_wr.num_sge; i++)
1251 ib_dma_sync_single_for_device(device, iov[i].addr,
1252 iov[i].length, DMA_TO_DEVICE);
1253 dprintk("RPC: %s: posting %d s/g entries\n",
1254 __func__, send_wr.num_sge);
c56c65fb
TT
1255
1256 if (DECR_CQCOUNT(ep) > 0)
1257 send_wr.send_flags = 0;
1258 else { /* Provider must take a send completion every now and then */
1259 INIT_CQCOUNT(ep);
1260 send_wr.send_flags = IB_SEND_SIGNALED;
1261 }
1262
1263 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail);
1264 if (rc)
7a89f9c6
CL
1265 goto out_postsend_err;
1266 return 0;
1267
1268out_postsend_err:
1269 pr_err("rpcrdma: RDMA Send ib_post_send returned %i\n", rc);
1270 return -ENOTCONN;
c56c65fb
TT
1271}
1272
1273/*
1274 * (Re)post a receive buffer.
1275 */
1276int
1277rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
1278 struct rpcrdma_ep *ep,
1279 struct rpcrdma_rep *rep)
1280{
1281 struct ib_recv_wr recv_wr, *recv_wr_fail;
1282 int rc;
1283
1284 recv_wr.next = NULL;
552bf225 1285 recv_wr.wr_cqe = &rep->rr_cqe;
6b1184cd 1286 recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
c56c65fb
TT
1287 recv_wr.num_sge = 1;
1288
89e0d112 1289 ib_dma_sync_single_for_cpu(ia->ri_device,
6b1184cd
CL
1290 rdmab_addr(rep->rr_rdmabuf),
1291 rdmab_length(rep->rr_rdmabuf),
1292 DMA_BIDIRECTIONAL);
c56c65fb 1293
c56c65fb 1294 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
c56c65fb 1295 if (rc)
7a89f9c6
CL
1296 goto out_postrecv;
1297 return 0;
1298
1299out_postrecv:
1300 pr_err("rpcrdma: ib_post_recv returned %i\n", rc);
1301 return -ENOTCONN;
c56c65fb 1302}
43e95988 1303
f531a5db
CL
1304/**
1305 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1306 * @r_xprt: transport associated with these backchannel resources
1307 * @min_reqs: minimum number of incoming requests expected
1308 *
1309 * Returns zero if all requested buffers were posted, or a negative errno.
1310 */
1311int
1312rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1313{
1314 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1315 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1316 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
1317 struct rpcrdma_rep *rep;
f531a5db
CL
1318 int rc;
1319
1320 while (count--) {
9b06688b 1321 spin_lock(&buffers->rb_lock);
f531a5db
CL
1322 if (list_empty(&buffers->rb_recv_bufs))
1323 goto out_reqbuf;
1324 rep = rpcrdma_buffer_get_rep_locked(buffers);
9b06688b 1325 spin_unlock(&buffers->rb_lock);
f531a5db
CL
1326
1327 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1328 if (rc)
1329 goto out_rc;
1330 }
1331
1332 return 0;
1333
1334out_reqbuf:
9b06688b 1335 spin_unlock(&buffers->rb_lock);
f531a5db
CL
1336 pr_warn("%s: no extra receive buffers\n", __func__);
1337 return -ENOMEM;
1338
1339out_rc:
1340 rpcrdma_recv_buffer_put(rep);
1341 return rc;
1342}
This page took 0.78392 seconds and 5 git commands to generate.