blob: 4ee9704ffe19802e928438e6d02c99a818600418 [file] [log] [blame]
Chuck Levera2268cf2018-05-04 15:34:32 -04001// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04002/*
Chuck Lever62b56a62017-10-30 16:22:14 -04003 * Copyright (c) 2014-2017 Oracle. All rights reserved.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04004 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
5 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the BSD-type
10 * license below:
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 *
19 * Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials provided
22 * with the distribution.
23 *
24 * Neither the name of the Network Appliance, Inc. nor the names of
25 * its contributors may be used to endorse or promote products
26 * derived from this software without specific prior written
27 * permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040040 */
41
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040042/*
43 * verbs.c
44 *
45 * Encapsulates the major functions managing:
46 * o adapters
47 * o endpoints
48 * o connections
49 * o buffer memory
50 */
51
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000052#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Chuck Lever0dd39ca2015-03-30 14:33:43 -040054#include <linux/sunrpc/addr.h>
Chuck Lever05c97462016-09-06 11:22:58 -040055#include <linux/sunrpc/svc_rdma.h>
Chuck Leverae729502017-10-20 10:48:12 -040056
57#include <asm-generic/barrier.h>
Chuck Lever65866f82014-05-28 10:33:59 -040058#include <asm/bitops.h>
Chuck Lever56a6bd12017-04-11 13:23:34 -040059
Chuck Lever0a904872017-02-08 17:00:35 -050060#include <rdma/ib_cm.h>
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040061
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040062#include "xprt_rdma.h"
63
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040064/*
65 * Globals/Macros
66 */
67
Jeff Laytonf895b252014-11-17 16:58:04 -050068#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040069# define RPCDBG_FACILITY RPCDBG_TRANS
70#endif
71
72/*
73 * internal functions
74 */
Chuck Lever96cedde2017-12-14 20:57:55 -050075static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
76static void rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf);
Chuck Leverbebd0312017-04-11 13:23:10 -040077static void rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040078
Chuck Leverd8f532d2017-10-16 15:01:30 -040079struct workqueue_struct *rpcrdma_receive_wq __read_mostly;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040080
Chuck Leverfe97b472015-10-24 17:27:10 -040081int
82rpcrdma_alloc_wq(void)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040083{
Chuck Leverfe97b472015-10-24 17:27:10 -040084 struct workqueue_struct *recv_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040085
Chuck Leverfe97b472015-10-24 17:27:10 -040086 recv_wq = alloc_workqueue("xprtrdma_receive",
Chuck Leverccede752017-12-04 14:04:04 -050087 WQ_MEM_RECLAIM | WQ_HIGHPRI,
Chuck Leverfe97b472015-10-24 17:27:10 -040088 0);
89 if (!recv_wq)
90 return -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040091
Chuck Leverfe97b472015-10-24 17:27:10 -040092 rpcrdma_receive_wq = recv_wq;
93 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040094}
95
Chuck Leverfe97b472015-10-24 17:27:10 -040096void
97rpcrdma_destroy_wq(void)
Chuck Leverf1a03b72014-11-08 20:14:37 -050098{
Chuck Leverfe97b472015-10-24 17:27:10 -040099 struct workqueue_struct *wq;
Chuck Leverf1a03b72014-11-08 20:14:37 -0500100
Chuck Leverfe97b472015-10-24 17:27:10 -0400101 if (rpcrdma_receive_wq) {
102 wq = rpcrdma_receive_wq;
103 rpcrdma_receive_wq = NULL;
104 destroy_workqueue(wq);
105 }
Chuck Leverf1a03b72014-11-08 20:14:37 -0500106}
107
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400108static void
109rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
110{
111 struct rpcrdma_ep *ep = context;
Chuck Lever643cf322017-12-20 16:31:45 -0500112 struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
113 rx_ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400114
Chuck Lever643cf322017-12-20 16:31:45 -0500115 trace_xprtrdma_qp_error(r_xprt, event);
Chuck Lever2f6922c2016-11-29 10:53:21 -0500116 pr_err("rpcrdma: %s on device %s ep %p\n",
117 ib_event_msg(event->event), event->device->name, context);
118
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400119 if (ep->rep_connected == 1) {
120 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500121 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400122 wake_up_all(&ep->rep_connect_wait);
123 }
124}
125
Chuck Lever2fa8f882016-03-04 11:28:53 -0500126/**
127 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
128 * @cq: completion queue (ignored)
129 * @wc: completed WR
130 *
Chuck Lever4220a072015-10-24 17:26:45 -0400131 */
132static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500133rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400134{
Chuck Leverae729502017-10-20 10:48:12 -0400135 struct ib_cqe *cqe = wc->wr_cqe;
136 struct rpcrdma_sendctx *sc =
137 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
138
Chuck Lever2fa8f882016-03-04 11:28:53 -0500139 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leverab03eff2017-12-20 16:30:40 -0500140 trace_xprtrdma_wc_send(sc, wc);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500141 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
142 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
143 ib_wc_status_msg(wc->status),
144 wc->status, wc->vendor_err);
Chuck Leverae729502017-10-20 10:48:12 -0400145
146 rpcrdma_sendctx_put_locked(sc);
Chuck Leverfc664482014-05-28 10:33:25 -0400147}
148
Chuck Lever552bf222016-03-04 11:28:36 -0500149/**
Chuck Lever1519e962016-09-15 10:57:49 -0400150 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500151 * @cq: completion queue (ignored)
152 * @wc: completed WR
153 *
154 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400155static void
Chuck Lever1519e962016-09-15 10:57:49 -0400156rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400157{
Chuck Lever552bf222016-03-04 11:28:36 -0500158 struct ib_cqe *cqe = wc->wr_cqe;
159 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
160 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400161
Chuck Lever85024272015-01-21 11:02:04 -0500162 /* WARNING: Only wr_id and status are reliable at this point */
Chuck Leverb4a7f912017-12-20 16:30:48 -0500163 trace_xprtrdma_wc_receive(rep, wc);
Chuck Lever85024272015-01-21 11:02:04 -0500164 if (wc->status != IB_WC_SUCCESS)
165 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400166
Chuck Lever85024272015-01-21 11:02:04 -0500167 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever96f87782017-08-03 14:30:03 -0400168 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400169 rep->rr_wc_flags = wc->wc_flags;
170 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
171
Chuck Lever91a10c52017-04-11 13:23:02 -0400172 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500173 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400174 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500175
Chuck Leverfc664482014-05-28 10:33:25 -0400176out_schedule:
Chuck Leverd8f532d2017-10-16 15:01:30 -0400177 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500178 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400179
Chuck Lever85024272015-01-21 11:02:04 -0500180out_fail:
181 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500182 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
183 ib_wc_status_msg(wc->status),
184 wc->status, wc->vendor_err);
Chuck Levere2a67192017-08-03 14:30:44 -0400185 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, 0);
Chuck Lever85024272015-01-21 11:02:04 -0500186 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400187}
188
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400189static void
190rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
191 struct rdma_conn_param *param)
192{
193 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
194 const struct rpcrdma_connect_private *pmsg = param->private_data;
195 unsigned int rsize, wsize;
196
Chuck Leverc8b920b2016-09-15 10:57:16 -0400197 /* Default settings for RPC-over-RDMA Version One */
Chuck Leverb5f0afb2017-02-08 16:59:54 -0500198 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400199 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
200 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
201
202 if (pmsg &&
203 pmsg->cp_magic == rpcrdma_cmp_magic &&
204 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc95a3c62017-02-08 17:00:02 -0500205 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400206 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
207 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
208 }
209
210 if (rsize < cdata->inline_rsize)
211 cdata->inline_rsize = rsize;
212 if (wsize < cdata->inline_wsize)
213 cdata->inline_wsize = wsize;
Chuck Lever6d6bf722016-11-29 10:53:13 -0500214 dprintk("RPC: %s: max send %u, max recv %u\n",
215 __func__, cdata->inline_wsize, cdata->inline_rsize);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400216 rpcrdma_set_max_header_sizes(r_xprt);
217}
218
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400219static int
220rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
221{
222 struct rpcrdma_xprt *xprt = id->context;
223 struct rpcrdma_ia *ia = &xprt->rx_ia;
224 struct rpcrdma_ep *ep = &xprt->rx_ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400225 int connstate = 0;
226
Chuck Leverb4744e02017-12-20 16:31:29 -0500227 trace_xprtrdma_conn_upcall(xprt, event);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400228 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:
Chuck Lever52d28fe2018-05-04 15:34:37 -0400235 ia->ri_async_rc = -EPROTO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400236 complete(&ia->ri_done);
237 break;
238 case RDMA_CM_EVENT_ROUTE_ERROR:
239 ia->ri_async_rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400240 complete(&ia->ri_done);
241 break;
Chuck Leverbebd0312017-04-11 13:23:10 -0400242 case RDMA_CM_EVENT_DEVICE_REMOVAL:
243#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverd461f1f2017-12-14 20:56:50 -0500244 pr_info("rpcrdma: removing device %s for %s:%s\n",
Chuck Lever173b8f42017-06-08 11:53:00 -0400245 ia->ri_device->name,
Chuck Leverd461f1f2017-12-14 20:56:50 -0500246 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt));
Chuck Leverbebd0312017-04-11 13:23:10 -0400247#endif
248 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
249 ep->rep_connected = -ENODEV;
250 xprt_force_disconnect(&xprt->rx_xprt);
251 wait_for_completion(&ia->ri_remove_done);
252
253 ia->ri_id = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400254 ia->ri_device = NULL;
255 /* Return 1 to ensure the core destroys the id. */
256 return 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400257 case RDMA_CM_EVENT_ESTABLISHED:
Chuck Lever8a147932018-02-28 15:30:38 -0500258 ++xprt->rx_xprt.connect_cookie;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400259 connstate = 1;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400260 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400261 goto connected;
262 case RDMA_CM_EVENT_CONNECT_ERROR:
263 connstate = -ENOTCONN;
264 goto connected;
265 case RDMA_CM_EVENT_UNREACHABLE:
Chuck Lever52d28fe2018-05-04 15:34:37 -0400266 connstate = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400267 goto connected;
268 case RDMA_CM_EVENT_REJECTED:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500269 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
270 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever0a904872017-02-08 17:00:35 -0500271 rdma_reject_msg(id, event->status));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400272 connstate = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500273 if (event->status == IB_CM_REJ_STALE_CONN)
274 connstate = -EAGAIN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400275 goto connected;
276 case RDMA_CM_EVENT_DISCONNECTED:
Chuck Lever8a147932018-02-28 15:30:38 -0500277 ++xprt->rx_xprt.connect_cookie;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400278 connstate = -ECONNABORTED;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400279connected:
Chuck Leverbe798f92017-10-16 15:01:39 -0400280 xprt->rx_buf.rb_credits = 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400281 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500282 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400283 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400284 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400285 default:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500286 dprintk("RPC: %s: %s:%s on %s/%s (ep 0x%p): %s\n",
287 __func__,
288 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever173b8f42017-06-08 11:53:00 -0400289 ia->ri_device->name, ia->ri_ops->ro_displayname,
290 ep, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400291 break;
292 }
293
294 return 0;
295}
296
297static struct rdma_cm_id *
Chuck Leverdd229ce2017-12-14 20:56:58 -0500298rpcrdma_create_id(struct rpcrdma_xprt *xprt, struct rpcrdma_ia *ia)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400299{
Chuck Lever109b88a2016-11-29 10:52:40 -0500300 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400301 struct rdma_cm_id *id;
302 int rc;
303
Chuck Leverb4744e02017-12-20 16:31:29 -0500304 trace_xprtrdma_conn_start(xprt);
305
Tom Talpey1a954052008-10-09 15:01:31 -0400306 init_completion(&ia->ri_done);
Chuck Leverbebd0312017-04-11 13:23:10 -0400307 init_completion(&ia->ri_remove_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400308
Guy Shapirofa201052015-10-22 15:20:10 +0300309 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
310 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400311 if (IS_ERR(id)) {
312 rc = PTR_ERR(id);
313 dprintk("RPC: %s: rdma_create_id() failed %i\n",
314 __func__, rc);
315 return id;
316 }
317
Tom Talpey5675add2008-10-09 15:01:41 -0400318 ia->ri_async_rc = -ETIMEDOUT;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500319 rc = rdma_resolve_addr(id, NULL,
320 (struct sockaddr *)&xprt->rx_xprt.addr,
321 RDMA_RESOLVE_TIMEOUT);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400322 if (rc) {
323 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
324 __func__, rc);
325 goto out;
326 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500327 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
328 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500329 trace_xprtrdma_conn_tout(xprt);
Chuck Lever109b88a2016-11-29 10:52:40 -0500330 goto out;
331 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400332
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400333 rc = ia->ri_async_rc;
334 if (rc)
335 goto out;
336
Tom Talpey5675add2008-10-09 15:01:41 -0400337 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400338 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
339 if (rc) {
340 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
341 __func__, rc);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400342 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400343 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500344 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
345 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500346 trace_xprtrdma_conn_tout(xprt);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400347 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500348 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400349 rc = ia->ri_async_rc;
350 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400351 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400352
353 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400354
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400355out:
356 rdma_destroy_id(id);
357 return ERR_PTR(rc);
358}
359
360/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400361 * Exported functions.
362 */
363
Chuck Leverfff09592017-04-11 13:22:54 -0400364/**
365 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
Chuck Leverdd229ce2017-12-14 20:56:58 -0500366 * @xprt: transport with IA to (re)initialize
Chuck Leverfff09592017-04-11 13:22:54 -0400367 *
368 * Returns 0 on success, negative errno if an appropriate
369 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400370 */
371int
Chuck Leverdd229ce2017-12-14 20:56:58 -0500372rpcrdma_ia_open(struct rpcrdma_xprt *xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400373{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400374 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400375 int rc;
376
Chuck Leverdd229ce2017-12-14 20:56:58 -0500377 ia->ri_id = rpcrdma_create_id(xprt, ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400378 if (IS_ERR(ia->ri_id)) {
379 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400380 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400381 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400382 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400383
Christoph Hellwiged082d32016-09-05 12:56:17 +0200384 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400385 if (IS_ERR(ia->ri_pd)) {
386 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400387 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400388 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400389 }
390
Chuck Leverfff09592017-04-11 13:22:54 -0400391 switch (xprt_rdma_memreg_strategy) {
Chuck Leverce5b3712017-12-14 20:57:47 -0500392 case RPCRDMA_FRWR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400393 if (frwr_is_supported(ia)) {
394 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
395 break;
396 }
397 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400398 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400399 if (fmr_is_supported(ia)) {
400 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
401 break;
402 }
403 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400404 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400405 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
406 ia->ri_device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400407 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400408 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400409 }
410
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400411 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500412
Chuck Leverfff09592017-04-11 13:22:54 -0400413out_err:
414 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400415 return rc;
416}
417
Chuck Leverfff09592017-04-11 13:22:54 -0400418/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400419 * rpcrdma_ia_remove - Handle device driver unload
420 * @ia: interface adapter being removed
421 *
422 * Divest transport H/W resources associated with this adapter,
423 * but allow it to be restored later.
424 */
425void
426rpcrdma_ia_remove(struct rpcrdma_ia *ia)
427{
428 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
429 rx_ia);
430 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
431 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
432 struct rpcrdma_req *req;
433 struct rpcrdma_rep *rep;
434
435 cancel_delayed_work_sync(&buf->rb_refresh_worker);
436
437 /* This is similar to rpcrdma_ep_destroy, but:
438 * - Don't cancel the connect worker.
439 * - Don't call rpcrdma_ep_disconnect, which waits
440 * for another conn upcall, which will deadlock.
441 * - rdma_disconnect is unneeded, the underlying
442 * connection is already gone.
443 */
444 if (ia->ri_id->qp) {
445 ib_drain_qp(ia->ri_id->qp);
446 rdma_destroy_qp(ia->ri_id);
447 ia->ri_id->qp = NULL;
448 }
449 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400450 ep->rep_attr.recv_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400451 ib_free_cq(ep->rep_attr.send_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400452 ep->rep_attr.send_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400453
454 /* The ULP is responsible for ensuring all DMA
455 * mappings and MRs are gone.
456 */
457 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
458 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
459 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
460 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
461 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
462 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
463 }
Chuck Lever96cedde2017-12-14 20:57:55 -0500464 rpcrdma_mrs_destroy(buf);
Chuck Lever25524282018-03-19 14:23:16 -0400465 ib_dealloc_pd(ia->ri_pd);
466 ia->ri_pd = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400467
468 /* Allow waiters to continue */
469 complete(&ia->ri_remove_done);
Chuck Leverb4744e02017-12-20 16:31:29 -0500470
471 trace_xprtrdma_remove(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400472}
473
474/**
Chuck Leverfff09592017-04-11 13:22:54 -0400475 * rpcrdma_ia_close - Clean up/close an IA.
476 * @ia: interface adapter to close
477 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400478 */
479void
480rpcrdma_ia_close(struct rpcrdma_ia *ia)
481{
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400482 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
483 if (ia->ri_id->qp)
484 rdma_destroy_qp(ia->ri_id);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400485 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400486 }
Chuck Leverfff09592017-04-11 13:22:54 -0400487 ia->ri_id = NULL;
488 ia->ri_device = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400489
490 /* If the pd is still busy, xprtrdma missed freeing a resource */
491 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600492 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400493 ia->ri_pd = NULL;
\"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,
Chuck Lever16f906d2017-02-08 17:00:10 -0500501 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400502{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400503 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Lever16f906d2017-02-08 17:00:10 -0500504 unsigned int max_qp_wr, max_sge;
Chuck Leverfc664482014-05-28 10:33:25 -0400505 struct ib_cq *sendcq, *recvcq;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500506 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400507
Chuck Levereed50872017-03-11 15:52:47 -0500508 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
509 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500510 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
511 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400512 return -ENOMEM;
513 }
Chuck Lever1179e2c2018-01-31 12:34:05 -0500514 ia->ri_max_send_sges = max_sge;
Chuck Leverb3221d62015-08-03 13:03:39 -0400515
Or Gerlitze3e45b12015-12-18 10:59:48 +0200516 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400517 dprintk("RPC: %s: insufficient wqe's available\n",
518 __func__);
519 return -ENOMEM;
520 }
Chuck Lever550d7502016-05-02 14:41:47 -0400521 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
Chuck Lever124fa172015-10-24 17:27:51 -0400522
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400523 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400524 if (cdata->max_requests > max_qp_wr)
525 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400526
527 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
528 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400529 ep->rep_attr.srq = NULL;
530 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400531 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400532 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
Chuck Lever3968cb52015-03-30 14:35:26 -0400533 rc = ia->ri_ops->ro_open(ia, ep, cdata);
534 if (rc)
535 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400536 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400537 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400538 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
Chuck Lever16f906d2017-02-08 17:00:10 -0500539 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400540 ep->rep_attr.cap.max_recv_sge = 1;
541 ep->rep_attr.cap.max_inline_data = 0;
542 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
543 ep->rep_attr.qp_type = IB_QPT_RC;
544 ep->rep_attr.port_num = ~0;
545
546 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
547 "iovs: send %d recv %d\n",
548 __func__,
549 ep->rep_attr.cap.max_send_wr,
550 ep->rep_attr.cap.max_recv_wr,
551 ep->rep_attr.cap.max_send_sge,
552 ep->rep_attr.cap.max_recv_sge);
553
554 /* set trigger for requesting send completion */
Chuck Leverae729502017-10-20 10:48:12 -0400555 ep->rep_send_batch = min_t(unsigned int, RPCRDMA_MAX_SEND_BATCH,
556 cdata->max_requests >> 2);
557 ep->rep_send_count = ep->rep_send_batch;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400558 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400559 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400560
Chuck Lever2fa8f882016-03-04 11:28:53 -0500561 sendcq = ib_alloc_cq(ia->ri_device, NULL,
562 ep->rep_attr.cap.max_send_wr + 1,
Chuck Levera4699f52017-10-30 16:21:49 -0400563 1, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400564 if (IS_ERR(sendcq)) {
565 rc = PTR_ERR(sendcq);
566 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400567 __func__, rc);
568 goto out1;
569 }
570
Chuck Lever552bf222016-03-04 11:28:36 -0500571 recvcq = ib_alloc_cq(ia->ri_device, NULL,
572 ep->rep_attr.cap.max_recv_wr + 1,
Chuck Leverd8f532d2017-10-16 15:01:30 -0400573 0, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400574 if (IS_ERR(recvcq)) {
575 rc = PTR_ERR(recvcq);
576 dprintk("RPC: %s: failed to create recv CQ: %i\n",
577 __func__, rc);
578 goto out2;
579 }
580
Chuck Leverfc664482014-05-28 10:33:25 -0400581 ep->rep_attr.send_cq = sendcq;
582 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400583
584 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400585 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400586
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400587 /* Prepare RDMA-CM private message */
588 pmsg->cp_magic = rpcrdma_cmp_magic;
589 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400590 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400591 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
592 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
593 ep->rep_remote_cma.private_data = pmsg;
594 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400595
596 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400597 ep->rep_remote_cma.initiator_depth = 0;
Chuck Leverb7e85fff2018-02-28 15:30:33 -0500598 ep->rep_remote_cma.responder_resources =
599 min_t(int, U8_MAX, ia->ri_device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400600
Chuck Leverb2dde942016-05-02 14:43:03 -0400601 /* Limit transport retries so client can detect server
602 * GID changes quickly. RPC layer handles re-establishing
603 * transport connection and retransmission.
604 */
605 ep->rep_remote_cma.retry_count = 6;
606
607 /* RPC-over-RDMA handles its own flow control. In addition,
608 * make all RNR NAKs visible so we know that RPC-over-RDMA
609 * flow control is working correctly (no NAKs should be seen).
610 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400611 ep->rep_remote_cma.flow_control = 0;
612 ep->rep_remote_cma.rnr_retry_count = 0;
613
614 return 0;
615
616out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500617 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400618out1:
619 return rc;
620}
621
622/*
623 * rpcrdma_ep_destroy
624 *
625 * Disconnect and destroy endpoint. After this, the only
626 * valid operations on the ep are to free it (if dynamically
627 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400628 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400629void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400630rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
631{
Chuck Lever254f91e2014-05-28 10:32:17 -0400632 cancel_delayed_work_sync(&ep->rep_connect_worker);
633
Chuck Lever25524282018-03-19 14:23:16 -0400634 if (ia->ri_id && ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400635 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400636 rdma_destroy_qp(ia->ri_id);
637 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400638 }
639
Chuck Lever25524282018-03-19 14:23:16 -0400640 if (ep->rep_attr.recv_cq)
641 ib_free_cq(ep->rep_attr.recv_cq);
642 if (ep->rep_attr.send_cq)
643 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400644}
645
Chuck Levera9b0e382017-04-11 13:23:26 -0400646/* Re-establish a connection after a device removal event.
647 * Unlike a normal reconnection, a fresh PD and a new set
648 * of MRs and buffers is needed.
649 */
650static int
651rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
652 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
653{
Chuck Levera9b0e382017-04-11 13:23:26 -0400654 int rc, err;
655
Chuck Leverb4744e02017-12-20 16:31:29 -0500656 trace_xprtrdma_reinsert(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400657
658 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500659 if (rpcrdma_ia_open(r_xprt))
Chuck Levera9b0e382017-04-11 13:23:26 -0400660 goto out1;
661
662 rc = -ENOMEM;
663 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
664 if (err) {
665 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
666 goto out2;
667 }
668
669 rc = -ENETUNREACH;
670 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
671 if (err) {
672 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
673 goto out3;
674 }
675
Chuck Lever96cedde2017-12-14 20:57:55 -0500676 rpcrdma_mrs_create(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400677 return 0;
678
679out3:
680 rpcrdma_ep_destroy(ep, ia);
681out2:
682 rpcrdma_ia_close(ia);
683out1:
684 return rc;
685}
686
Chuck Lever18908962017-04-11 13:23:18 -0400687static int
688rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
689 struct rpcrdma_ia *ia)
690{
Chuck Lever18908962017-04-11 13:23:18 -0400691 struct rdma_cm_id *id, *old;
692 int err, rc;
693
Chuck Leverb4744e02017-12-20 16:31:29 -0500694 trace_xprtrdma_reconnect(r_xprt);
Chuck Lever18908962017-04-11 13:23:18 -0400695
696 rpcrdma_ep_disconnect(ep, ia);
697
698 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500699 id = rpcrdma_create_id(r_xprt, ia);
Chuck Lever18908962017-04-11 13:23:18 -0400700 if (IS_ERR(id))
701 goto out;
702
703 /* As long as the new ID points to the same device as the
704 * old ID, we can reuse the transport's existing PD and all
705 * previously allocated MRs. Also, the same device means
706 * the transport's previous DMA mappings are still valid.
707 *
708 * This is a sanity check only. There should be no way these
709 * point to two different devices here.
710 */
711 old = id;
712 rc = -ENETUNREACH;
713 if (ia->ri_device != id->device) {
714 pr_err("rpcrdma: can't reconnect on different device!\n");
715 goto out_destroy;
716 }
717
718 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
719 if (err) {
720 dprintk("RPC: %s: rdma_create_qp returned %d\n",
721 __func__, err);
722 goto out_destroy;
723 }
724
725 /* Atomically replace the transport's ID and QP. */
726 rc = 0;
727 old = ia->ri_id;
728 ia->ri_id = id;
729 rdma_destroy_qp(old);
730
731out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400732 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400733out:
734 return rc;
735}
736
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400737/*
738 * Connect unconnected endpoint.
739 */
740int
741rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
742{
Chuck Lever0a904872017-02-08 17:00:35 -0500743 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
744 rx_ia);
Chuck Lever0a904872017-02-08 17:00:35 -0500745 unsigned int extras;
Chuck Lever18908962017-04-11 13:23:18 -0400746 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400747
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400748retry:
Chuck Lever18908962017-04-11 13:23:18 -0400749 switch (ep->rep_connected) {
750 case 0:
Chuck Leverec62f402014-05-28 10:34:07 -0400751 dprintk("RPC: %s: connecting...\n", __func__);
752 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
753 if (rc) {
754 dprintk("RPC: %s: rdma_create_qp failed %i\n",
755 __func__, rc);
Chuck Lever18908962017-04-11 13:23:18 -0400756 rc = -ENETUNREACH;
757 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400758 }
Chuck Lever18908962017-04-11 13:23:18 -0400759 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400760 case -ENODEV:
761 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
762 if (rc)
763 goto out_noupdate;
764 break;
Chuck Lever18908962017-04-11 13:23:18 -0400765 default:
766 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
767 if (rc)
768 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400769 }
770
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400771 ep->rep_connected = 0;
772
773 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
774 if (rc) {
775 dprintk("RPC: %s: rdma_connect() failed with %i\n",
776 __func__, rc);
777 goto out;
778 }
779
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400780 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400781 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500782 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400783 goto retry;
784 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500785 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400786 }
787
Chuck Lever0a904872017-02-08 17:00:35 -0500788 dprintk("RPC: %s: connected\n", __func__);
789 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
790 if (extras)
791 rpcrdma_ep_post_extra_recv(r_xprt, extras);
792
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400793out:
794 if (rc)
795 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400796
797out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400798 return rc;
799}
800
801/*
802 * rpcrdma_ep_disconnect
803 *
804 * This is separate from destroy to facilitate the ability
805 * to reconnect without recreating the endpoint.
806 *
807 * This call is not reentrant, and must not be made in parallel
808 * on the same endpoint.
809 */
Chuck Lever282191c2014-07-29 17:25:55 -0400810void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400811rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
812{
813 int rc;
814
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400815 rc = rdma_disconnect(ia->ri_id);
Chuck Leverb4744e02017-12-20 16:31:29 -0500816 if (!rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400817 /* returns without wait if not connected */
818 wait_event_interruptible(ep->rep_connect_wait,
819 ep->rep_connected != 1);
Chuck Leverb4744e02017-12-20 16:31:29 -0500820 else
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400821 ep->rep_connected = rc;
Chuck Leverb4744e02017-12-20 16:31:29 -0500822 trace_xprtrdma_disconnect(container_of(ep, struct rpcrdma_xprt,
823 rx_ep), rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400824
825 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400826}
827
Chuck Leverae729502017-10-20 10:48:12 -0400828/* Fixed-size circular FIFO queue. This implementation is wait-free and
829 * lock-free.
830 *
831 * Consumer is the code path that posts Sends. This path dequeues a
832 * sendctx for use by a Send operation. Multiple consumer threads
833 * are serialized by the RPC transport lock, which allows only one
834 * ->send_request call at a time.
835 *
836 * Producer is the code path that handles Send completions. This path
837 * enqueues a sendctx that has been completed. Multiple producer
838 * threads are serialized by the ib_poll_cq() function.
839 */
840
841/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
842 * queue activity, and ib_drain_qp has flushed all remaining Send
843 * requests.
844 */
845static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
846{
847 unsigned long i;
848
849 for (i = 0; i <= buf->rb_sc_last; i++)
850 kfree(buf->rb_sc_ctxs[i]);
851 kfree(buf->rb_sc_ctxs);
852}
853
854static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
855{
856 struct rpcrdma_sendctx *sc;
857
858 sc = kzalloc(sizeof(*sc) +
859 ia->ri_max_send_sges * sizeof(struct ib_sge),
860 GFP_KERNEL);
861 if (!sc)
862 return NULL;
863
864 sc->sc_wr.wr_cqe = &sc->sc_cqe;
865 sc->sc_wr.sg_list = sc->sc_sges;
866 sc->sc_wr.opcode = IB_WR_SEND;
867 sc->sc_cqe.done = rpcrdma_wc_send;
868 return sc;
869}
870
871static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
872{
873 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
874 struct rpcrdma_sendctx *sc;
875 unsigned long i;
876
877 /* Maximum number of concurrent outstanding Send WRs. Capping
878 * the circular queue size stops Send Queue overflow by causing
879 * the ->send_request call to fail temporarily before too many
880 * Sends are posted.
881 */
882 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
883 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
884 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
885 if (!buf->rb_sc_ctxs)
886 return -ENOMEM;
887
888 buf->rb_sc_last = i - 1;
889 for (i = 0; i <= buf->rb_sc_last; i++) {
890 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
891 if (!sc)
892 goto out_destroy;
893
894 sc->sc_xprt = r_xprt;
895 buf->rb_sc_ctxs[i] = sc;
896 }
897
898 return 0;
899
900out_destroy:
901 rpcrdma_sendctxs_destroy(buf);
902 return -ENOMEM;
903}
904
905/* The sendctx queue is not guaranteed to have a size that is a
906 * power of two, thus the helpers in circ_buf.h cannot be used.
907 * The other option is to use modulus (%), which can be expensive.
908 */
909static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
910 unsigned long item)
911{
912 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
913}
914
915/**
916 * rpcrdma_sendctx_get_locked - Acquire a send context
917 * @buf: transport buffers from which to acquire an unused context
918 *
919 * Returns pointer to a free send completion context; or NULL if
920 * the queue is empty.
921 *
922 * Usage: Called to acquire an SGE array before preparing a Send WR.
923 *
924 * The caller serializes calls to this function (per rpcrdma_buffer),
925 * and provides an effective memory barrier that flushes the new value
926 * of rb_sc_head.
927 */
928struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_buffer *buf)
929{
930 struct rpcrdma_xprt *r_xprt;
931 struct rpcrdma_sendctx *sc;
932 unsigned long next_head;
933
934 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
935
936 if (next_head == READ_ONCE(buf->rb_sc_tail))
937 goto out_emptyq;
938
939 /* ORDER: item must be accessed _before_ head is updated */
940 sc = buf->rb_sc_ctxs[next_head];
941
942 /* Releasing the lock in the caller acts as a memory
943 * barrier that flushes rb_sc_head.
944 */
945 buf->rb_sc_head = next_head;
946
947 return sc;
948
949out_emptyq:
950 /* The queue is "empty" if there have not been enough Send
951 * completions recently. This is a sign the Send Queue is
952 * backing up. Cause the caller to pause and try again.
953 */
954 dprintk("RPC: %s: empty sendctx queue\n", __func__);
955 r_xprt = container_of(buf, struct rpcrdma_xprt, rx_buf);
956 r_xprt->rx_stats.empty_sendctx_q++;
957 return NULL;
958}
959
960/**
961 * rpcrdma_sendctx_put_locked - Release a send context
962 * @sc: send context to release
963 *
964 * Usage: Called from Send completion to return a sendctxt
965 * to the queue.
966 *
967 * The caller serializes calls to this function (per rpcrdma_buffer).
968 */
969void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
970{
971 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
972 unsigned long next_tail;
973
974 /* Unmap SGEs of previously completed by unsignaled
975 * Sends by walking up the queue until @sc is found.
976 */
977 next_tail = buf->rb_sc_tail;
978 do {
979 next_tail = rpcrdma_sendctx_next(buf, next_tail);
980
981 /* ORDER: item must be accessed _before_ tail is updated */
982 rpcrdma_unmap_sendctx(buf->rb_sc_ctxs[next_tail]);
983
984 } while (buf->rb_sc_ctxs[next_tail] != sc);
985
986 /* Paired with READ_ONCE */
987 smp_store_release(&buf->rb_sc_tail, next_tail);
988}
989
Chuck Lever505bbe62016-06-29 13:52:54 -0400990static void
991rpcrdma_mr_recovery_worker(struct work_struct *work)
992{
993 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
994 rb_recovery_worker.work);
Chuck Lever96cedde2017-12-14 20:57:55 -0500995 struct rpcrdma_mr *mr;
Chuck Lever505bbe62016-06-29 13:52:54 -0400996
997 spin_lock(&buf->rb_recovery_lock);
998 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500999 mr = rpcrdma_mr_pop(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001000 spin_unlock(&buf->rb_recovery_lock);
1001
Chuck Lever1c443eff2017-12-20 16:31:21 -05001002 trace_xprtrdma_recover_mr(mr);
Chuck Lever96cedde2017-12-14 20:57:55 -05001003 mr->mr_xprt->rx_ia.ri_ops->ro_recover_mr(mr);
Chuck Lever505bbe62016-06-29 13:52:54 -04001004
1005 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +08001006 }
Chuck Lever505bbe62016-06-29 13:52:54 -04001007 spin_unlock(&buf->rb_recovery_lock);
1008}
1009
1010void
Chuck Lever96cedde2017-12-14 20:57:55 -05001011rpcrdma_mr_defer_recovery(struct rpcrdma_mr *mr)
Chuck Lever505bbe62016-06-29 13:52:54 -04001012{
Chuck Lever96cedde2017-12-14 20:57:55 -05001013 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
Chuck Lever505bbe62016-06-29 13:52:54 -04001014 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1015
1016 spin_lock(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001017 rpcrdma_mr_push(mr, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001018 spin_unlock(&buf->rb_recovery_lock);
1019
1020 schedule_delayed_work(&buf->rb_recovery_worker, 0);
1021}
1022
Chuck Levere2ac2362016-06-29 13:54:00 -04001023static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001024rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001025{
1026 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1027 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1028 unsigned int count;
1029 LIST_HEAD(free);
1030 LIST_HEAD(all);
1031
Chuck Leverae741a82018-02-28 15:30:49 -05001032 for (count = 0; count < 3; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001033 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001034 int rc;
1035
Chuck Lever96cedde2017-12-14 20:57:55 -05001036 mr = kzalloc(sizeof(*mr), GFP_KERNEL);
1037 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -04001038 break;
1039
Chuck Lever96cedde2017-12-14 20:57:55 -05001040 rc = ia->ri_ops->ro_init_mr(ia, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001041 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001042 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001043 break;
1044 }
1045
Chuck Lever96cedde2017-12-14 20:57:55 -05001046 mr->mr_xprt = r_xprt;
Chuck Levere2ac2362016-06-29 13:54:00 -04001047
Chuck Lever96cedde2017-12-14 20:57:55 -05001048 list_add(&mr->mr_list, &free);
1049 list_add(&mr->mr_all, &all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001050 }
1051
Chuck Lever96cedde2017-12-14 20:57:55 -05001052 spin_lock(&buf->rb_mrlock);
1053 list_splice(&free, &buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001054 list_splice(&all, &buf->rb_all);
1055 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever96cedde2017-12-14 20:57:55 -05001056 spin_unlock(&buf->rb_mrlock);
Chuck Lever1c443eff2017-12-20 16:31:21 -05001057 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Lever9e679d52018-02-28 15:30:44 -05001058
1059 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001060}
1061
1062static void
1063rpcrdma_mr_refresh_worker(struct work_struct *work)
1064{
1065 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
1066 rb_refresh_worker.work);
1067 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1068 rx_buf);
1069
Chuck Lever96cedde2017-12-14 20:57:55 -05001070 rpcrdma_mrs_create(r_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001071}
1072
Chuck Leverf531a5d2015-10-24 17:27:43 -04001073struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -05001074rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
1075{
Chuck Leverf531a5d2015-10-24 17:27:43 -04001076 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever2dd4a012018-02-28 15:31:05 -05001077 struct rpcrdma_regbuf *rb;
Chuck Lever13924022015-01-21 11:03:52 -05001078 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -05001079
Chuck Lever85275c82015-01-21 11:04:16 -05001080 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001081 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -05001082 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -05001083
Chuck Lever2dd4a012018-02-28 15:31:05 -05001084 rb = rpcrdma_alloc_regbuf(RPCRDMA_HDRBUF_SIZE,
1085 DMA_TO_DEVICE, GFP_KERNEL);
1086 if (IS_ERR(rb)) {
1087 kfree(req);
1088 return ERR_PTR(-ENOMEM);
1089 }
1090 req->rl_rdmabuf = rb;
1091 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
1092 req->rl_buffer = buffer;
1093 INIT_LIST_HEAD(&req->rl_registered);
1094
Chuck Leverf531a5d2015-10-24 17:27:43 -04001095 spin_lock(&buffer->rb_reqslock);
1096 list_add(&req->rl_all, &buffer->rb_allreqs);
1097 spin_unlock(&buffer->rb_reqslock);
Chuck Lever13924022015-01-21 11:03:52 -05001098 return req;
Chuck Lever13924022015-01-21 11:03:52 -05001099}
1100
Chuck Leverd698c4a2017-12-14 20:56:09 -05001101/**
1102 * rpcrdma_create_rep - Allocate an rpcrdma_rep object
1103 * @r_xprt: controlling transport
1104 *
1105 * Returns 0 on success or a negative errno on failure.
1106 */
1107int
Chuck Lever13924022015-01-21 11:03:52 -05001108rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
1109{
1110 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001111 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -05001112 struct rpcrdma_rep *rep;
1113 int rc;
1114
1115 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001116 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001117 if (rep == NULL)
1118 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001119
Chuck Lever13650c22016-09-15 10:56:26 -04001120 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001121 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -05001122 if (IS_ERR(rep->rr_rdmabuf)) {
1123 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001124 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001125 }
Chuck Lever96f87782017-08-03 14:30:03 -04001126 xdr_buf_init(&rep->rr_hdrbuf, rep->rr_rdmabuf->rg_base,
1127 rdmab_length(rep->rr_rdmabuf));
Chuck Lever13924022015-01-21 11:03:52 -05001128
Chuck Lever1519e962016-09-15 10:57:49 -04001129 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001130 rep->rr_rxprt = r_xprt;
Chuck Leverd8f532d2017-10-16 15:01:30 -04001131 INIT_WORK(&rep->rr_work, rpcrdma_deferred_completion);
Chuck Lever6ea8e712016-09-15 10:56:51 -04001132 rep->rr_recv_wr.next = NULL;
1133 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1134 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1135 rep->rr_recv_wr.num_sge = 1;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001136
1137 spin_lock(&buf->rb_lock);
1138 list_add(&rep->rr_list, &buf->rb_recv_bufs);
1139 spin_unlock(&buf->rb_lock);
1140 return 0;
Chuck Lever13924022015-01-21 11:03:52 -05001141
1142out_free:
1143 kfree(rep);
1144out:
Chuck Leverd698c4a2017-12-14 20:56:09 -05001145 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1146 __func__, rc);
1147 return rc;
Chuck Lever13924022015-01-21 11:03:52 -05001148}
1149
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001150int
Chuck Leverac920d02015-01-21 11:03:44 -05001151rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001152{
Chuck Leverac920d02015-01-21 11:03:44 -05001153 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001154 int i, rc;
1155
Chuck Lever1e465fd2015-10-24 17:27:02 -04001156 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001157 buf->rb_bc_srv_max_requests = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001158 spin_lock_init(&buf->rb_mrlock);
Chuck Lever505bbe62016-06-29 13:52:54 -04001159 spin_lock_init(&buf->rb_lock);
1160 spin_lock_init(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001161 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001162 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -04001163 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001164 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1165 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001166 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
1167 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001168
Chuck Lever96cedde2017-12-14 20:57:55 -05001169 rpcrdma_mrs_create(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001170
Chuck Lever1e465fd2015-10-24 17:27:02 -04001171 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001172 INIT_LIST_HEAD(&buf->rb_allreqs);
1173 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001174 for (i = 0; i < buf->rb_max_requests; i++) {
1175 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001176
Chuck Lever13924022015-01-21 11:03:52 -05001177 req = rpcrdma_create_req(r_xprt);
1178 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001179 dprintk("RPC: %s: request buffer %d alloc"
1180 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001181 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001182 goto out;
1183 }
Chuck Levera80d66c2017-06-08 11:52:12 -04001184 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001185 }
1186
1187 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Leverd698c4a2017-12-14 20:56:09 -05001188 for (i = 0; i <= buf->rb_max_requests; i++) {
1189 rc = rpcrdma_create_rep(r_xprt);
1190 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001191 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001192 }
Chuck Lever13924022015-01-21 11:03:52 -05001193
Chuck Leverae729502017-10-20 10:48:12 -04001194 rc = rpcrdma_sendctxs_create(r_xprt);
1195 if (rc)
1196 goto out;
1197
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001198 return 0;
1199out:
1200 rpcrdma_buffer_destroy(buf);
1201 return rc;
1202}
1203
Chuck Lever1e465fd2015-10-24 17:27:02 -04001204static struct rpcrdma_req *
1205rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
1206{
1207 struct rpcrdma_req *req;
1208
1209 req = list_first_entry(&buf->rb_send_bufs,
Chuck Levera80d66c2017-06-08 11:52:12 -04001210 struct rpcrdma_req, rl_list);
Chuck Lever431af642017-06-08 11:52:20 -04001211 list_del_init(&req->rl_list);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001212 return req;
1213}
1214
1215static struct rpcrdma_rep *
1216rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1217{
1218 struct rpcrdma_rep *rep;
1219
1220 rep = list_first_entry(&buf->rb_recv_bufs,
1221 struct rpcrdma_rep, rr_list);
1222 list_del(&rep->rr_list);
1223 return rep;
1224}
1225
Chuck Lever2e845222014-07-29 17:25:38 -04001226static void
Chuck Lever13650c22016-09-15 10:56:26 -04001227rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001228{
Chuck Lever13650c22016-09-15 10:56:26 -04001229 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001230 kfree(rep);
1231}
1232
Chuck Leverf531a5d2015-10-24 17:27:43 -04001233void
Chuck Lever13650c22016-09-15 10:56:26 -04001234rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001235{
Chuck Lever13650c22016-09-15 10:56:26 -04001236 rpcrdma_free_regbuf(req->rl_recvbuf);
1237 rpcrdma_free_regbuf(req->rl_sendbuf);
1238 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001239 kfree(req);
1240}
1241
Chuck Levere2ac2362016-06-29 13:54:00 -04001242static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001243rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf)
Chuck Levere2ac2362016-06-29 13:54:00 -04001244{
1245 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1246 rx_buf);
1247 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever96cedde2017-12-14 20:57:55 -05001248 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001249 unsigned int count;
1250
1251 count = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001252 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001253 while (!list_empty(&buf->rb_all)) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001254 mr = list_entry(buf->rb_all.next, struct rpcrdma_mr, mr_all);
1255 list_del(&mr->mr_all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001256
Chuck Lever96cedde2017-12-14 20:57:55 -05001257 spin_unlock(&buf->rb_mrlock);
1258 ia->ri_ops->ro_release_mr(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001259 count++;
Chuck Lever96cedde2017-12-14 20:57:55 -05001260 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001261 }
Chuck Lever96cedde2017-12-14 20:57:55 -05001262 spin_unlock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001263 r_xprt->rx_stats.mrs_allocated = 0;
1264
1265 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1266}
1267
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001268void
1269rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1270{
Chuck Lever505bbe62016-06-29 13:52:54 -04001271 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001272 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001273
Chuck Leverae729502017-10-20 10:48:12 -04001274 rpcrdma_sendctxs_destroy(buf);
1275
Chuck Lever1e465fd2015-10-24 17:27:02 -04001276 while (!list_empty(&buf->rb_recv_bufs)) {
1277 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001278
Chuck Lever1e465fd2015-10-24 17:27:02 -04001279 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001280 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001281 }
Chuck Lever05c97462016-09-06 11:22:58 -04001282 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001283
Chuck Leverf531a5d2015-10-24 17:27:43 -04001284 spin_lock(&buf->rb_reqslock);
1285 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001286 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001287
Chuck Leverf531a5d2015-10-24 17:27:43 -04001288 req = list_first_entry(&buf->rb_allreqs,
1289 struct rpcrdma_req, rl_all);
1290 list_del(&req->rl_all);
1291
1292 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001293 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001294 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001295 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001296 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001297 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001298
Chuck Lever96cedde2017-12-14 20:57:55 -05001299 rpcrdma_mrs_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001300}
1301
Chuck Lever96cedde2017-12-14 20:57:55 -05001302/**
1303 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1304 * @r_xprt: controlling transport
1305 *
1306 * Returns an initialized rpcrdma_mr or NULL if no free
1307 * rpcrdma_mr objects are available.
1308 */
1309struct rpcrdma_mr *
1310rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001311{
Chuck Lever346aa662015-05-26 11:52:06 -04001312 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001313 struct rpcrdma_mr *mr = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001314
Chuck Lever96cedde2017-12-14 20:57:55 -05001315 spin_lock(&buf->rb_mrlock);
1316 if (!list_empty(&buf->rb_mrs))
1317 mr = rpcrdma_mr_pop(&buf->rb_mrs);
1318 spin_unlock(&buf->rb_mrlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001319
Chuck Lever96cedde2017-12-14 20:57:55 -05001320 if (!mr)
1321 goto out_nomrs;
1322 return mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001323
Chuck Lever96cedde2017-12-14 20:57:55 -05001324out_nomrs:
Chuck Lever1c443eff2017-12-20 16:31:21 -05001325 trace_xprtrdma_nomrs(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -04001326 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1327 schedule_delayed_work(&buf->rb_refresh_worker, 0);
Chuck Levere2ac2362016-06-29 13:54:00 -04001328
1329 /* Allow the reply handler and refresh worker to run */
1330 cond_resched();
1331
1332 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001333}
1334
Chuck Leverec12e472017-12-14 20:58:04 -05001335static void
1336__rpcrdma_mr_put(struct rpcrdma_buffer *buf, struct rpcrdma_mr *mr)
1337{
1338 spin_lock(&buf->rb_mrlock);
1339 rpcrdma_mr_push(mr, &buf->rb_mrs);
1340 spin_unlock(&buf->rb_mrlock);
1341}
1342
Chuck Lever96cedde2017-12-14 20:57:55 -05001343/**
1344 * rpcrdma_mr_put - Release an rpcrdma_mr object
1345 * @mr: object to release
1346 *
1347 */
Chuck Lever346aa662015-05-26 11:52:06 -04001348void
Chuck Lever96cedde2017-12-14 20:57:55 -05001349rpcrdma_mr_put(struct rpcrdma_mr *mr)
Chuck Leverc2922c02014-07-29 17:24:36 -04001350{
Chuck Leverec12e472017-12-14 20:58:04 -05001351 __rpcrdma_mr_put(&mr->mr_xprt->rx_buf, mr);
1352}
Chuck Leverc2922c02014-07-29 17:24:36 -04001353
Chuck Leverec12e472017-12-14 20:58:04 -05001354/**
1355 * rpcrdma_mr_unmap_and_put - DMA unmap an MR and release it
1356 * @mr: object to release
1357 *
1358 */
1359void
1360rpcrdma_mr_unmap_and_put(struct rpcrdma_mr *mr)
1361{
1362 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1363
Chuck Lever2937fed2017-12-20 16:31:12 -05001364 trace_xprtrdma_dma_unmap(mr);
Chuck Leverec12e472017-12-14 20:58:04 -05001365 ib_dma_unmap_sg(r_xprt->rx_ia.ri_device,
1366 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1367 __rpcrdma_mr_put(&r_xprt->rx_buf, mr);
Chuck Leverc2922c02014-07-29 17:24:36 -04001368}
1369
Chuck Lever05c97462016-09-06 11:22:58 -04001370static struct rpcrdma_rep *
1371rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1372{
1373 /* If an RPC previously completed without a reply (say, a
1374 * credential problem or a soft timeout occurs) then hold off
1375 * on supplying more Receive buffers until the number of new
1376 * pending RPCs catches up to the number of posted Receives.
1377 */
1378 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1379 return NULL;
1380
1381 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1382 return NULL;
1383 buffers->rb_recv_count++;
1384 return rpcrdma_buffer_get_rep_locked(buffers);
1385}
1386
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001387/*
1388 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001389 *
1390 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001391 */
1392struct rpcrdma_req *
1393rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1394{
1395 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001396
Chuck Levera5b027e2015-10-24 17:27:27 -04001397 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001398 if (list_empty(&buffers->rb_send_bufs))
1399 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001400 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001401 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001402 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001403 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001404
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001405 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001406
Chuck Lever1e465fd2015-10-24 17:27:02 -04001407out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001408 spin_unlock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001409 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001410}
1411
1412/*
1413 * Put request/reply buffers back into pool.
1414 * Pre-decrement counter/array index.
1415 */
1416void
1417rpcrdma_buffer_put(struct rpcrdma_req *req)
1418{
1419 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001420 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001421
Chuck Lever1e465fd2015-10-24 17:27:02 -04001422 req->rl_reply = NULL;
1423
Chuck Levera5b027e2015-10-24 17:27:27 -04001424 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001425 buffers->rb_send_count--;
Chuck Levera80d66c2017-06-08 11:52:12 -04001426 list_add_tail(&req->rl_list, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001427 if (rep) {
1428 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001429 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001430 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001431 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001432}
1433
1434/*
1435 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001436 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001437 */
1438void
1439rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1440{
1441 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001442
Chuck Levera5b027e2015-10-24 17:27:27 -04001443 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001444 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001445 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001446}
1447
1448/*
1449 * Put reply buffers back into pool when not attached to
1450 * request. This happens in error conditions.
1451 */
1452void
1453rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1454{
Chuck Leverfed171b2015-05-26 11:51:37 -04001455 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001456
Chuck Levera5b027e2015-10-24 17:27:27 -04001457 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001458 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001459 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001460 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001461}
1462
Chuck Lever9128c3e2015-01-21 11:04:00 -05001463/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001464 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001465 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001466 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001467 * @flags: GFP flags
1468 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001469 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1470 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001471 *
1472 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001473 * receiving the payload of RDMA RECV operations. During Long Calls
1474 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001475 */
1476struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001477rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1478 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001479{
1480 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001481
Chuck Lever9128c3e2015-01-21 11:04:00 -05001482 rb = kmalloc(sizeof(*rb) + size, flags);
1483 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001484 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001485
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001486 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001487 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001488 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001489
1490 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001491}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001492
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001493/**
1494 * __rpcrdma_map_regbuf - DMA-map a regbuf
1495 * @ia: controlling rpcrdma_ia
1496 * @rb: regbuf to be mapped
1497 */
1498bool
1499__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1500{
Chuck Lever91a10c52017-04-11 13:23:02 -04001501 struct ib_device *device = ia->ri_device;
1502
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001503 if (rb->rg_direction == DMA_NONE)
1504 return false;
1505
Chuck Lever91a10c52017-04-11 13:23:02 -04001506 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001507 (void *)rb->rg_base,
1508 rdmab_length(rb),
1509 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001510 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001511 return false;
1512
Chuck Lever91a10c52017-04-11 13:23:02 -04001513 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001514 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1515 return true;
1516}
1517
1518static void
1519rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1520{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001521 if (!rb)
1522 return;
1523
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001524 if (!rpcrdma_regbuf_is_mapped(rb))
1525 return;
1526
1527 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1528 rdmab_length(rb), rb->rg_direction);
1529 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001530}
1531
1532/**
1533 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001534 * @rb: regbuf to be deregistered and freed
1535 */
1536void
Chuck Lever13650c22016-09-15 10:56:26 -04001537rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001538{
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001539 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001540 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001541}
1542
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001543/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001544 * Prepost any receive buffer, then post send.
1545 *
1546 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1547 */
1548int
1549rpcrdma_ep_post(struct rpcrdma_ia *ia,
1550 struct rpcrdma_ep *ep,
1551 struct rpcrdma_req *req)
1552{
Chuck Leverae729502017-10-20 10:48:12 -04001553 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
Chuck Lever655fec62016-09-15 10:57:24 -04001554 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001555
Chuck Lever90aab602016-09-15 10:56:43 -04001556 if (req->rl_reply) {
1557 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001558 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001559 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001560 req->rl_reply = NULL;
1561 }
1562
Chuck Lever01bb35c2017-10-20 10:48:36 -04001563 if (!ep->rep_send_count ||
1564 test_bit(RPCRDMA_REQ_F_TX_RESOURCES, &req->rl_flags)) {
Chuck Leverae729502017-10-20 10:48:12 -04001565 send_wr->send_flags |= IB_SEND_SIGNALED;
1566 ep->rep_send_count = ep->rep_send_batch;
1567 } else {
1568 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1569 --ep->rep_send_count;
1570 }
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001571
Chuck Leverf2877622018-02-28 15:30:59 -05001572 rc = ia->ri_ops->ro_send(ia, req);
Chuck Leverab03eff2017-12-20 16:30:40 -05001573 trace_xprtrdma_post_send(req, rc);
1574 if (rc)
1575 return -ENOTCONN;
1576 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001577}
1578
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001579int
1580rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001581 struct rpcrdma_rep *rep)
1582{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001583 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001584 int rc;
1585
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001586 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1587 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001588 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
Chuck Leverb4a7f912017-12-20 16:30:48 -05001589 trace_xprtrdma_post_recv(rep, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001590 if (rc)
Chuck Leverb4a7f912017-12-20 16:30:48 -05001591 return -ENOTCONN;
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001592 return 0;
1593
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001594out_map:
1595 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1596 return -EIO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001597}
Chuck Lever43e95982014-07-29 17:23:34 -04001598
Chuck Leverf531a5d2015-10-24 17:27:43 -04001599/**
1600 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1601 * @r_xprt: transport associated with these backchannel resources
Chuck Lever9ab6d892018-01-03 15:38:17 -05001602 * @count: minimum number of incoming requests expected
Chuck Leverf531a5d2015-10-24 17:27:43 -04001603 *
1604 * Returns zero if all requested buffers were posted, or a negative errno.
1605 */
1606int
1607rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1608{
1609 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1610 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001611 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001612 int rc;
1613
1614 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001615 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001616 if (list_empty(&buffers->rb_recv_bufs))
1617 goto out_reqbuf;
1618 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001619 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001620
Chuck Leverb1573802016-09-15 10:56:35 -04001621 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001622 if (rc)
1623 goto out_rc;
1624 }
1625
1626 return 0;
1627
1628out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001629 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001630 trace_xprtrdma_noreps(r_xprt);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001631 return -ENOMEM;
1632
1633out_rc:
1634 rpcrdma_recv_buffer_put(rep);
1635 return rc;
1636}