blob: c345d365af886514d61c35c79291718a77f155e7 [file] [log] [blame]
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04001/*
Chuck Lever62b56a62017-10-30 16:22:14 -04002 * Copyright (c) 2014-2017 Oracle. All rights reserved.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04003 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the BSD-type
9 * license below:
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 *
18 * Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials provided
21 * with the distribution.
22 *
23 * Neither the name of the Network Appliance, Inc. nor the names of
24 * its contributors may be used to endorse or promote products
25 * derived from this software without specific prior written
26 * permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040039 */
40
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040041/*
42 * verbs.c
43 *
44 * Encapsulates the major functions managing:
45 * o adapters
46 * o endpoints
47 * o connections
48 * o buffer memory
49 */
50
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000051#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Chuck Lever0dd39ca2015-03-30 14:33:43 -040053#include <linux/sunrpc/addr.h>
Chuck Lever05c97462016-09-06 11:22:58 -040054#include <linux/sunrpc/svc_rdma.h>
Chuck Leverae729502017-10-20 10:48:12 -040055
56#include <asm-generic/barrier.h>
Chuck Lever65866f82014-05-28 10:33:59 -040057#include <asm/bitops.h>
Chuck Lever56a6bd12017-04-11 13:23:34 -040058
Chuck Lever0a904872017-02-08 17:00:35 -050059#include <rdma/ib_cm.h>
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040060
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040061#include "xprt_rdma.h"
62
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040063/*
64 * Globals/Macros
65 */
66
Jeff Laytonf895b252014-11-17 16:58:04 -050067#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040068# define RPCDBG_FACILITY RPCDBG_TRANS
69#endif
70
71/*
72 * internal functions
73 */
Chuck Lever96cedde2017-12-14 20:57:55 -050074static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
75static void rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf);
Chuck Leverbebd0312017-04-11 13:23:10 -040076static void rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040077
Chuck Leverd8f532d2017-10-16 15:01:30 -040078struct workqueue_struct *rpcrdma_receive_wq __read_mostly;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040079
Chuck Leverfe97b472015-10-24 17:27:10 -040080int
81rpcrdma_alloc_wq(void)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040082{
Chuck Leverfe97b472015-10-24 17:27:10 -040083 struct workqueue_struct *recv_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040084
Chuck Leverfe97b472015-10-24 17:27:10 -040085 recv_wq = alloc_workqueue("xprtrdma_receive",
Chuck Leverccede752017-12-04 14:04:04 -050086 WQ_MEM_RECLAIM | WQ_HIGHPRI,
Chuck Leverfe97b472015-10-24 17:27:10 -040087 0);
88 if (!recv_wq)
89 return -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040090
Chuck Leverfe97b472015-10-24 17:27:10 -040091 rpcrdma_receive_wq = recv_wq;
92 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040093}
94
Chuck Leverfe97b472015-10-24 17:27:10 -040095void
96rpcrdma_destroy_wq(void)
Chuck Leverf1a03b72014-11-08 20:14:37 -050097{
Chuck Leverfe97b472015-10-24 17:27:10 -040098 struct workqueue_struct *wq;
Chuck Leverf1a03b72014-11-08 20:14:37 -050099
Chuck Leverfe97b472015-10-24 17:27:10 -0400100 if (rpcrdma_receive_wq) {
101 wq = rpcrdma_receive_wq;
102 rpcrdma_receive_wq = NULL;
103 destroy_workqueue(wq);
104 }
Chuck Leverf1a03b72014-11-08 20:14:37 -0500105}
106
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400107static void
108rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
109{
110 struct rpcrdma_ep *ep = context;
Chuck Lever643cf322017-12-20 16:31:45 -0500111 struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
112 rx_ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400113
Chuck Lever643cf322017-12-20 16:31:45 -0500114 trace_xprtrdma_qp_error(r_xprt, event);
Chuck Lever2f6922c2016-11-29 10:53:21 -0500115 pr_err("rpcrdma: %s on device %s ep %p\n",
116 ib_event_msg(event->event), event->device->name, context);
117
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400118 if (ep->rep_connected == 1) {
119 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500120 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400121 wake_up_all(&ep->rep_connect_wait);
122 }
123}
124
Chuck Lever2fa8f882016-03-04 11:28:53 -0500125/**
126 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
127 * @cq: completion queue (ignored)
128 * @wc: completed WR
129 *
Chuck Lever4220a072015-10-24 17:26:45 -0400130 */
131static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500132rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400133{
Chuck Leverae729502017-10-20 10:48:12 -0400134 struct ib_cqe *cqe = wc->wr_cqe;
135 struct rpcrdma_sendctx *sc =
136 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
137
Chuck Lever2fa8f882016-03-04 11:28:53 -0500138 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leverab03eff2017-12-20 16:30:40 -0500139 trace_xprtrdma_wc_send(sc, wc);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500140 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
141 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
142 ib_wc_status_msg(wc->status),
143 wc->status, wc->vendor_err);
Chuck Leverae729502017-10-20 10:48:12 -0400144
145 rpcrdma_sendctx_put_locked(sc);
Chuck Leverfc664482014-05-28 10:33:25 -0400146}
147
Chuck Lever552bf222016-03-04 11:28:36 -0500148/**
Chuck Lever1519e962016-09-15 10:57:49 -0400149 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500150 * @cq: completion queue (ignored)
151 * @wc: completed WR
152 *
153 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400154static void
Chuck Lever1519e962016-09-15 10:57:49 -0400155rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400156{
Chuck Lever552bf222016-03-04 11:28:36 -0500157 struct ib_cqe *cqe = wc->wr_cqe;
158 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
159 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400160
Chuck Lever85024272015-01-21 11:02:04 -0500161 /* WARNING: Only wr_id and status are reliable at this point */
Chuck Leverb4a7f912017-12-20 16:30:48 -0500162 trace_xprtrdma_wc_receive(rep, wc);
Chuck Lever85024272015-01-21 11:02:04 -0500163 if (wc->status != IB_WC_SUCCESS)
164 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400165
Chuck Lever85024272015-01-21 11:02:04 -0500166 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever96f87782017-08-03 14:30:03 -0400167 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400168 rep->rr_wc_flags = wc->wc_flags;
169 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
170
Chuck Lever91a10c52017-04-11 13:23:02 -0400171 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500172 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400173 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500174
Chuck Leverfc664482014-05-28 10:33:25 -0400175out_schedule:
Chuck Leverd8f532d2017-10-16 15:01:30 -0400176 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500177 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400178
Chuck Lever85024272015-01-21 11:02:04 -0500179out_fail:
180 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500181 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
182 ib_wc_status_msg(wc->status),
183 wc->status, wc->vendor_err);
Chuck Levere2a67192017-08-03 14:30:44 -0400184 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, 0);
Chuck Lever85024272015-01-21 11:02:04 -0500185 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400186}
187
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400188static void
189rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
190 struct rdma_conn_param *param)
191{
192 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
193 const struct rpcrdma_connect_private *pmsg = param->private_data;
194 unsigned int rsize, wsize;
195
Chuck Leverc8b920b2016-09-15 10:57:16 -0400196 /* Default settings for RPC-over-RDMA Version One */
Chuck Leverb5f0afb2017-02-08 16:59:54 -0500197 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400198 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
199 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
200
201 if (pmsg &&
202 pmsg->cp_magic == rpcrdma_cmp_magic &&
203 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc95a3c62017-02-08 17:00:02 -0500204 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400205 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
206 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
207 }
208
209 if (rsize < cdata->inline_rsize)
210 cdata->inline_rsize = rsize;
211 if (wsize < cdata->inline_wsize)
212 cdata->inline_wsize = wsize;
Chuck Lever6d6bf722016-11-29 10:53:13 -0500213 dprintk("RPC: %s: max send %u, max recv %u\n",
214 __func__, cdata->inline_wsize, cdata->inline_rsize);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400215 rpcrdma_set_max_header_sizes(r_xprt);
216}
217
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400218static int
219rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
220{
221 struct rpcrdma_xprt *xprt = id->context;
222 struct rpcrdma_ia *ia = &xprt->rx_ia;
223 struct rpcrdma_ep *ep = &xprt->rx_ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400224 int connstate = 0;
225
Chuck Leverb4744e02017-12-20 16:31:29 -0500226 trace_xprtrdma_conn_upcall(xprt, event);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400227 switch (event->event) {
228 case RDMA_CM_EVENT_ADDR_RESOLVED:
229 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400230 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400231 complete(&ia->ri_done);
232 break;
233 case RDMA_CM_EVENT_ADDR_ERROR:
234 ia->ri_async_rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400235 complete(&ia->ri_done);
236 break;
237 case RDMA_CM_EVENT_ROUTE_ERROR:
238 ia->ri_async_rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400239 complete(&ia->ri_done);
240 break;
Chuck Leverbebd0312017-04-11 13:23:10 -0400241 case RDMA_CM_EVENT_DEVICE_REMOVAL:
242#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverd461f1f2017-12-14 20:56:50 -0500243 pr_info("rpcrdma: removing device %s for %s:%s\n",
Chuck Lever173b8f42017-06-08 11:53:00 -0400244 ia->ri_device->name,
Chuck Leverd461f1f2017-12-14 20:56:50 -0500245 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt));
Chuck Leverbebd0312017-04-11 13:23:10 -0400246#endif
247 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
248 ep->rep_connected = -ENODEV;
249 xprt_force_disconnect(&xprt->rx_xprt);
250 wait_for_completion(&ia->ri_remove_done);
251
252 ia->ri_id = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400253 ia->ri_device = NULL;
254 /* Return 1 to ensure the core destroys the id. */
255 return 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400256 case RDMA_CM_EVENT_ESTABLISHED:
Chuck Lever8a147932018-02-28 15:30:38 -0500257 ++xprt->rx_xprt.connect_cookie;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400258 connstate = 1;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400259 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400260 goto connected;
261 case RDMA_CM_EVENT_CONNECT_ERROR:
262 connstate = -ENOTCONN;
263 goto connected;
264 case RDMA_CM_EVENT_UNREACHABLE:
265 connstate = -ENETDOWN;
266 goto connected;
267 case RDMA_CM_EVENT_REJECTED:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500268 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
269 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever0a904872017-02-08 17:00:35 -0500270 rdma_reject_msg(id, event->status));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400271 connstate = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500272 if (event->status == IB_CM_REJ_STALE_CONN)
273 connstate = -EAGAIN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400274 goto connected;
275 case RDMA_CM_EVENT_DISCONNECTED:
Chuck Lever8a147932018-02-28 15:30:38 -0500276 ++xprt->rx_xprt.connect_cookie;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400277 connstate = -ECONNABORTED;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400278connected:
Chuck Leverbe798f92017-10-16 15:01:39 -0400279 xprt->rx_buf.rb_credits = 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400280 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500281 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400282 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400283 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400284 default:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500285 dprintk("RPC: %s: %s:%s on %s/%s (ep 0x%p): %s\n",
286 __func__,
287 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever173b8f42017-06-08 11:53:00 -0400288 ia->ri_device->name, ia->ri_ops->ro_displayname,
289 ep, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400290 break;
291 }
292
293 return 0;
294}
295
296static struct rdma_cm_id *
Chuck Leverdd229ce2017-12-14 20:56:58 -0500297rpcrdma_create_id(struct rpcrdma_xprt *xprt, struct rpcrdma_ia *ia)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400298{
Chuck Lever109b88a2016-11-29 10:52:40 -0500299 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400300 struct rdma_cm_id *id;
301 int rc;
302
Chuck Leverb4744e02017-12-20 16:31:29 -0500303 trace_xprtrdma_conn_start(xprt);
304
Tom Talpey1a954052008-10-09 15:01:31 -0400305 init_completion(&ia->ri_done);
Chuck Leverbebd0312017-04-11 13:23:10 -0400306 init_completion(&ia->ri_remove_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400307
Guy Shapirofa201052015-10-22 15:20:10 +0300308 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
309 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400310 if (IS_ERR(id)) {
311 rc = PTR_ERR(id);
312 dprintk("RPC: %s: rdma_create_id() failed %i\n",
313 __func__, rc);
314 return id;
315 }
316
Tom Talpey5675add2008-10-09 15:01:41 -0400317 ia->ri_async_rc = -ETIMEDOUT;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500318 rc = rdma_resolve_addr(id, NULL,
319 (struct sockaddr *)&xprt->rx_xprt.addr,
320 RDMA_RESOLVE_TIMEOUT);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400321 if (rc) {
322 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
323 __func__, rc);
324 goto out;
325 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500326 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
327 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500328 trace_xprtrdma_conn_tout(xprt);
Chuck Lever109b88a2016-11-29 10:52:40 -0500329 goto out;
330 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400331
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400332 rc = ia->ri_async_rc;
333 if (rc)
334 goto out;
335
Tom Talpey5675add2008-10-09 15:01:41 -0400336 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400337 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
338 if (rc) {
339 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
340 __func__, rc);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400341 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400342 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500343 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
344 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500345 trace_xprtrdma_conn_tout(xprt);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400346 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500347 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400348 rc = ia->ri_async_rc;
349 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400350 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400351
352 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400353
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400354out:
355 rdma_destroy_id(id);
356 return ERR_PTR(rc);
357}
358
359/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400360 * Exported functions.
361 */
362
Chuck Leverfff09592017-04-11 13:22:54 -0400363/**
364 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
Chuck Leverdd229ce2017-12-14 20:56:58 -0500365 * @xprt: transport with IA to (re)initialize
Chuck Leverfff09592017-04-11 13:22:54 -0400366 *
367 * Returns 0 on success, negative errno if an appropriate
368 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400369 */
370int
Chuck Leverdd229ce2017-12-14 20:56:58 -0500371rpcrdma_ia_open(struct rpcrdma_xprt *xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400372{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400373 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400374 int rc;
375
Chuck Leverdd229ce2017-12-14 20:56:58 -0500376 ia->ri_id = rpcrdma_create_id(xprt, ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400377 if (IS_ERR(ia->ri_id)) {
378 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400379 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400380 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400381 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400382
Christoph Hellwiged082d32016-09-05 12:56:17 +0200383 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400384 if (IS_ERR(ia->ri_pd)) {
385 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400386 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400387 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400388 }
389
Chuck Leverfff09592017-04-11 13:22:54 -0400390 switch (xprt_rdma_memreg_strategy) {
Chuck Leverce5b3712017-12-14 20:57:47 -0500391 case RPCRDMA_FRWR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400392 if (frwr_is_supported(ia)) {
393 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
394 break;
395 }
396 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400397 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400398 if (fmr_is_supported(ia)) {
399 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
400 break;
401 }
402 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400403 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400404 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
405 ia->ri_device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400406 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400407 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400408 }
409
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400410 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500411
Chuck Leverfff09592017-04-11 13:22:54 -0400412out_err:
413 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400414 return rc;
415}
416
Chuck Leverfff09592017-04-11 13:22:54 -0400417/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400418 * rpcrdma_ia_remove - Handle device driver unload
419 * @ia: interface adapter being removed
420 *
421 * Divest transport H/W resources associated with this adapter,
422 * but allow it to be restored later.
423 */
424void
425rpcrdma_ia_remove(struct rpcrdma_ia *ia)
426{
427 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
428 rx_ia);
429 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
430 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
431 struct rpcrdma_req *req;
432 struct rpcrdma_rep *rep;
433
434 cancel_delayed_work_sync(&buf->rb_refresh_worker);
435
436 /* This is similar to rpcrdma_ep_destroy, but:
437 * - Don't cancel the connect worker.
438 * - Don't call rpcrdma_ep_disconnect, which waits
439 * for another conn upcall, which will deadlock.
440 * - rdma_disconnect is unneeded, the underlying
441 * connection is already gone.
442 */
443 if (ia->ri_id->qp) {
444 ib_drain_qp(ia->ri_id->qp);
445 rdma_destroy_qp(ia->ri_id);
446 ia->ri_id->qp = NULL;
447 }
448 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400449 ep->rep_attr.recv_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400450 ib_free_cq(ep->rep_attr.send_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400451 ep->rep_attr.send_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400452
453 /* The ULP is responsible for ensuring all DMA
454 * mappings and MRs are gone.
455 */
456 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
457 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
458 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
459 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
460 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
461 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
462 }
Chuck Lever96cedde2017-12-14 20:57:55 -0500463 rpcrdma_mrs_destroy(buf);
Chuck Lever25524282018-03-19 14:23:16 -0400464 ib_dealloc_pd(ia->ri_pd);
465 ia->ri_pd = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400466
467 /* Allow waiters to continue */
468 complete(&ia->ri_remove_done);
Chuck Leverb4744e02017-12-20 16:31:29 -0500469
470 trace_xprtrdma_remove(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400471}
472
473/**
Chuck Leverfff09592017-04-11 13:22:54 -0400474 * rpcrdma_ia_close - Clean up/close an IA.
475 * @ia: interface adapter to close
476 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400477 */
478void
479rpcrdma_ia_close(struct rpcrdma_ia *ia)
480{
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400481 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
482 if (ia->ri_id->qp)
483 rdma_destroy_qp(ia->ri_id);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400484 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400485 }
Chuck Leverfff09592017-04-11 13:22:54 -0400486 ia->ri_id = NULL;
487 ia->ri_device = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400488
489 /* If the pd is still busy, xprtrdma missed freeing a resource */
490 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600491 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400492 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400493}
494
495/*
496 * Create unconnected endpoint.
497 */
498int
499rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
Chuck Lever16f906d2017-02-08 17:00:10 -0500500 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400501{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400502 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Lever16f906d2017-02-08 17:00:10 -0500503 unsigned int max_qp_wr, max_sge;
Chuck Leverfc664482014-05-28 10:33:25 -0400504 struct ib_cq *sendcq, *recvcq;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500505 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400506
Chuck Levereed50872017-03-11 15:52:47 -0500507 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
508 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500509 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
510 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400511 return -ENOMEM;
512 }
Chuck Lever1179e2c2018-01-31 12:34:05 -0500513 ia->ri_max_send_sges = max_sge;
Chuck Leverb3221d62015-08-03 13:03:39 -0400514
Or Gerlitze3e45b12015-12-18 10:59:48 +0200515 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400516 dprintk("RPC: %s: insufficient wqe's available\n",
517 __func__);
518 return -ENOMEM;
519 }
Chuck Lever550d7502016-05-02 14:41:47 -0400520 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
Chuck Lever124fa172015-10-24 17:27:51 -0400521
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400522 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400523 if (cdata->max_requests > max_qp_wr)
524 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400525
526 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
527 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400528 ep->rep_attr.srq = NULL;
529 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400530 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400531 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
Chuck Lever3968cb52015-03-30 14:35:26 -0400532 rc = ia->ri_ops->ro_open(ia, ep, cdata);
533 if (rc)
534 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400535 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400536 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400537 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
Chuck Lever16f906d2017-02-08 17:00:10 -0500538 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400539 ep->rep_attr.cap.max_recv_sge = 1;
540 ep->rep_attr.cap.max_inline_data = 0;
541 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
542 ep->rep_attr.qp_type = IB_QPT_RC;
543 ep->rep_attr.port_num = ~0;
544
545 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
546 "iovs: send %d recv %d\n",
547 __func__,
548 ep->rep_attr.cap.max_send_wr,
549 ep->rep_attr.cap.max_recv_wr,
550 ep->rep_attr.cap.max_send_sge,
551 ep->rep_attr.cap.max_recv_sge);
552
553 /* set trigger for requesting send completion */
Chuck Leverae729502017-10-20 10:48:12 -0400554 ep->rep_send_batch = min_t(unsigned int, RPCRDMA_MAX_SEND_BATCH,
555 cdata->max_requests >> 2);
556 ep->rep_send_count = ep->rep_send_batch;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400557 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400558 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400559
Chuck Lever2fa8f882016-03-04 11:28:53 -0500560 sendcq = ib_alloc_cq(ia->ri_device, NULL,
561 ep->rep_attr.cap.max_send_wr + 1,
Chuck Levera4699f52017-10-30 16:21:49 -0400562 1, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400563 if (IS_ERR(sendcq)) {
564 rc = PTR_ERR(sendcq);
565 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400566 __func__, rc);
567 goto out1;
568 }
569
Chuck Lever552bf222016-03-04 11:28:36 -0500570 recvcq = ib_alloc_cq(ia->ri_device, NULL,
571 ep->rep_attr.cap.max_recv_wr + 1,
Chuck Leverd8f532d2017-10-16 15:01:30 -0400572 0, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400573 if (IS_ERR(recvcq)) {
574 rc = PTR_ERR(recvcq);
575 dprintk("RPC: %s: failed to create recv CQ: %i\n",
576 __func__, rc);
577 goto out2;
578 }
579
Chuck Leverfc664482014-05-28 10:33:25 -0400580 ep->rep_attr.send_cq = sendcq;
581 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400582
583 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400584 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400585
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400586 /* Prepare RDMA-CM private message */
587 pmsg->cp_magic = rpcrdma_cmp_magic;
588 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400589 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400590 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
591 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
592 ep->rep_remote_cma.private_data = pmsg;
593 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400594
595 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400596 ep->rep_remote_cma.initiator_depth = 0;
Chuck Leverb7e85fff2018-02-28 15:30:33 -0500597 ep->rep_remote_cma.responder_resources =
598 min_t(int, U8_MAX, ia->ri_device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400599
Chuck Leverb2dde942016-05-02 14:43:03 -0400600 /* Limit transport retries so client can detect server
601 * GID changes quickly. RPC layer handles re-establishing
602 * transport connection and retransmission.
603 */
604 ep->rep_remote_cma.retry_count = 6;
605
606 /* RPC-over-RDMA handles its own flow control. In addition,
607 * make all RNR NAKs visible so we know that RPC-over-RDMA
608 * flow control is working correctly (no NAKs should be seen).
609 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400610 ep->rep_remote_cma.flow_control = 0;
611 ep->rep_remote_cma.rnr_retry_count = 0;
612
613 return 0;
614
615out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500616 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400617out1:
618 return rc;
619}
620
621/*
622 * rpcrdma_ep_destroy
623 *
624 * Disconnect and destroy endpoint. After this, the only
625 * valid operations on the ep are to free it (if dynamically
626 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400627 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400628void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400629rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
630{
Chuck Lever254f91e2014-05-28 10:32:17 -0400631 cancel_delayed_work_sync(&ep->rep_connect_worker);
632
Chuck Lever25524282018-03-19 14:23:16 -0400633 if (ia->ri_id && ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400634 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400635 rdma_destroy_qp(ia->ri_id);
636 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400637 }
638
Chuck Lever25524282018-03-19 14:23:16 -0400639 if (ep->rep_attr.recv_cq)
640 ib_free_cq(ep->rep_attr.recv_cq);
641 if (ep->rep_attr.send_cq)
642 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400643}
644
Chuck Levera9b0e382017-04-11 13:23:26 -0400645/* Re-establish a connection after a device removal event.
646 * Unlike a normal reconnection, a fresh PD and a new set
647 * of MRs and buffers is needed.
648 */
649static int
650rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
651 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
652{
Chuck Levera9b0e382017-04-11 13:23:26 -0400653 int rc, err;
654
Chuck Leverb4744e02017-12-20 16:31:29 -0500655 trace_xprtrdma_reinsert(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400656
657 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500658 if (rpcrdma_ia_open(r_xprt))
Chuck Levera9b0e382017-04-11 13:23:26 -0400659 goto out1;
660
661 rc = -ENOMEM;
662 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
663 if (err) {
664 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
665 goto out2;
666 }
667
668 rc = -ENETUNREACH;
669 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
670 if (err) {
671 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
672 goto out3;
673 }
674
Chuck Lever96cedde2017-12-14 20:57:55 -0500675 rpcrdma_mrs_create(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400676 return 0;
677
678out3:
679 rpcrdma_ep_destroy(ep, ia);
680out2:
681 rpcrdma_ia_close(ia);
682out1:
683 return rc;
684}
685
Chuck Lever18908962017-04-11 13:23:18 -0400686static int
687rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
688 struct rpcrdma_ia *ia)
689{
Chuck Lever18908962017-04-11 13:23:18 -0400690 struct rdma_cm_id *id, *old;
691 int err, rc;
692
Chuck Leverb4744e02017-12-20 16:31:29 -0500693 trace_xprtrdma_reconnect(r_xprt);
Chuck Lever18908962017-04-11 13:23:18 -0400694
695 rpcrdma_ep_disconnect(ep, ia);
696
697 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500698 id = rpcrdma_create_id(r_xprt, ia);
Chuck Lever18908962017-04-11 13:23:18 -0400699 if (IS_ERR(id))
700 goto out;
701
702 /* As long as the new ID points to the same device as the
703 * old ID, we can reuse the transport's existing PD and all
704 * previously allocated MRs. Also, the same device means
705 * the transport's previous DMA mappings are still valid.
706 *
707 * This is a sanity check only. There should be no way these
708 * point to two different devices here.
709 */
710 old = id;
711 rc = -ENETUNREACH;
712 if (ia->ri_device != id->device) {
713 pr_err("rpcrdma: can't reconnect on different device!\n");
714 goto out_destroy;
715 }
716
717 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
718 if (err) {
719 dprintk("RPC: %s: rdma_create_qp returned %d\n",
720 __func__, err);
721 goto out_destroy;
722 }
723
724 /* Atomically replace the transport's ID and QP. */
725 rc = 0;
726 old = ia->ri_id;
727 ia->ri_id = id;
728 rdma_destroy_qp(old);
729
730out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400731 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400732out:
733 return rc;
734}
735
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400736/*
737 * Connect unconnected endpoint.
738 */
739int
740rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
741{
Chuck Lever0a904872017-02-08 17:00:35 -0500742 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
743 rx_ia);
Chuck Lever0a904872017-02-08 17:00:35 -0500744 unsigned int extras;
Chuck Lever18908962017-04-11 13:23:18 -0400745 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400746
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400747retry:
Chuck Lever18908962017-04-11 13:23:18 -0400748 switch (ep->rep_connected) {
749 case 0:
Chuck Leverec62f402014-05-28 10:34:07 -0400750 dprintk("RPC: %s: connecting...\n", __func__);
751 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
752 if (rc) {
753 dprintk("RPC: %s: rdma_create_qp failed %i\n",
754 __func__, rc);
Chuck Lever18908962017-04-11 13:23:18 -0400755 rc = -ENETUNREACH;
756 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400757 }
Chuck Lever18908962017-04-11 13:23:18 -0400758 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400759 case -ENODEV:
760 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
761 if (rc)
762 goto out_noupdate;
763 break;
Chuck Lever18908962017-04-11 13:23:18 -0400764 default:
765 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
766 if (rc)
767 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400768 }
769
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400770 ep->rep_connected = 0;
771
772 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
773 if (rc) {
774 dprintk("RPC: %s: rdma_connect() failed with %i\n",
775 __func__, rc);
776 goto out;
777 }
778
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400779 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400780 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500781 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400782 goto retry;
783 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500784 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400785 }
786
Chuck Lever0a904872017-02-08 17:00:35 -0500787 dprintk("RPC: %s: connected\n", __func__);
788 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
789 if (extras)
790 rpcrdma_ep_post_extra_recv(r_xprt, extras);
791
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400792out:
793 if (rc)
794 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400795
796out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400797 return rc;
798}
799
800/*
801 * rpcrdma_ep_disconnect
802 *
803 * This is separate from destroy to facilitate the ability
804 * to reconnect without recreating the endpoint.
805 *
806 * This call is not reentrant, and must not be made in parallel
807 * on the same endpoint.
808 */
Chuck Lever282191c2014-07-29 17:25:55 -0400809void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400810rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
811{
812 int rc;
813
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400814 rc = rdma_disconnect(ia->ri_id);
Chuck Leverb4744e02017-12-20 16:31:29 -0500815 if (!rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400816 /* returns without wait if not connected */
817 wait_event_interruptible(ep->rep_connect_wait,
818 ep->rep_connected != 1);
Chuck Leverb4744e02017-12-20 16:31:29 -0500819 else
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400820 ep->rep_connected = rc;
Chuck Leverb4744e02017-12-20 16:31:29 -0500821 trace_xprtrdma_disconnect(container_of(ep, struct rpcrdma_xprt,
822 rx_ep), rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400823
824 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400825}
826
Chuck Leverae729502017-10-20 10:48:12 -0400827/* Fixed-size circular FIFO queue. This implementation is wait-free and
828 * lock-free.
829 *
830 * Consumer is the code path that posts Sends. This path dequeues a
831 * sendctx for use by a Send operation. Multiple consumer threads
832 * are serialized by the RPC transport lock, which allows only one
833 * ->send_request call at a time.
834 *
835 * Producer is the code path that handles Send completions. This path
836 * enqueues a sendctx that has been completed. Multiple producer
837 * threads are serialized by the ib_poll_cq() function.
838 */
839
840/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
841 * queue activity, and ib_drain_qp has flushed all remaining Send
842 * requests.
843 */
844static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
845{
846 unsigned long i;
847
848 for (i = 0; i <= buf->rb_sc_last; i++)
849 kfree(buf->rb_sc_ctxs[i]);
850 kfree(buf->rb_sc_ctxs);
851}
852
853static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
854{
855 struct rpcrdma_sendctx *sc;
856
857 sc = kzalloc(sizeof(*sc) +
858 ia->ri_max_send_sges * sizeof(struct ib_sge),
859 GFP_KERNEL);
860 if (!sc)
861 return NULL;
862
863 sc->sc_wr.wr_cqe = &sc->sc_cqe;
864 sc->sc_wr.sg_list = sc->sc_sges;
865 sc->sc_wr.opcode = IB_WR_SEND;
866 sc->sc_cqe.done = rpcrdma_wc_send;
867 return sc;
868}
869
870static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
871{
872 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
873 struct rpcrdma_sendctx *sc;
874 unsigned long i;
875
876 /* Maximum number of concurrent outstanding Send WRs. Capping
877 * the circular queue size stops Send Queue overflow by causing
878 * the ->send_request call to fail temporarily before too many
879 * Sends are posted.
880 */
881 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
882 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
883 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
884 if (!buf->rb_sc_ctxs)
885 return -ENOMEM;
886
887 buf->rb_sc_last = i - 1;
888 for (i = 0; i <= buf->rb_sc_last; i++) {
889 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
890 if (!sc)
891 goto out_destroy;
892
893 sc->sc_xprt = r_xprt;
894 buf->rb_sc_ctxs[i] = sc;
895 }
896
897 return 0;
898
899out_destroy:
900 rpcrdma_sendctxs_destroy(buf);
901 return -ENOMEM;
902}
903
904/* The sendctx queue is not guaranteed to have a size that is a
905 * power of two, thus the helpers in circ_buf.h cannot be used.
906 * The other option is to use modulus (%), which can be expensive.
907 */
908static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
909 unsigned long item)
910{
911 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
912}
913
914/**
915 * rpcrdma_sendctx_get_locked - Acquire a send context
916 * @buf: transport buffers from which to acquire an unused context
917 *
918 * Returns pointer to a free send completion context; or NULL if
919 * the queue is empty.
920 *
921 * Usage: Called to acquire an SGE array before preparing a Send WR.
922 *
923 * The caller serializes calls to this function (per rpcrdma_buffer),
924 * and provides an effective memory barrier that flushes the new value
925 * of rb_sc_head.
926 */
927struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_buffer *buf)
928{
929 struct rpcrdma_xprt *r_xprt;
930 struct rpcrdma_sendctx *sc;
931 unsigned long next_head;
932
933 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
934
935 if (next_head == READ_ONCE(buf->rb_sc_tail))
936 goto out_emptyq;
937
938 /* ORDER: item must be accessed _before_ head is updated */
939 sc = buf->rb_sc_ctxs[next_head];
940
941 /* Releasing the lock in the caller acts as a memory
942 * barrier that flushes rb_sc_head.
943 */
944 buf->rb_sc_head = next_head;
945
946 return sc;
947
948out_emptyq:
949 /* The queue is "empty" if there have not been enough Send
950 * completions recently. This is a sign the Send Queue is
951 * backing up. Cause the caller to pause and try again.
952 */
953 dprintk("RPC: %s: empty sendctx queue\n", __func__);
954 r_xprt = container_of(buf, struct rpcrdma_xprt, rx_buf);
955 r_xprt->rx_stats.empty_sendctx_q++;
956 return NULL;
957}
958
959/**
960 * rpcrdma_sendctx_put_locked - Release a send context
961 * @sc: send context to release
962 *
963 * Usage: Called from Send completion to return a sendctxt
964 * to the queue.
965 *
966 * The caller serializes calls to this function (per rpcrdma_buffer).
967 */
968void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
969{
970 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
971 unsigned long next_tail;
972
973 /* Unmap SGEs of previously completed by unsignaled
974 * Sends by walking up the queue until @sc is found.
975 */
976 next_tail = buf->rb_sc_tail;
977 do {
978 next_tail = rpcrdma_sendctx_next(buf, next_tail);
979
980 /* ORDER: item must be accessed _before_ tail is updated */
981 rpcrdma_unmap_sendctx(buf->rb_sc_ctxs[next_tail]);
982
983 } while (buf->rb_sc_ctxs[next_tail] != sc);
984
985 /* Paired with READ_ONCE */
986 smp_store_release(&buf->rb_sc_tail, next_tail);
987}
988
Chuck Lever505bbe62016-06-29 13:52:54 -0400989static void
990rpcrdma_mr_recovery_worker(struct work_struct *work)
991{
992 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
993 rb_recovery_worker.work);
Chuck Lever96cedde2017-12-14 20:57:55 -0500994 struct rpcrdma_mr *mr;
Chuck Lever505bbe62016-06-29 13:52:54 -0400995
996 spin_lock(&buf->rb_recovery_lock);
997 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500998 mr = rpcrdma_mr_pop(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400999 spin_unlock(&buf->rb_recovery_lock);
1000
Chuck Lever1c443eff2017-12-20 16:31:21 -05001001 trace_xprtrdma_recover_mr(mr);
Chuck Lever96cedde2017-12-14 20:57:55 -05001002 mr->mr_xprt->rx_ia.ri_ops->ro_recover_mr(mr);
Chuck Lever505bbe62016-06-29 13:52:54 -04001003
1004 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +08001005 }
Chuck Lever505bbe62016-06-29 13:52:54 -04001006 spin_unlock(&buf->rb_recovery_lock);
1007}
1008
1009void
Chuck Lever96cedde2017-12-14 20:57:55 -05001010rpcrdma_mr_defer_recovery(struct rpcrdma_mr *mr)
Chuck Lever505bbe62016-06-29 13:52:54 -04001011{
Chuck Lever96cedde2017-12-14 20:57:55 -05001012 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
Chuck Lever505bbe62016-06-29 13:52:54 -04001013 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1014
1015 spin_lock(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001016 rpcrdma_mr_push(mr, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001017 spin_unlock(&buf->rb_recovery_lock);
1018
1019 schedule_delayed_work(&buf->rb_recovery_worker, 0);
1020}
1021
Chuck Levere2ac2362016-06-29 13:54:00 -04001022static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001023rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001024{
1025 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1026 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1027 unsigned int count;
1028 LIST_HEAD(free);
1029 LIST_HEAD(all);
1030
Chuck Leverae741a82018-02-28 15:30:49 -05001031 for (count = 0; count < 3; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001032 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001033 int rc;
1034
Chuck Lever96cedde2017-12-14 20:57:55 -05001035 mr = kzalloc(sizeof(*mr), GFP_KERNEL);
1036 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -04001037 break;
1038
Chuck Lever96cedde2017-12-14 20:57:55 -05001039 rc = ia->ri_ops->ro_init_mr(ia, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001040 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001041 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001042 break;
1043 }
1044
Chuck Lever96cedde2017-12-14 20:57:55 -05001045 mr->mr_xprt = r_xprt;
Chuck Levere2ac2362016-06-29 13:54:00 -04001046
Chuck Lever96cedde2017-12-14 20:57:55 -05001047 list_add(&mr->mr_list, &free);
1048 list_add(&mr->mr_all, &all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001049 }
1050
Chuck Lever96cedde2017-12-14 20:57:55 -05001051 spin_lock(&buf->rb_mrlock);
1052 list_splice(&free, &buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001053 list_splice(&all, &buf->rb_all);
1054 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever96cedde2017-12-14 20:57:55 -05001055 spin_unlock(&buf->rb_mrlock);
Chuck Lever1c443eff2017-12-20 16:31:21 -05001056 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Lever9e679d52018-02-28 15:30:44 -05001057
1058 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001059}
1060
1061static void
1062rpcrdma_mr_refresh_worker(struct work_struct *work)
1063{
1064 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
1065 rb_refresh_worker.work);
1066 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1067 rx_buf);
1068
Chuck Lever96cedde2017-12-14 20:57:55 -05001069 rpcrdma_mrs_create(r_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001070}
1071
Chuck Leverf531a5d2015-10-24 17:27:43 -04001072struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -05001073rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
1074{
Chuck Leverf531a5d2015-10-24 17:27:43 -04001075 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever2dd4a012018-02-28 15:31:05 -05001076 struct rpcrdma_regbuf *rb;
Chuck Lever13924022015-01-21 11:03:52 -05001077 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -05001078
Chuck Lever85275c82015-01-21 11:04:16 -05001079 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001080 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -05001081 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -05001082
Chuck Lever2dd4a012018-02-28 15:31:05 -05001083 rb = rpcrdma_alloc_regbuf(RPCRDMA_HDRBUF_SIZE,
1084 DMA_TO_DEVICE, GFP_KERNEL);
1085 if (IS_ERR(rb)) {
1086 kfree(req);
1087 return ERR_PTR(-ENOMEM);
1088 }
1089 req->rl_rdmabuf = rb;
1090 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
1091 req->rl_buffer = buffer;
1092 INIT_LIST_HEAD(&req->rl_registered);
1093
Chuck Leverf531a5d2015-10-24 17:27:43 -04001094 spin_lock(&buffer->rb_reqslock);
1095 list_add(&req->rl_all, &buffer->rb_allreqs);
1096 spin_unlock(&buffer->rb_reqslock);
Chuck Lever13924022015-01-21 11:03:52 -05001097 return req;
Chuck Lever13924022015-01-21 11:03:52 -05001098}
1099
Chuck Leverd698c4a2017-12-14 20:56:09 -05001100/**
1101 * rpcrdma_create_rep - Allocate an rpcrdma_rep object
1102 * @r_xprt: controlling transport
1103 *
1104 * Returns 0 on success or a negative errno on failure.
1105 */
1106int
Chuck Lever13924022015-01-21 11:03:52 -05001107rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
1108{
1109 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001110 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -05001111 struct rpcrdma_rep *rep;
1112 int rc;
1113
1114 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001115 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001116 if (rep == NULL)
1117 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001118
Chuck Lever13650c22016-09-15 10:56:26 -04001119 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001120 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -05001121 if (IS_ERR(rep->rr_rdmabuf)) {
1122 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001123 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001124 }
Chuck Lever96f87782017-08-03 14:30:03 -04001125 xdr_buf_init(&rep->rr_hdrbuf, rep->rr_rdmabuf->rg_base,
1126 rdmab_length(rep->rr_rdmabuf));
Chuck Lever13924022015-01-21 11:03:52 -05001127
Chuck Lever1519e962016-09-15 10:57:49 -04001128 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001129 rep->rr_rxprt = r_xprt;
Chuck Leverd8f532d2017-10-16 15:01:30 -04001130 INIT_WORK(&rep->rr_work, rpcrdma_deferred_completion);
Chuck Lever6ea8e712016-09-15 10:56:51 -04001131 rep->rr_recv_wr.next = NULL;
1132 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1133 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1134 rep->rr_recv_wr.num_sge = 1;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001135
1136 spin_lock(&buf->rb_lock);
1137 list_add(&rep->rr_list, &buf->rb_recv_bufs);
1138 spin_unlock(&buf->rb_lock);
1139 return 0;
Chuck Lever13924022015-01-21 11:03:52 -05001140
1141out_free:
1142 kfree(rep);
1143out:
Chuck Leverd698c4a2017-12-14 20:56:09 -05001144 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1145 __func__, rc);
1146 return rc;
Chuck Lever13924022015-01-21 11:03:52 -05001147}
1148
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001149int
Chuck Leverac920d02015-01-21 11:03:44 -05001150rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001151{
Chuck Leverac920d02015-01-21 11:03:44 -05001152 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001153 int i, rc;
1154
Chuck Lever1e465fd2015-10-24 17:27:02 -04001155 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001156 buf->rb_bc_srv_max_requests = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001157 spin_lock_init(&buf->rb_mrlock);
Chuck Lever505bbe62016-06-29 13:52:54 -04001158 spin_lock_init(&buf->rb_lock);
1159 spin_lock_init(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001160 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001161 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -04001162 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001163 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1164 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001165 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
1166 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001167
Chuck Lever96cedde2017-12-14 20:57:55 -05001168 rpcrdma_mrs_create(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001169
Chuck Lever1e465fd2015-10-24 17:27:02 -04001170 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001171 INIT_LIST_HEAD(&buf->rb_allreqs);
1172 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001173 for (i = 0; i < buf->rb_max_requests; i++) {
1174 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001175
Chuck Lever13924022015-01-21 11:03:52 -05001176 req = rpcrdma_create_req(r_xprt);
1177 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001178 dprintk("RPC: %s: request buffer %d alloc"
1179 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001180 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001181 goto out;
1182 }
Chuck Levera80d66c2017-06-08 11:52:12 -04001183 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001184 }
1185
1186 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Leverd698c4a2017-12-14 20:56:09 -05001187 for (i = 0; i <= buf->rb_max_requests; i++) {
1188 rc = rpcrdma_create_rep(r_xprt);
1189 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001190 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001191 }
Chuck Lever13924022015-01-21 11:03:52 -05001192
Chuck Leverae729502017-10-20 10:48:12 -04001193 rc = rpcrdma_sendctxs_create(r_xprt);
1194 if (rc)
1195 goto out;
1196
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001197 return 0;
1198out:
1199 rpcrdma_buffer_destroy(buf);
1200 return rc;
1201}
1202
Chuck Lever1e465fd2015-10-24 17:27:02 -04001203static struct rpcrdma_req *
1204rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
1205{
1206 struct rpcrdma_req *req;
1207
1208 req = list_first_entry(&buf->rb_send_bufs,
Chuck Levera80d66c2017-06-08 11:52:12 -04001209 struct rpcrdma_req, rl_list);
Chuck Lever431af642017-06-08 11:52:20 -04001210 list_del_init(&req->rl_list);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001211 return req;
1212}
1213
1214static struct rpcrdma_rep *
1215rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1216{
1217 struct rpcrdma_rep *rep;
1218
1219 rep = list_first_entry(&buf->rb_recv_bufs,
1220 struct rpcrdma_rep, rr_list);
1221 list_del(&rep->rr_list);
1222 return rep;
1223}
1224
Chuck Lever2e845222014-07-29 17:25:38 -04001225static void
Chuck Lever13650c22016-09-15 10:56:26 -04001226rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001227{
Chuck Lever13650c22016-09-15 10:56:26 -04001228 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001229 kfree(rep);
1230}
1231
Chuck Leverf531a5d2015-10-24 17:27:43 -04001232void
Chuck Lever13650c22016-09-15 10:56:26 -04001233rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001234{
Chuck Lever13650c22016-09-15 10:56:26 -04001235 rpcrdma_free_regbuf(req->rl_recvbuf);
1236 rpcrdma_free_regbuf(req->rl_sendbuf);
1237 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001238 kfree(req);
1239}
1240
Chuck Levere2ac2362016-06-29 13:54:00 -04001241static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001242rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf)
Chuck Levere2ac2362016-06-29 13:54:00 -04001243{
1244 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1245 rx_buf);
1246 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever96cedde2017-12-14 20:57:55 -05001247 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001248 unsigned int count;
1249
1250 count = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001251 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001252 while (!list_empty(&buf->rb_all)) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001253 mr = list_entry(buf->rb_all.next, struct rpcrdma_mr, mr_all);
1254 list_del(&mr->mr_all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001255
Chuck Lever96cedde2017-12-14 20:57:55 -05001256 spin_unlock(&buf->rb_mrlock);
Chuck Lever054f1552018-05-01 11:37:14 -04001257
1258 /* Ensure MW is not on any rl_registered list */
1259 if (!list_empty(&mr->mr_list))
1260 list_del(&mr->mr_list);
1261
Chuck Lever96cedde2017-12-14 20:57:55 -05001262 ia->ri_ops->ro_release_mr(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001263 count++;
Chuck Lever96cedde2017-12-14 20:57:55 -05001264 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001265 }
Chuck Lever96cedde2017-12-14 20:57:55 -05001266 spin_unlock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001267 r_xprt->rx_stats.mrs_allocated = 0;
1268
1269 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1270}
1271
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001272void
1273rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1274{
Chuck Lever505bbe62016-06-29 13:52:54 -04001275 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001276 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001277
Chuck Leverae729502017-10-20 10:48:12 -04001278 rpcrdma_sendctxs_destroy(buf);
1279
Chuck Lever1e465fd2015-10-24 17:27:02 -04001280 while (!list_empty(&buf->rb_recv_bufs)) {
1281 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001282
Chuck Lever1e465fd2015-10-24 17:27:02 -04001283 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001284 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001285 }
Chuck Lever05c97462016-09-06 11:22:58 -04001286 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001287
Chuck Leverf531a5d2015-10-24 17:27:43 -04001288 spin_lock(&buf->rb_reqslock);
1289 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001290 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001291
Chuck Leverf531a5d2015-10-24 17:27:43 -04001292 req = list_first_entry(&buf->rb_allreqs,
1293 struct rpcrdma_req, rl_all);
1294 list_del(&req->rl_all);
1295
1296 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001297 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001298 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001299 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001300 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001301 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001302
Chuck Lever96cedde2017-12-14 20:57:55 -05001303 rpcrdma_mrs_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001304}
1305
Chuck Lever96cedde2017-12-14 20:57:55 -05001306/**
1307 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1308 * @r_xprt: controlling transport
1309 *
1310 * Returns an initialized rpcrdma_mr or NULL if no free
1311 * rpcrdma_mr objects are available.
1312 */
1313struct rpcrdma_mr *
1314rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001315{
Chuck Lever346aa662015-05-26 11:52:06 -04001316 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001317 struct rpcrdma_mr *mr = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001318
Chuck Lever96cedde2017-12-14 20:57:55 -05001319 spin_lock(&buf->rb_mrlock);
1320 if (!list_empty(&buf->rb_mrs))
1321 mr = rpcrdma_mr_pop(&buf->rb_mrs);
1322 spin_unlock(&buf->rb_mrlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001323
Chuck Lever96cedde2017-12-14 20:57:55 -05001324 if (!mr)
1325 goto out_nomrs;
1326 return mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001327
Chuck Lever96cedde2017-12-14 20:57:55 -05001328out_nomrs:
Chuck Lever1c443eff2017-12-20 16:31:21 -05001329 trace_xprtrdma_nomrs(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -04001330 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1331 schedule_delayed_work(&buf->rb_refresh_worker, 0);
Chuck Levere2ac2362016-06-29 13:54:00 -04001332
1333 /* Allow the reply handler and refresh worker to run */
1334 cond_resched();
1335
1336 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001337}
1338
Chuck Leverec12e472017-12-14 20:58:04 -05001339static void
1340__rpcrdma_mr_put(struct rpcrdma_buffer *buf, struct rpcrdma_mr *mr)
1341{
1342 spin_lock(&buf->rb_mrlock);
1343 rpcrdma_mr_push(mr, &buf->rb_mrs);
1344 spin_unlock(&buf->rb_mrlock);
1345}
1346
Chuck Lever96cedde2017-12-14 20:57:55 -05001347/**
1348 * rpcrdma_mr_put - Release an rpcrdma_mr object
1349 * @mr: object to release
1350 *
1351 */
Chuck Lever346aa662015-05-26 11:52:06 -04001352void
Chuck Lever96cedde2017-12-14 20:57:55 -05001353rpcrdma_mr_put(struct rpcrdma_mr *mr)
Chuck Leverc2922c02014-07-29 17:24:36 -04001354{
Chuck Leverec12e472017-12-14 20:58:04 -05001355 __rpcrdma_mr_put(&mr->mr_xprt->rx_buf, mr);
1356}
Chuck Leverc2922c02014-07-29 17:24:36 -04001357
Chuck Leverec12e472017-12-14 20:58:04 -05001358/**
1359 * rpcrdma_mr_unmap_and_put - DMA unmap an MR and release it
1360 * @mr: object to release
1361 *
1362 */
1363void
1364rpcrdma_mr_unmap_and_put(struct rpcrdma_mr *mr)
1365{
1366 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1367
Chuck Lever2937fed2017-12-20 16:31:12 -05001368 trace_xprtrdma_dma_unmap(mr);
Chuck Leverec12e472017-12-14 20:58:04 -05001369 ib_dma_unmap_sg(r_xprt->rx_ia.ri_device,
1370 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1371 __rpcrdma_mr_put(&r_xprt->rx_buf, mr);
Chuck Leverc2922c02014-07-29 17:24:36 -04001372}
1373
Chuck Lever05c97462016-09-06 11:22:58 -04001374static struct rpcrdma_rep *
1375rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1376{
1377 /* If an RPC previously completed without a reply (say, a
1378 * credential problem or a soft timeout occurs) then hold off
1379 * on supplying more Receive buffers until the number of new
1380 * pending RPCs catches up to the number of posted Receives.
1381 */
1382 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1383 return NULL;
1384
1385 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1386 return NULL;
1387 buffers->rb_recv_count++;
1388 return rpcrdma_buffer_get_rep_locked(buffers);
1389}
1390
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001391/*
1392 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001393 *
1394 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001395 */
1396struct rpcrdma_req *
1397rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1398{
1399 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001400
Chuck Levera5b027e2015-10-24 17:27:27 -04001401 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001402 if (list_empty(&buffers->rb_send_bufs))
1403 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001404 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001405 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001406 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001407 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001408
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001409 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001410
Chuck Lever1e465fd2015-10-24 17:27:02 -04001411out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001412 spin_unlock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001413 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001414}
1415
1416/*
1417 * Put request/reply buffers back into pool.
1418 * Pre-decrement counter/array index.
1419 */
1420void
1421rpcrdma_buffer_put(struct rpcrdma_req *req)
1422{
1423 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001424 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001425
Chuck Lever1e465fd2015-10-24 17:27:02 -04001426 req->rl_reply = NULL;
1427
Chuck Levera5b027e2015-10-24 17:27:27 -04001428 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001429 buffers->rb_send_count--;
Chuck Levera80d66c2017-06-08 11:52:12 -04001430 list_add_tail(&req->rl_list, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001431 if (rep) {
1432 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001433 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001434 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001435 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001436}
1437
1438/*
1439 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001440 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001441 */
1442void
1443rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1444{
1445 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001446
Chuck Levera5b027e2015-10-24 17:27:27 -04001447 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001448 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001449 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001450}
1451
1452/*
1453 * Put reply buffers back into pool when not attached to
1454 * request. This happens in error conditions.
1455 */
1456void
1457rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1458{
Chuck Leverfed171b2015-05-26 11:51:37 -04001459 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001460
Chuck Levera5b027e2015-10-24 17:27:27 -04001461 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001462 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001463 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001464 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001465}
1466
Chuck Lever9128c3e2015-01-21 11:04:00 -05001467/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001468 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001469 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001470 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001471 * @flags: GFP flags
1472 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001473 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1474 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001475 *
1476 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001477 * receiving the payload of RDMA RECV operations. During Long Calls
1478 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001479 */
1480struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001481rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1482 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001483{
1484 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001485
Chuck Lever9128c3e2015-01-21 11:04:00 -05001486 rb = kmalloc(sizeof(*rb) + size, flags);
1487 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001488 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001489
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001490 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001491 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001492 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001493
1494 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001495}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001496
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001497/**
1498 * __rpcrdma_map_regbuf - DMA-map a regbuf
1499 * @ia: controlling rpcrdma_ia
1500 * @rb: regbuf to be mapped
1501 */
1502bool
1503__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1504{
Chuck Lever91a10c52017-04-11 13:23:02 -04001505 struct ib_device *device = ia->ri_device;
1506
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001507 if (rb->rg_direction == DMA_NONE)
1508 return false;
1509
Chuck Lever91a10c52017-04-11 13:23:02 -04001510 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001511 (void *)rb->rg_base,
1512 rdmab_length(rb),
1513 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001514 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001515 return false;
1516
Chuck Lever91a10c52017-04-11 13:23:02 -04001517 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001518 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1519 return true;
1520}
1521
1522static void
1523rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1524{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001525 if (!rb)
1526 return;
1527
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001528 if (!rpcrdma_regbuf_is_mapped(rb))
1529 return;
1530
1531 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1532 rdmab_length(rb), rb->rg_direction);
1533 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001534}
1535
1536/**
1537 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001538 * @rb: regbuf to be deregistered and freed
1539 */
1540void
Chuck Lever13650c22016-09-15 10:56:26 -04001541rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001542{
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001543 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001544 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001545}
1546
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001547/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001548 * Prepost any receive buffer, then post send.
1549 *
1550 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1551 */
1552int
1553rpcrdma_ep_post(struct rpcrdma_ia *ia,
1554 struct rpcrdma_ep *ep,
1555 struct rpcrdma_req *req)
1556{
Chuck Leverae729502017-10-20 10:48:12 -04001557 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
Chuck Lever655fec62016-09-15 10:57:24 -04001558 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001559
Chuck Lever90aab602016-09-15 10:56:43 -04001560 if (req->rl_reply) {
1561 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001562 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001563 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001564 req->rl_reply = NULL;
1565 }
1566
Chuck Lever01bb35c2017-10-20 10:48:36 -04001567 if (!ep->rep_send_count ||
1568 test_bit(RPCRDMA_REQ_F_TX_RESOURCES, &req->rl_flags)) {
Chuck Leverae729502017-10-20 10:48:12 -04001569 send_wr->send_flags |= IB_SEND_SIGNALED;
1570 ep->rep_send_count = ep->rep_send_batch;
1571 } else {
1572 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1573 --ep->rep_send_count;
1574 }
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001575
Chuck Leverf2877622018-02-28 15:30:59 -05001576 rc = ia->ri_ops->ro_send(ia, req);
Chuck Leverab03eff2017-12-20 16:30:40 -05001577 trace_xprtrdma_post_send(req, rc);
1578 if (rc)
1579 return -ENOTCONN;
1580 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001581}
1582
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001583int
1584rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001585 struct rpcrdma_rep *rep)
1586{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001587 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001588 int rc;
1589
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001590 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1591 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001592 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
Chuck Leverb4a7f912017-12-20 16:30:48 -05001593 trace_xprtrdma_post_recv(rep, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001594 if (rc)
Chuck Leverb4a7f912017-12-20 16:30:48 -05001595 return -ENOTCONN;
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001596 return 0;
1597
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001598out_map:
1599 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1600 return -EIO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001601}
Chuck Lever43e95982014-07-29 17:23:34 -04001602
Chuck Leverf531a5d2015-10-24 17:27:43 -04001603/**
1604 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1605 * @r_xprt: transport associated with these backchannel resources
Chuck Lever9ab6d892018-01-03 15:38:17 -05001606 * @count: minimum number of incoming requests expected
Chuck Leverf531a5d2015-10-24 17:27:43 -04001607 *
1608 * Returns zero if all requested buffers were posted, or a negative errno.
1609 */
1610int
1611rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1612{
1613 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1614 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001615 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001616 int rc;
1617
1618 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001619 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001620 if (list_empty(&buffers->rb_recv_bufs))
1621 goto out_reqbuf;
1622 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001623 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001624
Chuck Leverb1573802016-09-15 10:56:35 -04001625 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001626 if (rc)
1627 goto out_rc;
1628 }
1629
1630 return 0;
1631
1632out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001633 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001634 trace_xprtrdma_noreps(r_xprt);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001635 return -ENOMEM;
1636
1637out_rc:
1638 rpcrdma_recv_buffer_put(rep);
1639 return rc;
1640}