xprtrdma: Allocate MRs on demand
[deliverable/linux.git] / net / sunrpc / xprtrdma / verbs.c
1 /*
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.
38 */
39
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
50 #include <linux/interrupt.h>
51 #include <linux/slab.h>
52 #include <linux/prefetch.h>
53 #include <linux/sunrpc/addr.h>
54 #include <asm/bitops.h>
55 #include <linux/module.h> /* try_module_get()/module_put() */
56
57 #include "xprt_rdma.h"
58
59 /*
60 * Globals/Macros
61 */
62
63 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
64 # define RPCDBG_FACILITY RPCDBG_TRANS
65 #endif
66
67 /*
68 * internal functions
69 */
70
71 static struct workqueue_struct *rpcrdma_receive_wq;
72
73 int
74 rpcrdma_alloc_wq(void)
75 {
76 struct workqueue_struct *recv_wq;
77
78 recv_wq = alloc_workqueue("xprtrdma_receive",
79 WQ_MEM_RECLAIM | WQ_UNBOUND | WQ_HIGHPRI,
80 0);
81 if (!recv_wq)
82 return -ENOMEM;
83
84 rpcrdma_receive_wq = recv_wq;
85 return 0;
86 }
87
88 void
89 rpcrdma_destroy_wq(void)
90 {
91 struct workqueue_struct *wq;
92
93 if (rpcrdma_receive_wq) {
94 wq = rpcrdma_receive_wq;
95 rpcrdma_receive_wq = NULL;
96 destroy_workqueue(wq);
97 }
98 }
99
100 static void
101 rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
102 {
103 struct rpcrdma_ep *ep = context;
104
105 pr_err("RPC: %s: %s on device %s ep %p\n",
106 __func__, ib_event_msg(event->event),
107 event->device->name, context);
108 if (ep->rep_connected == 1) {
109 ep->rep_connected = -EIO;
110 rpcrdma_conn_func(ep);
111 wake_up_all(&ep->rep_connect_wait);
112 }
113 }
114
115 /**
116 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
117 * @cq: completion queue (ignored)
118 * @wc: completed WR
119 *
120 */
121 static void
122 rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
123 {
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);
129 }
130
131 static void
132 rpcrdma_receive_worker(struct work_struct *work)
133 {
134 struct rpcrdma_rep *rep =
135 container_of(work, struct rpcrdma_rep, rr_work);
136
137 rpcrdma_reply_handler(rep);
138 }
139
140 /* Perform basic sanity checking to avoid using garbage
141 * to update the credit grant value.
142 */
143 static void
144 rpcrdma_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
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 */
168 static void
169 rpcrdma_receive_wc(struct ib_cq *cq, struct ib_wc *wc)
170 {
171 struct ib_cqe *cqe = wc->wr_cqe;
172 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
173 rr_cqe);
174
175 /* WARNING: Only wr_id and status are reliable at this point */
176 if (wc->status != IB_WC_SUCCESS)
177 goto out_fail;
178
179 /* status == SUCCESS means all fields in wc are trustworthy */
180 if (wc->opcode != IB_WC_RECV)
181 return;
182
183 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
184 __func__, rep, wc->byte_len);
185
186 rep->rr_len = wc->byte_len;
187 ib_dma_sync_single_for_cpu(rep->rr_device,
188 rdmab_addr(rep->rr_rdmabuf),
189 rep->rr_len, DMA_FROM_DEVICE);
190
191 rpcrdma_update_granted_credits(rep);
192
193 out_schedule:
194 queue_work(rpcrdma_receive_wq, &rep->rr_work);
195 return;
196
197 out_fail:
198 if (wc->status != IB_WC_WR_FLUSH_ERR)
199 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
200 ib_wc_status_msg(wc->status),
201 wc->status, wc->vendor_err);
202 rep->rr_len = RPCRDMA_BAD_LEN;
203 goto out_schedule;
204 }
205
206 static int
207 rpcrdma_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;
212 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
213 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
214 #endif
215 struct ib_qp_attr *attr = &ia->ri_qp_attr;
216 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
217 int connstate = 0;
218
219 switch (event->event) {
220 case RDMA_CM_EVENT_ADDR_RESOLVED:
221 case RDMA_CM_EVENT_ROUTE_RESOLVED:
222 ia->ri_async_rc = 0;
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;
239 ib_query_qp(ia->ri_id->qp, attr,
240 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
241 iattr);
242 dprintk("RPC: %s: %d responder resources"
243 " (%d initiator)\n",
244 __func__, attr->max_dest_rd_atomic,
245 attr->max_rd_atomic);
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;
261 connected:
262 dprintk("RPC: %s: %sconnected\n",
263 __func__, connstate > 0 ? "" : "dis");
264 atomic_set(&xprt->rx_buf.rb_credits, 1);
265 ep->rep_connected = connstate;
266 rpcrdma_conn_func(ep);
267 wake_up_all(&ep->rep_connect_wait);
268 /*FALLTHROUGH*/
269 default:
270 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
271 __func__, sap, rpc_get_port(sap), ep,
272 rdma_event_msg(event->event));
273 break;
274 }
275
276 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
277 if (connstate == 1) {
278 int ird = attr->max_dest_rd_atomic;
279 int tird = ep->rep_remote_cma.responder_resources;
280
281 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
282 sap, rpc_get_port(sap),
283 ia->ri_device->name,
284 ia->ri_ops->ro_displayname,
285 xprt->rx_buf.rb_max_requests,
286 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
287 } else if (connstate < 0) {
288 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
289 sap, rpc_get_port(sap), connstate);
290 }
291 #endif
292
293 return 0;
294 }
295
296 static 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
304 static struct rdma_cm_id *
305 rpcrdma_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
311 init_completion(&ia->ri_done);
312
313 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
314 IB_QPT_RC);
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
322 ia->ri_async_rc = -ETIMEDOUT;
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 }
329 wait_for_completion_interruptible_timeout(&ia->ri_done,
330 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
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 }
342 rc = ia->ri_async_rc;
343 if (rc)
344 goto out;
345
346 ia->ri_async_rc = -ETIMEDOUT;
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);
351 goto put;
352 }
353 wait_for_completion_interruptible_timeout(&ia->ri_done,
354 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
355 rc = ia->ri_async_rc;
356 if (rc)
357 goto put;
358
359 return id;
360 put:
361 module_put(id->device->owner);
362 out:
363 rdma_destroy_id(id);
364 return ERR_PTR(rc);
365 }
366
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 */
376 int
377 rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
378 {
379 struct rpcrdma_ia *ia = &xprt->rx_ia;
380 int rc;
381
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 }
387 ia->ri_device = ia->ri_id->device;
388
389 ia->ri_pd = ib_alloc_pd(ia->ri_device);
390 if (IS_ERR(ia->ri_pd)) {
391 rc = PTR_ERR(ia->ri_pd);
392 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
393 goto out2;
394 }
395
396 switch (memreg) {
397 case RPCRDMA_FRMR:
398 if (frwr_is_supported(ia)) {
399 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
400 break;
401 }
402 /*FALLTHROUGH*/
403 case RPCRDMA_MTHCAFMR:
404 if (fmr_is_supported(ia)) {
405 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
406 break;
407 }
408 /*FALLTHROUGH*/
409 default:
410 pr_err("rpcrdma: Unsupported memory registration mode: %d\n",
411 memreg);
412 rc = -EINVAL;
413 goto out3;
414 }
415
416 return 0;
417
418 out3:
419 ib_dealloc_pd(ia->ri_pd);
420 ia->ri_pd = NULL;
421 out2:
422 rpcrdma_destroy_id(ia->ri_id);
423 ia->ri_id = NULL;
424 out1:
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 */
433 void
434 rpcrdma_ia_close(struct rpcrdma_ia *ia)
435 {
436 dprintk("RPC: %s: entering\n", __func__);
437 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
438 if (ia->ri_id->qp)
439 rdma_destroy_qp(ia->ri_id);
440 rpcrdma_destroy_id(ia->ri_id);
441 ia->ri_id = NULL;
442 }
443
444 /* If the pd is still busy, xprtrdma missed freeing a resource */
445 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
446 ib_dealloc_pd(ia->ri_pd);
447 }
448
449 /*
450 * Create unconnected endpoint.
451 */
452 int
453 rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
454 struct rpcrdma_create_data_internal *cdata)
455 {
456 struct ib_cq *sendcq, *recvcq;
457 unsigned int max_qp_wr;
458 int rc;
459
460 if (ia->ri_device->attrs.max_sge < RPCRDMA_MAX_IOVS) {
461 dprintk("RPC: %s: insufficient sge's available\n",
462 __func__);
463 return -ENOMEM;
464 }
465
466 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
467 dprintk("RPC: %s: insufficient wqe's available\n",
468 __func__);
469 return -ENOMEM;
470 }
471 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
472
473 /* check provider's send/recv wr limits */
474 if (cdata->max_requests > max_qp_wr)
475 cdata->max_requests = max_qp_wr;
476
477 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
478 ep->rep_attr.qp_context = ep;
479 ep->rep_attr.srq = NULL;
480 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
481 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
482 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
483 rc = ia->ri_ops->ro_open(ia, ep, cdata);
484 if (rc)
485 return rc;
486 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
487 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
488 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
489 ep->rep_attr.cap.max_send_sge = RPCRDMA_MAX_IOVS;
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 */
505 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
506 if (ep->rep_cqinit <= 2)
507 ep->rep_cqinit = 0; /* always signal? */
508 INIT_CQCOUNT(ep);
509 init_waitqueue_head(&ep->rep_connect_wait);
510 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
511
512 sendcq = ib_alloc_cq(ia->ri_device, NULL,
513 ep->rep_attr.cap.max_send_wr + 1,
514 0, IB_POLL_SOFTIRQ);
515 if (IS_ERR(sendcq)) {
516 rc = PTR_ERR(sendcq);
517 dprintk("RPC: %s: failed to create send CQ: %i\n",
518 __func__, rc);
519 goto out1;
520 }
521
522 recvcq = ib_alloc_cq(ia->ri_device, NULL,
523 ep->rep_attr.cap.max_recv_wr + 1,
524 0, IB_POLL_SOFTIRQ);
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
532 ep->rep_attr.send_cq = sendcq;
533 ep->rep_attr.recv_cq = recvcq;
534
535 /* Initialize cma parameters */
536 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
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 */
543 ep->rep_remote_cma.initiator_depth = 0;
544 if (ia->ri_device->attrs.max_qp_rd_atom > 32) /* arbitrary but <= 255 */
545 ep->rep_remote_cma.responder_resources = 32;
546 else
547 ep->rep_remote_cma.responder_resources =
548 ia->ri_device->attrs.max_qp_rd_atom;
549
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 */
560 ep->rep_remote_cma.flow_control = 0;
561 ep->rep_remote_cma.rnr_retry_count = 0;
562
563 return 0;
564
565 out2:
566 ib_free_cq(sendcq);
567 out1:
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.
577 */
578 void
579 rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
580 {
581 dprintk("RPC: %s: entering, connected is %d\n",
582 __func__, ep->rep_connected);
583
584 cancel_delayed_work_sync(&ep->rep_connect_worker);
585
586 if (ia->ri_id->qp) {
587 rpcrdma_ep_disconnect(ep, ia);
588 rdma_destroy_qp(ia->ri_id);
589 ia->ri_id->qp = NULL;
590 }
591
592 ib_free_cq(ep->rep_attr.recv_cq);
593 ib_free_cq(ep->rep_attr.send_cq);
594 }
595
596 /*
597 * Connect unconnected endpoint.
598 */
599 int
600 rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
601 {
602 struct rdma_cm_id *id, *old;
603 int rc = 0;
604 int retry_count = 0;
605
606 if (ep->rep_connected != 0) {
607 struct rpcrdma_xprt *xprt;
608 retry:
609 dprintk("RPC: %s: reconnecting...\n", __func__);
610
611 rpcrdma_ep_disconnect(ep, ia);
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)) {
617 rc = -EHOSTUNREACH;
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 */
627 if (ia->ri_device != id->device) {
628 printk("RPC: %s: can't reconnect on "
629 "different device!\n", __func__);
630 rpcrdma_destroy_id(id);
631 rc = -ENETUNREACH;
632 goto out;
633 }
634 /* END TEMP */
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);
639 rpcrdma_destroy_id(id);
640 rc = -ENETUNREACH;
641 goto out;
642 }
643
644 old = ia->ri_id;
645 ia->ri_id = id;
646
647 rdma_destroy_qp(old);
648 rpcrdma_destroy_id(old);
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 }
658 }
659
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
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 */
677 if (ep->rep_connected == -ECONNREFUSED &&
678 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
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. */
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;
693 goto retry;
694 }
695 rc = ep->rep_connected;
696 } else {
697 struct rpcrdma_xprt *r_xprt;
698 unsigned int extras;
699
700 dprintk("RPC: %s: connected\n", __func__);
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);
707 if (rc) {
708 pr_warn("%s: rpcrdma_ep_post_extra_recv: %i\n",
709 __func__, rc);
710 rc = 0;
711 }
712 }
713 }
714
715 out:
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 */
730 void
731 rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
732 {
733 int rc;
734
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 }
746
747 ib_drain_qp(ia->ri_id->qp);
748 }
749
750 static void
751 rpcrdma_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
772 void
773 rpcrdma_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
785 static void
786 rpcrdma_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
823 static void
824 rpcrdma_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
834 struct rpcrdma_req *
835 rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
836 {
837 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
838 struct rpcrdma_req *req;
839
840 req = kzalloc(sizeof(*req), GFP_KERNEL);
841 if (req == NULL)
842 return ERR_PTR(-ENOMEM);
843
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);
848 req->rl_cqe.done = rpcrdma_wc_send;
849 req->rl_buffer = &r_xprt->rx_buf;
850 return req;
851 }
852
853 struct rpcrdma_rep *
854 rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
855 {
856 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
857 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
858 struct rpcrdma_rep *rep;
859 int rc;
860
861 rc = -ENOMEM;
862 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
863 if (rep == NULL)
864 goto out;
865
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);
870 goto out_free;
871 }
872
873 rep->rr_device = ia->ri_device;
874 rep->rr_cqe.done = rpcrdma_receive_wc;
875 rep->rr_rxprt = r_xprt;
876 INIT_WORK(&rep->rr_work, rpcrdma_receive_worker);
877 return rep;
878
879 out_free:
880 kfree(rep);
881 out:
882 return ERR_PTR(rc);
883 }
884
885 int
886 rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
887 {
888 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
889 int i, rc;
890
891 buf->rb_max_requests = r_xprt->rx_data.max_requests;
892 buf->rb_bc_srv_max_requests = 0;
893 atomic_set(&buf->rb_credits, 1);
894 spin_lock_init(&buf->rb_mwlock);
895 spin_lock_init(&buf->rb_lock);
896 spin_lock_init(&buf->rb_recovery_lock);
897 INIT_LIST_HEAD(&buf->rb_mws);
898 INIT_LIST_HEAD(&buf->rb_all);
899 INIT_LIST_HEAD(&buf->rb_stale_mrs);
900 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
901 rpcrdma_mr_refresh_worker);
902 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
903 rpcrdma_mr_recovery_worker);
904
905 rpcrdma_create_mrs(r_xprt);
906
907 INIT_LIST_HEAD(&buf->rb_send_bufs);
908 INIT_LIST_HEAD(&buf->rb_allreqs);
909 spin_lock_init(&buf->rb_reqslock);
910 for (i = 0; i < buf->rb_max_requests; i++) {
911 struct rpcrdma_req *req;
912
913 req = rpcrdma_create_req(r_xprt);
914 if (IS_ERR(req)) {
915 dprintk("RPC: %s: request buffer %d alloc"
916 " failed\n", __func__, i);
917 rc = PTR_ERR(req);
918 goto out;
919 }
920 req->rl_backchannel = false;
921 list_add(&req->rl_free, &buf->rb_send_bufs);
922 }
923
924 INIT_LIST_HEAD(&buf->rb_recv_bufs);
925 for (i = 0; i < buf->rb_max_requests; i++) {
926 struct rpcrdma_rep *rep;
927
928 rep = rpcrdma_create_rep(r_xprt);
929 if (IS_ERR(rep)) {
930 dprintk("RPC: %s: reply buffer %d alloc failed\n",
931 __func__, i);
932 rc = PTR_ERR(rep);
933 goto out;
934 }
935 list_add(&rep->rr_list, &buf->rb_recv_bufs);
936 }
937
938 return 0;
939 out:
940 rpcrdma_buffer_destroy(buf);
941 return rc;
942 }
943
944 static struct rpcrdma_req *
945 rpcrdma_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
955 static struct rpcrdma_rep *
956 rpcrdma_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
966 static void
967 rpcrdma_destroy_rep(struct rpcrdma_ia *ia, struct rpcrdma_rep *rep)
968 {
969 rpcrdma_free_regbuf(ia, rep->rr_rdmabuf);
970 kfree(rep);
971 }
972
973 void
974 rpcrdma_destroy_req(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
975 {
976 rpcrdma_free_regbuf(ia, req->rl_sendbuf);
977 rpcrdma_free_regbuf(ia, req->rl_rdmabuf);
978 kfree(req);
979 }
980
981 static void
982 rpcrdma_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
1007 void
1008 rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1009 {
1010 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
1011
1012 cancel_delayed_work_sync(&buf->rb_recovery_worker);
1013
1014 while (!list_empty(&buf->rb_recv_bufs)) {
1015 struct rpcrdma_rep *rep;
1016
1017 rep = rpcrdma_buffer_get_rep_locked(buf);
1018 rpcrdma_destroy_rep(ia, rep);
1019 }
1020
1021 spin_lock(&buf->rb_reqslock);
1022 while (!list_empty(&buf->rb_allreqs)) {
1023 struct rpcrdma_req *req;
1024
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);
1030 rpcrdma_destroy_req(ia, req);
1031 spin_lock(&buf->rb_reqslock);
1032 }
1033 spin_unlock(&buf->rb_reqslock);
1034
1035 rpcrdma_destroy_mrs(buf);
1036 }
1037
1038 struct rpcrdma_mw *
1039 rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
1040 {
1041 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1042 struct rpcrdma_mw *mw = NULL;
1043
1044 spin_lock(&buf->rb_mwlock);
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);
1049 }
1050 spin_unlock(&buf->rb_mwlock);
1051
1052 if (!mw)
1053 goto out_nomws;
1054 return mw;
1055
1056 out_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;
1064 }
1065
1066 void
1067 rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
1068 {
1069 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1070
1071 spin_lock(&buf->rb_mwlock);
1072 list_add_tail(&mw->mw_list, &buf->rb_mws);
1073 spin_unlock(&buf->rb_mwlock);
1074 }
1075
1076 /*
1077 * Get a set of request/reply buffers.
1078 */
1079 struct rpcrdma_req *
1080 rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1081 {
1082 struct rpcrdma_req *req;
1083
1084 spin_lock(&buffers->rb_lock);
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);
1091 spin_unlock(&buffers->rb_lock);
1092 return req;
1093
1094 out_reqbuf:
1095 spin_unlock(&buffers->rb_lock);
1096 pr_warn("rpcrdma: out of request buffers (%p)\n", buffers);
1097 return NULL;
1098 out_repbuf:
1099 list_add(&req->rl_free, &buffers->rb_send_bufs);
1100 spin_unlock(&buffers->rb_lock);
1101 pr_warn("rpcrdma: out of reply buffers (%p)\n", buffers);
1102 return NULL;
1103 }
1104
1105 /*
1106 * Put request/reply buffers back into pool.
1107 * Pre-decrement counter/array index.
1108 */
1109 void
1110 rpcrdma_buffer_put(struct rpcrdma_req *req)
1111 {
1112 struct rpcrdma_buffer *buffers = req->rl_buffer;
1113 struct rpcrdma_rep *rep = req->rl_reply;
1114
1115 req->rl_niovs = 0;
1116 req->rl_reply = NULL;
1117
1118 spin_lock(&buffers->rb_lock);
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);
1122 spin_unlock(&buffers->rb_lock);
1123 }
1124
1125 /*
1126 * Recover reply buffers from pool.
1127 * This happens when recovering from disconnect.
1128 */
1129 void
1130 rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1131 {
1132 struct rpcrdma_buffer *buffers = req->rl_buffer;
1133
1134 spin_lock(&buffers->rb_lock);
1135 if (!list_empty(&buffers->rb_recv_bufs))
1136 req->rl_reply = rpcrdma_buffer_get_rep_locked(buffers);
1137 spin_unlock(&buffers->rb_lock);
1138 }
1139
1140 /*
1141 * Put reply buffers back into pool when not attached to
1142 * request. This happens in error conditions.
1143 */
1144 void
1145 rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1146 {
1147 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
1148
1149 spin_lock(&buffers->rb_lock);
1150 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
1151 spin_unlock(&buffers->rb_lock);
1152 }
1153
1154 /*
1155 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1156 */
1157
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 */
1173 struct rpcrdma_regbuf *
1174 rpcrdma_alloc_regbuf(struct rpcrdma_ia *ia, size_t size, gfp_t flags)
1175 {
1176 struct rpcrdma_regbuf *rb;
1177 struct ib_sge *iov;
1178
1179 rb = kmalloc(sizeof(*rb) + size, flags);
1180 if (rb == NULL)
1181 goto out;
1182
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))
1188 goto out_free;
1189
1190 iov->length = size;
1191 iov->lkey = ia->ri_pd->local_dma_lkey;
1192 rb->rg_size = size;
1193 rb->rg_owner = NULL;
1194 return rb;
1195
1196 out_free:
1197 kfree(rb);
1198 out:
1199 return ERR_PTR(-ENOMEM);
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 */
1207 void
1208 rpcrdma_free_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1209 {
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);
1219 }
1220
1221 /*
1222 * Prepost any receive buffer, then post send.
1223 *
1224 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1225 */
1226 int
1227 rpcrdma_ep_post(struct rpcrdma_ia *ia,
1228 struct rpcrdma_ep *ep,
1229 struct rpcrdma_req *req)
1230 {
1231 struct ib_device *device = ia->ri_device;
1232 struct ib_send_wr send_wr, *send_wr_fail;
1233 struct rpcrdma_rep *rep = req->rl_reply;
1234 struct ib_sge *iov = req->rl_send_iov;
1235 int i, rc;
1236
1237 if (rep) {
1238 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1239 if (rc)
1240 return rc;
1241 req->rl_reply = NULL;
1242 }
1243
1244 send_wr.next = NULL;
1245 send_wr.wr_cqe = &req->rl_cqe;
1246 send_wr.sg_list = iov;
1247 send_wr.num_sge = req->rl_niovs;
1248 send_wr.opcode = IB_WR_SEND;
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);
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)
1265 goto out_postsend_err;
1266 return 0;
1267
1268 out_postsend_err:
1269 pr_err("rpcrdma: RDMA Send ib_post_send returned %i\n", rc);
1270 return -ENOTCONN;
1271 }
1272
1273 /*
1274 * (Re)post a receive buffer.
1275 */
1276 int
1277 rpcrdma_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;
1285 recv_wr.wr_cqe = &rep->rr_cqe;
1286 recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1287 recv_wr.num_sge = 1;
1288
1289 ib_dma_sync_single_for_cpu(ia->ri_device,
1290 rdmab_addr(rep->rr_rdmabuf),
1291 rdmab_length(rep->rr_rdmabuf),
1292 DMA_BIDIRECTIONAL);
1293
1294 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
1295 if (rc)
1296 goto out_postrecv;
1297 return 0;
1298
1299 out_postrecv:
1300 pr_err("rpcrdma: ib_post_recv returned %i\n", rc);
1301 return -ENOTCONN;
1302 }
1303
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 */
1311 int
1312 rpcrdma_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;
1318 int rc;
1319
1320 while (count--) {
1321 spin_lock(&buffers->rb_lock);
1322 if (list_empty(&buffers->rb_recv_bufs))
1323 goto out_reqbuf;
1324 rep = rpcrdma_buffer_get_rep_locked(buffers);
1325 spin_unlock(&buffers->rb_lock);
1326
1327 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1328 if (rc)
1329 goto out_rc;
1330 }
1331
1332 return 0;
1333
1334 out_reqbuf:
1335 spin_unlock(&buffers->rb_lock);
1336 pr_warn("%s: no extra receive buffers\n", __func__);
1337 return -ENOMEM;
1338
1339 out_rc:
1340 rpcrdma_recv_buffer_put(rep);
1341 return rc;
1342 }
This page took 0.058461 seconds and 5 git commands to generate.