blob: f5ed9f982cd71b12606d7f8953a6283447509029 [file] [log] [blame]
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04001/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04002 * 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.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040038 */
39
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040040/*
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
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000050#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Chuck Levereba8ff62015-01-21 11:03:02 -050052#include <linux/prefetch.h>
Chuck Lever0dd39ca2015-03-30 14:33:43 -040053#include <linux/sunrpc/addr.h>
Chuck Lever65866f82014-05-28 10:33:59 -040054#include <asm/bitops.h>
Devesh Sharmad0f36c42015-08-03 13:05:04 -040055#include <linux/module.h> /* try_module_get()/module_put() */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040056
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040057#include "xprt_rdma.h"
58
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040059/*
60 * Globals/Macros
61 */
62
Jeff Laytonf895b252014-11-17 16:58:04 -050063#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040064# define RPCDBG_FACILITY RPCDBG_TRANS
65#endif
66
67/*
68 * internal functions
69 */
70
Chuck Leverfe97b472015-10-24 17:27:10 -040071static struct workqueue_struct *rpcrdma_receive_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040072
Chuck Leverfe97b472015-10-24 17:27:10 -040073int
74rpcrdma_alloc_wq(void)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040075{
Chuck Leverfe97b472015-10-24 17:27:10 -040076 struct workqueue_struct *recv_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040077
Chuck Leverfe97b472015-10-24 17:27:10 -040078 recv_wq = alloc_workqueue("xprtrdma_receive",
79 WQ_MEM_RECLAIM | WQ_UNBOUND | WQ_HIGHPRI,
80 0);
81 if (!recv_wq)
82 return -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040083
Chuck Leverfe97b472015-10-24 17:27:10 -040084 rpcrdma_receive_wq = recv_wq;
85 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040086}
87
Chuck Leverfe97b472015-10-24 17:27:10 -040088void
89rpcrdma_destroy_wq(void)
Chuck Leverf1a03b72014-11-08 20:14:37 -050090{
Chuck Leverfe97b472015-10-24 17:27:10 -040091 struct workqueue_struct *wq;
Chuck Leverf1a03b72014-11-08 20:14:37 -050092
Chuck Leverfe97b472015-10-24 17:27:10 -040093 if (rpcrdma_receive_wq) {
94 wq = rpcrdma_receive_wq;
95 rpcrdma_receive_wq = NULL;
96 destroy_workqueue(wq);
97 }
Chuck Leverf1a03b72014-11-08 20:14:37 -050098}
99
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400100static void
101rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
102{
103 struct rpcrdma_ep *ep = context;
104
Chuck Lever7ff11de2014-11-08 20:15:01 -0500105 pr_err("RPC: %s: %s on device %s ep %p\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300106 __func__, ib_event_msg(event->event),
Chuck Lever7ff11de2014-11-08 20:15:01 -0500107 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400108 if (ep->rep_connected == 1) {
109 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500110 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400111 wake_up_all(&ep->rep_connect_wait);
112 }
113}
114
Chuck Lever2fa8f882016-03-04 11:28:53 -0500115/**
116 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
117 * @cq: completion queue (ignored)
118 * @wc: completed WR
119 *
Chuck Lever4220a072015-10-24 17:26:45 -0400120 */
121static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500122rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400123{
Chuck Lever2fa8f882016-03-04 11:28:53 -0500124 /* 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);
Chuck Leverfc664482014-05-28 10:33:25 -0400129}
130
131static void
Chuck Leverfe97b472015-10-24 17:27:10 -0400132rpcrdma_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
Chuck Lever23826c72016-03-04 11:28:27 -0500140/* 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
Chuck Lever552bf222016-03-04 11:28:36 -0500162/**
163 * rpcrdma_receive_wc - Invoked by RDMA provider for each polled Receive WC
164 * @cq: completion queue (ignored)
165 * @wc: completed WR
166 *
167 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400168static void
Chuck Lever552bf222016-03-04 11:28:36 -0500169rpcrdma_receive_wc(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400170{
Chuck Lever552bf222016-03-04 11:28:36 -0500171 struct ib_cqe *cqe = wc->wr_cqe;
172 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
173 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400174
Chuck Lever85024272015-01-21 11:02:04 -0500175 /* WARNING: Only wr_id and status are reliable at this point */
176 if (wc->status != IB_WC_SUCCESS)
177 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400178
Chuck Lever85024272015-01-21 11:02:04 -0500179 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Leverfc664482014-05-28 10:33:25 -0400180 if (wc->opcode != IB_WC_RECV)
181 return;
182
Chuck Lever85024272015-01-21 11:02:04 -0500183 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
184 __func__, rep, wc->byte_len);
185
Chuck Leverfc664482014-05-28 10:33:25 -0400186 rep->rr_len = wc->byte_len;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400187 ib_dma_sync_single_for_cpu(rep->rr_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -0500188 rdmab_addr(rep->rr_rdmabuf),
189 rep->rr_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500190
191 rpcrdma_update_granted_credits(rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400192
193out_schedule:
Chuck Leverfe97b472015-10-24 17:27:10 -0400194 queue_work(rpcrdma_receive_wq, &rep->rr_work);
Chuck Lever85024272015-01-21 11:02:04 -0500195 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400196
Chuck Lever85024272015-01-21 11:02:04 -0500197out_fail:
198 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500199 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
200 ib_wc_status_msg(wc->status),
201 wc->status, wc->vendor_err);
Chuck Leverb0e178a2015-10-24 17:26:54 -0400202 rep->rr_len = RPCRDMA_BAD_LEN;
Chuck Lever85024272015-01-21 11:02:04 -0500203 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400204}
205
Chuck Levera7bc2112014-07-29 17:23:52 -0400206static void
207rpcrdma_flush_cqs(struct rpcrdma_ep *ep)
208{
Chuck Lever5c166be2014-11-08 20:14:45 -0500209 struct ib_wc wc;
Chuck Lever5c166be2014-11-08 20:14:45 -0500210
211 while (ib_poll_cq(ep->rep_attr.recv_cq, 1, &wc) > 0)
Chuck Lever552bf222016-03-04 11:28:36 -0500212 rpcrdma_receive_wc(NULL, &wc);
Chuck Levera7bc2112014-07-29 17:23:52 -0400213}
214
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400215static int
216rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
217{
218 struct rpcrdma_xprt *xprt = id->context;
219 struct rpcrdma_ia *ia = &xprt->rx_ia;
220 struct rpcrdma_ep *ep = &xprt->rx_ep;
Jeff Laytonf895b252014-11-17 16:58:04 -0500221#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400222 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
Ingo Molnarff0db042008-11-25 16:58:42 -0800223#endif
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500224 struct ib_qp_attr *attr = &ia->ri_qp_attr;
225 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400226 int connstate = 0;
227
228 switch (event->event) {
229 case RDMA_CM_EVENT_ADDR_RESOLVED:
230 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400231 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400232 complete(&ia->ri_done);
233 break;
234 case RDMA_CM_EVENT_ADDR_ERROR:
235 ia->ri_async_rc = -EHOSTUNREACH;
236 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
237 __func__, ep);
238 complete(&ia->ri_done);
239 break;
240 case RDMA_CM_EVENT_ROUTE_ERROR:
241 ia->ri_async_rc = -ENETUNREACH;
242 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
243 __func__, ep);
244 complete(&ia->ri_done);
245 break;
246 case RDMA_CM_EVENT_ESTABLISHED:
247 connstate = 1;
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500248 ib_query_qp(ia->ri_id->qp, attr,
249 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
250 iattr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400251 dprintk("RPC: %s: %d responder resources"
252 " (%d initiator)\n",
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500253 __func__, attr->max_dest_rd_atomic,
254 attr->max_rd_atomic);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400255 goto connected;
256 case RDMA_CM_EVENT_CONNECT_ERROR:
257 connstate = -ENOTCONN;
258 goto connected;
259 case RDMA_CM_EVENT_UNREACHABLE:
260 connstate = -ENETDOWN;
261 goto connected;
262 case RDMA_CM_EVENT_REJECTED:
263 connstate = -ECONNREFUSED;
264 goto connected;
265 case RDMA_CM_EVENT_DISCONNECTED:
266 connstate = -ECONNABORTED;
267 goto connected;
268 case RDMA_CM_EVENT_DEVICE_REMOVAL:
269 connstate = -ENODEV;
270connected:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400271 dprintk("RPC: %s: %sconnected\n",
272 __func__, connstate > 0 ? "" : "dis");
Chuck Lever23826c72016-03-04 11:28:27 -0500273 atomic_set(&xprt->rx_buf.rb_credits, 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400274 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500275 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400276 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400277 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400278 default:
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400279 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
280 __func__, sap, rpc_get_port(sap), ep,
Sagi Grimberg76357c72015-05-18 13:40:32 +0300281 rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400282 break;
283 }
284
Jeff Laytonf895b252014-11-17 16:58:04 -0500285#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400286 if (connstate == 1) {
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500287 int ird = attr->max_dest_rd_atomic;
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400288 int tird = ep->rep_remote_cma.responder_resources;
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400289
Chuck Levera0ce85f2015-03-30 14:34:21 -0400290 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400291 sap, rpc_get_port(sap),
Chuck Lever89e0d1122015-05-26 11:51:56 -0400292 ia->ri_device->name,
Chuck Levera0ce85f2015-03-30 14:34:21 -0400293 ia->ri_ops->ro_displayname,
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400294 xprt->rx_buf.rb_max_requests,
295 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
296 } else if (connstate < 0) {
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400297 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
298 sap, rpc_get_port(sap), connstate);
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400299 }
300#endif
301
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400302 return 0;
303}
304
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400305static void rpcrdma_destroy_id(struct rdma_cm_id *id)
306{
307 if (id) {
308 module_put(id->device->owner);
309 rdma_destroy_id(id);
310 }
311}
312
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400313static struct rdma_cm_id *
314rpcrdma_create_id(struct rpcrdma_xprt *xprt,
315 struct rpcrdma_ia *ia, struct sockaddr *addr)
316{
317 struct rdma_cm_id *id;
318 int rc;
319
Tom Talpey1a954052008-10-09 15:01:31 -0400320 init_completion(&ia->ri_done);
321
Guy Shapirofa201052015-10-22 15:20:10 +0300322 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
323 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400324 if (IS_ERR(id)) {
325 rc = PTR_ERR(id);
326 dprintk("RPC: %s: rdma_create_id() failed %i\n",
327 __func__, rc);
328 return id;
329 }
330
Tom Talpey5675add2008-10-09 15:01:41 -0400331 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400332 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
333 if (rc) {
334 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
335 __func__, rc);
336 goto out;
337 }
Tom Talpey5675add2008-10-09 15:01:41 -0400338 wait_for_completion_interruptible_timeout(&ia->ri_done,
339 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400340
341 /* FIXME:
342 * Until xprtrdma supports DEVICE_REMOVAL, the provider must
343 * be pinned while there are active NFS/RDMA mounts to prevent
344 * hangs and crashes at umount time.
345 */
346 if (!ia->ri_async_rc && !try_module_get(id->device->owner)) {
347 dprintk("RPC: %s: Failed to get device module\n",
348 __func__);
349 ia->ri_async_rc = -ENODEV;
350 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400351 rc = ia->ri_async_rc;
352 if (rc)
353 goto out;
354
Tom Talpey5675add2008-10-09 15:01:41 -0400355 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400356 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
357 if (rc) {
358 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
359 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400360 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400361 }
Tom Talpey5675add2008-10-09 15:01:41 -0400362 wait_for_completion_interruptible_timeout(&ia->ri_done,
363 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400364 rc = ia->ri_async_rc;
365 if (rc)
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400366 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400367
368 return id;
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400369put:
370 module_put(id->device->owner);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400371out:
372 rdma_destroy_id(id);
373 return ERR_PTR(rc);
374}
375
376/*
377 * Drain any cq, prior to teardown.
378 */
379static void
380rpcrdma_clean_cq(struct ib_cq *cq)
381{
382 struct ib_wc wc;
383 int count = 0;
384
385 while (1 == ib_poll_cq(cq, 1, &wc))
386 ++count;
387
388 if (count)
389 dprintk("RPC: %s: flushed %d events (last 0x%x)\n",
390 __func__, count, wc.opcode);
391}
392
393/*
394 * Exported functions.
395 */
396
397/*
398 * Open and initialize an Interface Adapter.
399 * o initializes fields of struct rpcrdma_ia, including
400 * interface and provider attributes and protection zone.
401 */
402int
403rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
404{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400405 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400406 int rc;
407
408 ia->ri_dma_mr = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400409
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400410 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
411 if (IS_ERR(ia->ri_id)) {
412 rc = PTR_ERR(ia->ri_id);
413 goto out1;
414 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400415 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400416
Chuck Lever89e0d1122015-05-26 11:51:56 -0400417 ia->ri_pd = ib_alloc_pd(ia->ri_device);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400418 if (IS_ERR(ia->ri_pd)) {
419 rc = PTR_ERR(ia->ri_pd);
420 dprintk("RPC: %s: ib_alloc_pd() failed %i\n",
421 __func__, rc);
422 goto out2;
423 }
424
Chuck Leverf10eafd2014-05-28 10:32:51 -0400425 if (memreg == RPCRDMA_FRMR) {
Or Gerlitze3e45b12015-12-18 10:59:48 +0200426 if (!(ia->ri_device->attrs.device_cap_flags &
427 IB_DEVICE_MEM_MGT_EXTENSIONS) ||
428 (ia->ri_device->attrs.max_fast_reg_page_list_len == 0)) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400429 dprintk("RPC: %s: FRMR registration "
Chuck Leverf10eafd2014-05-28 10:32:51 -0400430 "not supported by HCA\n", __func__);
431 memreg = RPCRDMA_MTHCAFMR;
Tom Talpey3197d3092008-10-09 15:00:20 -0400432 }
Chuck Leverf10eafd2014-05-28 10:32:51 -0400433 }
434 if (memreg == RPCRDMA_MTHCAFMR) {
Chuck Lever89e0d1122015-05-26 11:51:56 -0400435 if (!ia->ri_device->alloc_fmr) {
Chuck Leverf10eafd2014-05-28 10:32:51 -0400436 dprintk("RPC: %s: MTHCAFMR registration "
437 "not supported by HCA\n", __func__);
Sagi Grimbergf022fa82015-10-06 19:52:37 +0300438 rc = -EINVAL;
Chuck Leverd2310932015-08-03 13:03:09 -0400439 goto out3;
Chuck Leverf10eafd2014-05-28 10:32:51 -0400440 }
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400441 }
442
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400443 switch (memreg) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400444 case RPCRDMA_FRMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400445 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400446 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400447 case RPCRDMA_ALLPHYSICAL:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400448 ia->ri_ops = &rpcrdma_physical_memreg_ops;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400449 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400450 case RPCRDMA_MTHCAFMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400451 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400452 break;
453 default:
Chuck Levercdd9ade2014-05-28 10:33:00 -0400454 printk(KERN_ERR "RPC: Unsupported memory "
455 "registration mode: %d\n", memreg);
456 rc = -ENOMEM;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500457 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400458 }
Chuck Levera0ce85f2015-03-30 14:34:21 -0400459 dprintk("RPC: %s: memory registration strategy is '%s'\n",
460 __func__, ia->ri_ops->ro_displayname);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400461
Chuck Lever73806c82014-07-29 17:23:25 -0400462 rwlock_init(&ia->ri_qplock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400463 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500464
465out3:
466 ib_dealloc_pd(ia->ri_pd);
467 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400468out2:
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400469 rpcrdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400470 ia->ri_id = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400471out1:
472 return rc;
473}
474
475/*
476 * Clean up/close an IA.
477 * o if event handles and PD have been initialized, free them.
478 * o close the IA
479 */
480void
481rpcrdma_ia_close(struct rpcrdma_ia *ia)
482{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400483 dprintk("RPC: %s: entering\n", __func__);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400484 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
485 if (ia->ri_id->qp)
486 rdma_destroy_qp(ia->ri_id);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400487 rpcrdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400488 ia->ri_id = NULL;
489 }
Chuck Lever6d446982015-05-26 11:51:27 -0400490
491 /* If the pd is still busy, xprtrdma missed freeing a resource */
492 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600493 ib_dealloc_pd(ia->ri_pd);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400494}
495
496/*
497 * Create unconnected endpoint.
498 */
499int
500rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
501 struct rpcrdma_create_data_internal *cdata)
502{
Chuck Leverfc664482014-05-28 10:33:25 -0400503 struct ib_cq *sendcq, *recvcq;
Chuck Lever124fa172015-10-24 17:27:51 -0400504 unsigned int max_qp_wr;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500505 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400506
Or Gerlitze3e45b12015-12-18 10:59:48 +0200507 if (ia->ri_device->attrs.max_sge < RPCRDMA_MAX_IOVS) {
Chuck Leverb3221d62015-08-03 13:03:39 -0400508 dprintk("RPC: %s: insufficient sge's available\n",
509 __func__);
510 return -ENOMEM;
511 }
512
Or Gerlitze3e45b12015-12-18 10:59:48 +0200513 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400514 dprintk("RPC: %s: insufficient wqe's available\n",
515 __func__);
516 return -ENOMEM;
517 }
Or Gerlitze3e45b12015-12-18 10:59:48 +0200518 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS;
Chuck Lever124fa172015-10-24 17:27:51 -0400519
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400520 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400521 if (cdata->max_requests > max_qp_wr)
522 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400523
524 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
525 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400526 ep->rep_attr.srq = NULL;
527 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400528 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever3968cb52015-03-30 14:35:26 -0400529 rc = ia->ri_ops->ro_open(ia, ep, cdata);
530 if (rc)
531 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400532 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400533 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Leverb3221d62015-08-03 13:03:39 -0400534 ep->rep_attr.cap.max_send_sge = RPCRDMA_MAX_IOVS;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400535 ep->rep_attr.cap.max_recv_sge = 1;
536 ep->rep_attr.cap.max_inline_data = 0;
537 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
538 ep->rep_attr.qp_type = IB_QPT_RC;
539 ep->rep_attr.port_num = ~0;
540
541 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
542 "iovs: send %d recv %d\n",
543 __func__,
544 ep->rep_attr.cap.max_send_wr,
545 ep->rep_attr.cap.max_recv_wr,
546 ep->rep_attr.cap.max_send_sge,
547 ep->rep_attr.cap.max_recv_sge);
548
549 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400550 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Lever26ae9d12015-12-16 17:23:20 -0500551 if (ep->rep_cqinit <= 2)
552 ep->rep_cqinit = 0; /* always signal? */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400553 INIT_CQCOUNT(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400554 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400555 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400556
Chuck Lever2fa8f882016-03-04 11:28:53 -0500557 sendcq = ib_alloc_cq(ia->ri_device, NULL,
558 ep->rep_attr.cap.max_send_wr + 1,
559 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400560 if (IS_ERR(sendcq)) {
561 rc = PTR_ERR(sendcq);
562 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400563 __func__, rc);
564 goto out1;
565 }
566
Chuck Lever552bf222016-03-04 11:28:36 -0500567 recvcq = ib_alloc_cq(ia->ri_device, NULL,
568 ep->rep_attr.cap.max_recv_wr + 1,
569 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400570 if (IS_ERR(recvcq)) {
571 rc = PTR_ERR(recvcq);
572 dprintk("RPC: %s: failed to create recv CQ: %i\n",
573 __func__, rc);
574 goto out2;
575 }
576
Chuck Leverfc664482014-05-28 10:33:25 -0400577 ep->rep_attr.send_cq = sendcq;
578 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400579
580 /* Initialize cma parameters */
581
582 /* RPC/RDMA does not use private data */
583 ep->rep_remote_cma.private_data = NULL;
584 ep->rep_remote_cma.private_data_len = 0;
585
586 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400587 ep->rep_remote_cma.initiator_depth = 0;
Or Gerlitze3e45b12015-12-18 10:59:48 +0200588 if (ia->ri_device->attrs.max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400589 ep->rep_remote_cma.responder_resources = 32;
590 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500591 ep->rep_remote_cma.responder_resources =
Or Gerlitze3e45b12015-12-18 10:59:48 +0200592 ia->ri_device->attrs.max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400593
594 ep->rep_remote_cma.retry_count = 7;
595 ep->rep_remote_cma.flow_control = 0;
596 ep->rep_remote_cma.rnr_retry_count = 0;
597
598 return 0;
599
600out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500601 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400602out1:
Chuck Leverd1ed8572015-08-03 13:03:30 -0400603 if (ia->ri_dma_mr)
604 ib_dereg_mr(ia->ri_dma_mr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400605 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.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400614 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400615void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400616rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
617{
618 int rc;
619
620 dprintk("RPC: %s: entering, connected is %d\n",
621 __func__, ep->rep_connected);
622
Chuck Lever254f91e2014-05-28 10:32:17 -0400623 cancel_delayed_work_sync(&ep->rep_connect_worker);
624
Steve Wise72c02172015-09-21 12:24:23 -0500625 if (ia->ri_id->qp)
Chuck Lever282191c2014-07-29 17:25:55 -0400626 rpcrdma_ep_disconnect(ep, ia);
Steve Wise72c02172015-09-21 12:24:23 -0500627
628 rpcrdma_clean_cq(ep->rep_attr.recv_cq);
629 rpcrdma_clean_cq(ep->rep_attr.send_cq);
630
631 if (ia->ri_id->qp) {
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400632 rdma_destroy_qp(ia->ri_id);
633 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400634 }
635
Chuck Lever552bf222016-03-04 11:28:36 -0500636 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500637 ib_free_cq(ep->rep_attr.send_cq);
Chuck Leverd1ed8572015-08-03 13:03:30 -0400638
639 if (ia->ri_dma_mr) {
640 rc = ib_dereg_mr(ia->ri_dma_mr);
641 dprintk("RPC: %s: ib_dereg_mr returned %i\n",
642 __func__, rc);
643 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400644}
645
646/*
647 * Connect unconnected endpoint.
648 */
649int
650rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
651{
Chuck Lever73806c82014-07-29 17:23:25 -0400652 struct rdma_cm_id *id, *old;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400653 int rc = 0;
654 int retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400655
Tom Talpeyc0555512008-10-10 11:32:45 -0400656 if (ep->rep_connected != 0) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400657 struct rpcrdma_xprt *xprt;
658retry:
Chuck Leverec62f402014-05-28 10:34:07 -0400659 dprintk("RPC: %s: reconnecting...\n", __func__);
Chuck Lever282191c2014-07-29 17:25:55 -0400660
661 rpcrdma_ep_disconnect(ep, ia);
Chuck Levera7bc2112014-07-29 17:23:52 -0400662 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400663
664 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
665 id = rpcrdma_create_id(xprt, ia,
666 (struct sockaddr *)&xprt->rx_data.addr);
667 if (IS_ERR(id)) {
Chuck Leverec62f402014-05-28 10:34:07 -0400668 rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400669 goto out;
670 }
671 /* TEMP TEMP TEMP - fail if new device:
672 * Deregister/remarshal *all* requests!
673 * Close and recreate adapter, pd, etc!
674 * Re-determine all attributes still sane!
675 * More stuff I haven't thought of!
676 * Rrrgh!
677 */
Chuck Lever89e0d1122015-05-26 11:51:56 -0400678 if (ia->ri_device != id->device) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400679 printk("RPC: %s: can't reconnect on "
680 "different device!\n", __func__);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400681 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400682 rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400683 goto out;
684 }
685 /* END TEMP */
Chuck Leverec62f402014-05-28 10:34:07 -0400686 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
687 if (rc) {
688 dprintk("RPC: %s: rdma_create_qp failed %i\n",
689 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400690 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400691 rc = -ENETUNREACH;
692 goto out;
693 }
Chuck Lever73806c82014-07-29 17:23:25 -0400694
695 write_lock(&ia->ri_qplock);
696 old = ia->ri_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400697 ia->ri_id = id;
Chuck Lever73806c82014-07-29 17:23:25 -0400698 write_unlock(&ia->ri_qplock);
699
700 rdma_destroy_qp(old);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400701 rpcrdma_destroy_id(old);
Chuck Leverec62f402014-05-28 10:34:07 -0400702 } else {
703 dprintk("RPC: %s: connecting...\n", __func__);
704 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
705 if (rc) {
706 dprintk("RPC: %s: rdma_create_qp failed %i\n",
707 __func__, rc);
708 /* do not update ep->rep_connected */
709 return -ENETUNREACH;
710 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400711 }
712
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400713 ep->rep_connected = 0;
714
715 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
716 if (rc) {
717 dprintk("RPC: %s: rdma_connect() failed with %i\n",
718 __func__, rc);
719 goto out;
720 }
721
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400722 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
723
724 /*
725 * Check state. A non-peer reject indicates no listener
726 * (ECONNREFUSED), which may be a transient state. All
727 * others indicate a transport condition which has already
728 * undergone a best-effort.
729 */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800730 if (ep->rep_connected == -ECONNREFUSED &&
731 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
733 goto retry;
734 }
735 if (ep->rep_connected <= 0) {
736 /* Sometimes, the only way to reliably connect to remote
737 * CMs is to use same nonzero values for ORD and IRD. */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400738 if (retry_count++ <= RDMA_CONNECT_RETRY_MAX + 1 &&
739 (ep->rep_remote_cma.responder_resources == 0 ||
740 ep->rep_remote_cma.initiator_depth !=
741 ep->rep_remote_cma.responder_resources)) {
742 if (ep->rep_remote_cma.responder_resources == 0)
743 ep->rep_remote_cma.responder_resources = 1;
744 ep->rep_remote_cma.initiator_depth =
745 ep->rep_remote_cma.responder_resources;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400746 goto retry;
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400747 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400748 rc = ep->rep_connected;
749 } else {
Chuck Leverf531a5d2015-10-24 17:27:43 -0400750 struct rpcrdma_xprt *r_xprt;
751 unsigned int extras;
752
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400753 dprintk("RPC: %s: connected\n", __func__);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400754
755 r_xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
756 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
757
758 if (extras) {
759 rc = rpcrdma_ep_post_extra_recv(r_xprt, extras);
Dan Carpenter38b95bc2015-11-05 11:37:08 +0300760 if (rc) {
Chuck Leverf531a5d2015-10-24 17:27:43 -0400761 pr_warn("%s: rpcrdma_ep_post_extra_recv: %i\n",
762 __func__, rc);
763 rc = 0;
Dan Carpenter38b95bc2015-11-05 11:37:08 +0300764 }
Chuck Leverf531a5d2015-10-24 17:27:43 -0400765 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400766 }
767
768out:
769 if (rc)
770 ep->rep_connected = rc;
771 return rc;
772}
773
774/*
775 * rpcrdma_ep_disconnect
776 *
777 * This is separate from destroy to facilitate the ability
778 * to reconnect without recreating the endpoint.
779 *
780 * This call is not reentrant, and must not be made in parallel
781 * on the same endpoint.
782 */
Chuck Lever282191c2014-07-29 17:25:55 -0400783void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400784rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
785{
786 int rc;
787
Chuck Levera7bc2112014-07-29 17:23:52 -0400788 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400789 rc = rdma_disconnect(ia->ri_id);
790 if (!rc) {
791 /* returns without wait if not connected */
792 wait_event_interruptible(ep->rep_connect_wait,
793 ep->rep_connected != 1);
794 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
795 (ep->rep_connected == 1) ? "still " : "dis");
796 } else {
797 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
798 ep->rep_connected = rc;
799 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400800}
801
Chuck Leverf531a5d2015-10-24 17:27:43 -0400802struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -0500803rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
804{
Chuck Leverf531a5d2015-10-24 17:27:43 -0400805 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500806 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500807
Chuck Lever85275c82015-01-21 11:04:16 -0500808 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500809 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -0500810 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -0500811
Chuck Leverf531a5d2015-10-24 17:27:43 -0400812 INIT_LIST_HEAD(&req->rl_free);
813 spin_lock(&buffer->rb_reqslock);
814 list_add(&req->rl_all, &buffer->rb_allreqs);
815 spin_unlock(&buffer->rb_reqslock);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500816 req->rl_cqe.done = rpcrdma_wc_send;
Chuck Lever13924022015-01-21 11:03:52 -0500817 req->rl_buffer = &r_xprt->rx_buf;
818 return req;
Chuck Lever13924022015-01-21 11:03:52 -0500819}
820
Chuck Leverf531a5d2015-10-24 17:27:43 -0400821struct rpcrdma_rep *
Chuck Lever13924022015-01-21 11:03:52 -0500822rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
823{
824 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -0500825 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
826 struct rpcrdma_rep *rep;
827 int rc;
828
829 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500830 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500831 if (rep == NULL)
832 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500833
Chuck Lever6b1184c2015-01-21 11:04:25 -0500834 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(ia, cdata->inline_rsize,
835 GFP_KERNEL);
836 if (IS_ERR(rep->rr_rdmabuf)) {
837 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500838 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500839 }
Chuck Lever13924022015-01-21 11:03:52 -0500840
Chuck Lever89e0d1122015-05-26 11:51:56 -0400841 rep->rr_device = ia->ri_device;
Chuck Lever552bf222016-03-04 11:28:36 -0500842 rep->rr_cqe.done = rpcrdma_receive_wc;
Chuck Leverfed171b2015-05-26 11:51:37 -0400843 rep->rr_rxprt = r_xprt;
Chuck Leverfe97b472015-10-24 17:27:10 -0400844 INIT_WORK(&rep->rr_work, rpcrdma_receive_worker);
Chuck Lever13924022015-01-21 11:03:52 -0500845 return rep;
846
847out_free:
848 kfree(rep);
849out:
850 return ERR_PTR(rc);
851}
852
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400853int
Chuck Leverac920d02015-01-21 11:03:44 -0500854rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400855{
Chuck Leverac920d02015-01-21 11:03:44 -0500856 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
857 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400858 int i, rc;
859
Chuck Lever1e465fd2015-10-24 17:27:02 -0400860 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -0400861 buf->rb_bc_srv_max_requests = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400862 spin_lock_init(&buf->rb_lock);
Chuck Lever23826c72016-03-04 11:28:27 -0500863 atomic_set(&buf->rb_credits, 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400864
Chuck Lever91e70e72015-03-30 14:34:58 -0400865 rc = ia->ri_ops->ro_init(r_xprt);
866 if (rc)
867 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400868
Chuck Lever1e465fd2015-10-24 17:27:02 -0400869 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400870 INIT_LIST_HEAD(&buf->rb_allreqs);
871 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400872 for (i = 0; i < buf->rb_max_requests; i++) {
873 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400874
Chuck Lever13924022015-01-21 11:03:52 -0500875 req = rpcrdma_create_req(r_xprt);
876 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400877 dprintk("RPC: %s: request buffer %d alloc"
878 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -0500879 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400880 goto out;
881 }
Chuck Leverf531a5d2015-10-24 17:27:43 -0400882 req->rl_backchannel = false;
Chuck Lever1e465fd2015-10-24 17:27:02 -0400883 list_add(&req->rl_free, &buf->rb_send_bufs);
884 }
885
886 INIT_LIST_HEAD(&buf->rb_recv_bufs);
887 for (i = 0; i < buf->rb_max_requests + 2; i++) {
888 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400889
Chuck Lever13924022015-01-21 11:03:52 -0500890 rep = rpcrdma_create_rep(r_xprt);
891 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400892 dprintk("RPC: %s: reply buffer %d alloc failed\n",
893 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -0500894 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400895 goto out;
896 }
Chuck Lever1e465fd2015-10-24 17:27:02 -0400897 list_add(&rep->rr_list, &buf->rb_recv_bufs);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400898 }
Chuck Lever13924022015-01-21 11:03:52 -0500899
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400900 return 0;
901out:
902 rpcrdma_buffer_destroy(buf);
903 return rc;
904}
905
Chuck Lever1e465fd2015-10-24 17:27:02 -0400906static struct rpcrdma_req *
907rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
908{
909 struct rpcrdma_req *req;
910
911 req = list_first_entry(&buf->rb_send_bufs,
912 struct rpcrdma_req, rl_free);
913 list_del(&req->rl_free);
914 return req;
915}
916
917static struct rpcrdma_rep *
918rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
919{
920 struct rpcrdma_rep *rep;
921
922 rep = list_first_entry(&buf->rb_recv_bufs,
923 struct rpcrdma_rep, rr_list);
924 list_del(&rep->rr_list);
925 return rep;
926}
927
Chuck Lever2e845222014-07-29 17:25:38 -0400928static void
Chuck Lever13924022015-01-21 11:03:52 -0500929rpcrdma_destroy_rep(struct rpcrdma_ia *ia, struct rpcrdma_rep *rep)
930{
Chuck Lever6b1184c2015-01-21 11:04:25 -0500931 rpcrdma_free_regbuf(ia, rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500932 kfree(rep);
933}
934
Chuck Leverf531a5d2015-10-24 17:27:43 -0400935void
Chuck Lever13924022015-01-21 11:03:52 -0500936rpcrdma_destroy_req(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
937{
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500938 rpcrdma_free_regbuf(ia, req->rl_sendbuf);
Chuck Lever85275c82015-01-21 11:04:16 -0500939 rpcrdma_free_regbuf(ia, req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500940 kfree(req);
941}
942
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400943void
944rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
945{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400946 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
947
Chuck Lever1e465fd2015-10-24 17:27:02 -0400948 while (!list_empty(&buf->rb_recv_bufs)) {
949 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400950
Chuck Lever1e465fd2015-10-24 17:27:02 -0400951 rep = rpcrdma_buffer_get_rep_locked(buf);
952 rpcrdma_destroy_rep(ia, rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400953 }
954
Chuck Leverf531a5d2015-10-24 17:27:43 -0400955 spin_lock(&buf->rb_reqslock);
956 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -0400957 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -0400958
Chuck Leverf531a5d2015-10-24 17:27:43 -0400959 req = list_first_entry(&buf->rb_allreqs,
960 struct rpcrdma_req, rl_all);
961 list_del(&req->rl_all);
962
963 spin_unlock(&buf->rb_reqslock);
Chuck Lever1e465fd2015-10-24 17:27:02 -0400964 rpcrdma_destroy_req(ia, req);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400965 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -0400966 }
Chuck Leverf531a5d2015-10-24 17:27:43 -0400967 spin_unlock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -0400968
969 ia->ri_ops->ro_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400970}
971
Chuck Lever346aa662015-05-26 11:52:06 -0400972struct rpcrdma_mw *
973rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -0400974{
Chuck Lever346aa662015-05-26 11:52:06 -0400975 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
976 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -0400977
Chuck Lever58d1dcf2015-05-26 11:53:13 -0400978 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -0400979 if (!list_empty(&buf->rb_mws)) {
980 mw = list_first_entry(&buf->rb_mws,
981 struct rpcrdma_mw, mw_list);
982 list_del_init(&mw->mw_list);
Chuck Leverc2922c02014-07-29 17:24:36 -0400983 }
Chuck Lever58d1dcf2015-05-26 11:53:13 -0400984 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -0400985
986 if (!mw)
987 pr_err("RPC: %s: no MWs available\n", __func__);
988 return mw;
Chuck Leverc2922c02014-07-29 17:24:36 -0400989}
990
Chuck Lever346aa662015-05-26 11:52:06 -0400991void
992rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -0400993{
Chuck Lever346aa662015-05-26 11:52:06 -0400994 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -0400995
Chuck Lever58d1dcf2015-05-26 11:53:13 -0400996 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -0400997 list_add_tail(&mw->mw_list, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -0400998 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -0400999}
1000
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001001/*
1002 * Get a set of request/reply buffers.
1003 *
Chuck Lever1e465fd2015-10-24 17:27:02 -04001004 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001005 */
1006struct rpcrdma_req *
1007rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1008{
1009 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001010
Chuck Levera5b027e2015-10-24 17:27:27 -04001011 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001012 if (list_empty(&buffers->rb_send_bufs))
1013 goto out_reqbuf;
1014 req = rpcrdma_buffer_get_req_locked(buffers);
1015 if (list_empty(&buffers->rb_recv_bufs))
1016 goto out_repbuf;
1017 req->rl_reply = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001018 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001019 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001020
Chuck Lever1e465fd2015-10-24 17:27:02 -04001021out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001022 spin_unlock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001023 pr_warn("RPC: %s: out of request buffers\n", __func__);
1024 return NULL;
1025out_repbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001026 spin_unlock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001027 pr_warn("RPC: %s: out of reply buffers\n", __func__);
1028 req->rl_reply = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001029 return req;
1030}
1031
1032/*
1033 * Put request/reply buffers back into pool.
1034 * Pre-decrement counter/array index.
1035 */
1036void
1037rpcrdma_buffer_put(struct rpcrdma_req *req)
1038{
1039 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001040 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001041
Chuck Lever1e465fd2015-10-24 17:27:02 -04001042 req->rl_niovs = 0;
1043 req->rl_reply = NULL;
1044
Chuck Levera5b027e2015-10-24 17:27:27 -04001045 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001046 list_add_tail(&req->rl_free, &buffers->rb_send_bufs);
1047 if (rep)
1048 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001049 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001050}
1051
1052/*
1053 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001054 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001055 */
1056void
1057rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1058{
1059 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001060
Chuck Levera5b027e2015-10-24 17:27:27 -04001061 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001062 if (!list_empty(&buffers->rb_recv_bufs))
1063 req->rl_reply = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001064 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001065}
1066
1067/*
1068 * Put reply buffers back into pool when not attached to
1069 * request. This happens in error conditions.
1070 */
1071void
1072rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1073{
Chuck Leverfed171b2015-05-26 11:51:37 -04001074 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001075
Chuck Levera5b027e2015-10-24 17:27:27 -04001076 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001077 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001078 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001079}
1080
1081/*
1082 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1083 */
1084
Chuck Leverd6547882015-03-30 14:35:44 -04001085void
1086rpcrdma_mapping_error(struct rpcrdma_mr_seg *seg)
1087{
1088 dprintk("RPC: map_one: offset %p iova %llx len %zu\n",
1089 seg->mr_offset,
1090 (unsigned long long)seg->mr_dma, seg->mr_dmalen);
1091}
1092
Chuck Lever9128c3e2015-01-21 11:04:00 -05001093/**
1094 * rpcrdma_alloc_regbuf - kmalloc and register memory for SEND/RECV buffers
1095 * @ia: controlling rpcrdma_ia
1096 * @size: size of buffer to be allocated, in bytes
1097 * @flags: GFP flags
1098 *
1099 * Returns pointer to private header of an area of internally
1100 * registered memory, or an ERR_PTR. The registered buffer follows
1101 * the end of the private header.
1102 *
1103 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1104 * receiving the payload of RDMA RECV operations. regbufs are not
1105 * used for RDMA READ/WRITE operations, thus are registered only for
1106 * LOCAL access.
1107 */
1108struct rpcrdma_regbuf *
1109rpcrdma_alloc_regbuf(struct rpcrdma_ia *ia, size_t size, gfp_t flags)
1110{
1111 struct rpcrdma_regbuf *rb;
Chuck Levere531dca2015-08-03 13:03:20 -04001112 struct ib_sge *iov;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001113
Chuck Lever9128c3e2015-01-21 11:04:00 -05001114 rb = kmalloc(sizeof(*rb) + size, flags);
1115 if (rb == NULL)
1116 goto out;
1117
Chuck Levere531dca2015-08-03 13:03:20 -04001118 iov = &rb->rg_iov;
1119 iov->addr = ib_dma_map_single(ia->ri_device,
1120 (void *)rb->rg_base, size,
1121 DMA_BIDIRECTIONAL);
1122 if (ib_dma_mapping_error(ia->ri_device, iov->addr))
Chuck Lever9128c3e2015-01-21 11:04:00 -05001123 goto out_free;
1124
Chuck Levere531dca2015-08-03 13:03:20 -04001125 iov->length = size;
Chuck Leverbb6c96d2015-09-24 10:34:21 +03001126 iov->lkey = ia->ri_pd->local_dma_lkey;
Chuck Levere531dca2015-08-03 13:03:20 -04001127 rb->rg_size = size;
1128 rb->rg_owner = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001129 return rb;
1130
1131out_free:
1132 kfree(rb);
1133out:
Chuck Levere531dca2015-08-03 13:03:20 -04001134 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001135}
1136
1137/**
1138 * rpcrdma_free_regbuf - deregister and free registered buffer
1139 * @ia: controlling rpcrdma_ia
1140 * @rb: regbuf to be deregistered and freed
1141 */
1142void
1143rpcrdma_free_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1144{
Chuck Levere531dca2015-08-03 13:03:20 -04001145 struct ib_sge *iov;
1146
1147 if (!rb)
1148 return;
1149
1150 iov = &rb->rg_iov;
1151 ib_dma_unmap_single(ia->ri_device,
1152 iov->addr, iov->length, DMA_BIDIRECTIONAL);
1153 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001154}
1155
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001156/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001157 * Prepost any receive buffer, then post send.
1158 *
1159 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1160 */
1161int
1162rpcrdma_ep_post(struct rpcrdma_ia *ia,
1163 struct rpcrdma_ep *ep,
1164 struct rpcrdma_req *req)
1165{
Chuck Leverb3221d62015-08-03 13:03:39 -04001166 struct ib_device *device = ia->ri_device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001167 struct ib_send_wr send_wr, *send_wr_fail;
1168 struct rpcrdma_rep *rep = req->rl_reply;
Chuck Leverb3221d62015-08-03 13:03:39 -04001169 struct ib_sge *iov = req->rl_send_iov;
1170 int i, rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001171
1172 if (rep) {
1173 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1174 if (rc)
1175 goto out;
1176 req->rl_reply = NULL;
1177 }
1178
1179 send_wr.next = NULL;
Chuck Lever2fa8f882016-03-04 11:28:53 -05001180 send_wr.wr_cqe = &req->rl_cqe;
Chuck Leverb3221d62015-08-03 13:03:39 -04001181 send_wr.sg_list = iov;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001182 send_wr.num_sge = req->rl_niovs;
1183 send_wr.opcode = IB_WR_SEND;
Chuck Leverb3221d62015-08-03 13:03:39 -04001184
1185 for (i = 0; i < send_wr.num_sge; i++)
1186 ib_dma_sync_single_for_device(device, iov[i].addr,
1187 iov[i].length, DMA_TO_DEVICE);
1188 dprintk("RPC: %s: posting %d s/g entries\n",
1189 __func__, send_wr.num_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001190
1191 if (DECR_CQCOUNT(ep) > 0)
1192 send_wr.send_flags = 0;
1193 else { /* Provider must take a send completion every now and then */
1194 INIT_CQCOUNT(ep);
1195 send_wr.send_flags = IB_SEND_SIGNALED;
1196 }
1197
1198 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail);
1199 if (rc)
1200 dprintk("RPC: %s: ib_post_send returned %i\n", __func__,
1201 rc);
1202out:
1203 return rc;
1204}
1205
1206/*
1207 * (Re)post a receive buffer.
1208 */
1209int
1210rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
1211 struct rpcrdma_ep *ep,
1212 struct rpcrdma_rep *rep)
1213{
1214 struct ib_recv_wr recv_wr, *recv_wr_fail;
1215 int rc;
1216
1217 recv_wr.next = NULL;
Chuck Lever552bf222016-03-04 11:28:36 -05001218 recv_wr.wr_cqe = &rep->rr_cqe;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001219 recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001220 recv_wr.num_sge = 1;
1221
Chuck Lever89e0d1122015-05-26 11:51:56 -04001222 ib_dma_sync_single_for_cpu(ia->ri_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -05001223 rdmab_addr(rep->rr_rdmabuf),
1224 rdmab_length(rep->rr_rdmabuf),
1225 DMA_BIDIRECTIONAL);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001226
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001227 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
1228
1229 if (rc)
1230 dprintk("RPC: %s: ib_post_recv returned %i\n", __func__,
1231 rc);
1232 return rc;
1233}
Chuck Lever43e95982014-07-29 17:23:34 -04001234
Chuck Leverf531a5d2015-10-24 17:27:43 -04001235/**
1236 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1237 * @r_xprt: transport associated with these backchannel resources
1238 * @min_reqs: minimum number of incoming requests expected
1239 *
1240 * Returns zero if all requested buffers were posted, or a negative errno.
1241 */
1242int
1243rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1244{
1245 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1246 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1247 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
1248 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001249 int rc;
1250
1251 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001252 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001253 if (list_empty(&buffers->rb_recv_bufs))
1254 goto out_reqbuf;
1255 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001256 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001257
1258 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1259 if (rc)
1260 goto out_rc;
1261 }
1262
1263 return 0;
1264
1265out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001266 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001267 pr_warn("%s: no extra receive buffers\n", __func__);
1268 return -ENOMEM;
1269
1270out_rc:
1271 rpcrdma_recv_buffer_put(rep);
1272 return rc;
1273}
1274
Chuck Lever1c9351e2015-03-30 14:34:30 -04001275/* How many chunk list items fit within our inline buffers?
Chuck Lever43e95982014-07-29 17:23:34 -04001276 */
Chuck Lever1c9351e2015-03-30 14:34:30 -04001277unsigned int
1278rpcrdma_max_segments(struct rpcrdma_xprt *r_xprt)
Chuck Lever43e95982014-07-29 17:23:34 -04001279{
1280 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever1c9351e2015-03-30 14:34:30 -04001281 int bytes, segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001282
Chuck Lever1c9351e2015-03-30 14:34:30 -04001283 bytes = min_t(unsigned int, cdata->inline_wsize, cdata->inline_rsize);
1284 bytes -= RPCRDMA_HDRLEN_MIN;
1285 if (bytes < sizeof(struct rpcrdma_segment) * 2) {
1286 pr_warn("RPC: %s: inline threshold too small\n",
1287 __func__);
1288 return 0;
Chuck Lever43e95982014-07-29 17:23:34 -04001289 }
Chuck Lever1c9351e2015-03-30 14:34:30 -04001290
1291 segments = 1 << (fls(bytes / sizeof(struct rpcrdma_segment)) - 1);
1292 dprintk("RPC: %s: max chunk list size = %d segments\n",
1293 __func__, segments);
1294 return segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001295}