blob: 6a7a5a277e75d0dd569515fbdd3a92ff3b862648 [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;
253 ia->ri_pd = NULL;
254 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:
266 connstate = -ENETDOWN;
267 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);
450 ib_free_cq(ep->rep_attr.send_cq);
451
452 /* The ULP is responsible for ensuring all DMA
453 * mappings and MRs are gone.
454 */
455 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
456 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
457 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
458 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
459 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
460 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
461 }
Chuck Lever96cedde2017-12-14 20:57:55 -0500462 rpcrdma_mrs_destroy(buf);
Chuck Leverbebd0312017-04-11 13:23:10 -0400463
464 /* Allow waiters to continue */
465 complete(&ia->ri_remove_done);
Chuck Leverb4744e02017-12-20 16:31:29 -0500466
467 trace_xprtrdma_remove(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400468}
469
470/**
Chuck Leverfff09592017-04-11 13:22:54 -0400471 * rpcrdma_ia_close - Clean up/close an IA.
472 * @ia: interface adapter to close
473 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400474 */
475void
476rpcrdma_ia_close(struct rpcrdma_ia *ia)
477{
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400478 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
479 if (ia->ri_id->qp)
480 rdma_destroy_qp(ia->ri_id);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400481 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400482 }
Chuck Leverfff09592017-04-11 13:22:54 -0400483 ia->ri_id = NULL;
484 ia->ri_device = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400485
486 /* If the pd is still busy, xprtrdma missed freeing a resource */
487 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600488 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400489 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400490}
491
492/*
493 * Create unconnected endpoint.
494 */
495int
496rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
Chuck Lever16f906d2017-02-08 17:00:10 -0500497 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400498{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400499 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Lever16f906d2017-02-08 17:00:10 -0500500 unsigned int max_qp_wr, max_sge;
Chuck Leverfc664482014-05-28 10:33:25 -0400501 struct ib_cq *sendcq, *recvcq;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500502 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400503
Chuck Levereed50872017-03-11 15:52:47 -0500504 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
505 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500506 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
507 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400508 return -ENOMEM;
509 }
Chuck Lever1179e2c2018-01-31 12:34:05 -0500510 ia->ri_max_send_sges = max_sge;
Chuck Leverb3221d62015-08-03 13:03:39 -0400511
Or Gerlitze3e45b12015-12-18 10:59:48 +0200512 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400513 dprintk("RPC: %s: insufficient wqe's available\n",
514 __func__);
515 return -ENOMEM;
516 }
Chuck Lever550d7502016-05-02 14:41:47 -0400517 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
Chuck Lever124fa172015-10-24 17:27:51 -0400518
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400519 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400520 if (cdata->max_requests > max_qp_wr)
521 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400522
523 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
524 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400525 ep->rep_attr.srq = NULL;
526 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400527 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400528 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
Chuck Lever3968cb52015-03-30 14:35:26 -0400529 rc = ia->ri_ops->ro_open(ia, ep, cdata);
530 if (rc)
531 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400532 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400533 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400534 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
Chuck Lever16f906d2017-02-08 17:00:10 -0500535 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400536 ep->rep_attr.cap.max_recv_sge = 1;
537 ep->rep_attr.cap.max_inline_data = 0;
538 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
539 ep->rep_attr.qp_type = IB_QPT_RC;
540 ep->rep_attr.port_num = ~0;
541
542 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
543 "iovs: send %d recv %d\n",
544 __func__,
545 ep->rep_attr.cap.max_send_wr,
546 ep->rep_attr.cap.max_recv_wr,
547 ep->rep_attr.cap.max_send_sge,
548 ep->rep_attr.cap.max_recv_sge);
549
550 /* set trigger for requesting send completion */
Chuck Leverae729502017-10-20 10:48:12 -0400551 ep->rep_send_batch = min_t(unsigned int, RPCRDMA_MAX_SEND_BATCH,
552 cdata->max_requests >> 2);
553 ep->rep_send_count = ep->rep_send_batch;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400554 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400555 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400556
Chuck Lever2fa8f882016-03-04 11:28:53 -0500557 sendcq = ib_alloc_cq(ia->ri_device, NULL,
558 ep->rep_attr.cap.max_send_wr + 1,
Chuck Levera4699f52017-10-30 16:21:49 -0400559 1, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400560 if (IS_ERR(sendcq)) {
561 rc = PTR_ERR(sendcq);
562 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400563 __func__, rc);
564 goto out1;
565 }
566
Chuck Lever552bf222016-03-04 11:28:36 -0500567 recvcq = ib_alloc_cq(ia->ri_device, NULL,
568 ep->rep_attr.cap.max_recv_wr + 1,
Chuck Leverd8f532d2017-10-16 15:01:30 -0400569 0, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400570 if (IS_ERR(recvcq)) {
571 rc = PTR_ERR(recvcq);
572 dprintk("RPC: %s: failed to create recv CQ: %i\n",
573 __func__, rc);
574 goto out2;
575 }
576
Chuck Leverfc664482014-05-28 10:33:25 -0400577 ep->rep_attr.send_cq = sendcq;
578 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400579
580 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400581 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400582
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400583 /* Prepare RDMA-CM private message */
584 pmsg->cp_magic = rpcrdma_cmp_magic;
585 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400586 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400587 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
588 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
589 ep->rep_remote_cma.private_data = pmsg;
590 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400591
592 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400593 ep->rep_remote_cma.initiator_depth = 0;
Chuck Leverb7e85fff2018-02-28 15:30:33 -0500594 ep->rep_remote_cma.responder_resources =
595 min_t(int, U8_MAX, ia->ri_device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400596
Chuck Leverb2dde942016-05-02 14:43:03 -0400597 /* Limit transport retries so client can detect server
598 * GID changes quickly. RPC layer handles re-establishing
599 * transport connection and retransmission.
600 */
601 ep->rep_remote_cma.retry_count = 6;
602
603 /* RPC-over-RDMA handles its own flow control. In addition,
604 * make all RNR NAKs visible so we know that RPC-over-RDMA
605 * flow control is working correctly (no NAKs should be seen).
606 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400607 ep->rep_remote_cma.flow_control = 0;
608 ep->rep_remote_cma.rnr_retry_count = 0;
609
610 return 0;
611
612out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500613 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400614out1:
615 return rc;
616}
617
618/*
619 * rpcrdma_ep_destroy
620 *
621 * Disconnect and destroy endpoint. After this, the only
622 * valid operations on the ep are to free it (if dynamically
623 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400624 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400625void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400626rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
627{
Chuck Lever254f91e2014-05-28 10:32:17 -0400628 cancel_delayed_work_sync(&ep->rep_connect_worker);
629
Steve Wise72c02172015-09-21 12:24:23 -0500630 if (ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400631 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400632 rdma_destroy_qp(ia->ri_id);
633 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400634 }
635
Chuck Lever552bf222016-03-04 11:28:36 -0500636 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500637 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400638}
639
Chuck Levera9b0e382017-04-11 13:23:26 -0400640/* Re-establish a connection after a device removal event.
641 * Unlike a normal reconnection, a fresh PD and a new set
642 * of MRs and buffers is needed.
643 */
644static int
645rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
646 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
647{
Chuck Levera9b0e382017-04-11 13:23:26 -0400648 int rc, err;
649
Chuck Leverb4744e02017-12-20 16:31:29 -0500650 trace_xprtrdma_reinsert(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400651
652 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500653 if (rpcrdma_ia_open(r_xprt))
Chuck Levera9b0e382017-04-11 13:23:26 -0400654 goto out1;
655
656 rc = -ENOMEM;
657 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
658 if (err) {
659 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
660 goto out2;
661 }
662
663 rc = -ENETUNREACH;
664 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
665 if (err) {
666 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
667 goto out3;
668 }
669
Chuck Lever96cedde2017-12-14 20:57:55 -0500670 rpcrdma_mrs_create(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400671 return 0;
672
673out3:
674 rpcrdma_ep_destroy(ep, ia);
675out2:
676 rpcrdma_ia_close(ia);
677out1:
678 return rc;
679}
680
Chuck Lever18908962017-04-11 13:23:18 -0400681static int
682rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
683 struct rpcrdma_ia *ia)
684{
Chuck Lever18908962017-04-11 13:23:18 -0400685 struct rdma_cm_id *id, *old;
686 int err, rc;
687
Chuck Leverb4744e02017-12-20 16:31:29 -0500688 trace_xprtrdma_reconnect(r_xprt);
Chuck Lever18908962017-04-11 13:23:18 -0400689
690 rpcrdma_ep_disconnect(ep, ia);
691
692 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500693 id = rpcrdma_create_id(r_xprt, ia);
Chuck Lever18908962017-04-11 13:23:18 -0400694 if (IS_ERR(id))
695 goto out;
696
697 /* As long as the new ID points to the same device as the
698 * old ID, we can reuse the transport's existing PD and all
699 * previously allocated MRs. Also, the same device means
700 * the transport's previous DMA mappings are still valid.
701 *
702 * This is a sanity check only. There should be no way these
703 * point to two different devices here.
704 */
705 old = id;
706 rc = -ENETUNREACH;
707 if (ia->ri_device != id->device) {
708 pr_err("rpcrdma: can't reconnect on different device!\n");
709 goto out_destroy;
710 }
711
712 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
713 if (err) {
714 dprintk("RPC: %s: rdma_create_qp returned %d\n",
715 __func__, err);
716 goto out_destroy;
717 }
718
719 /* Atomically replace the transport's ID and QP. */
720 rc = 0;
721 old = ia->ri_id;
722 ia->ri_id = id;
723 rdma_destroy_qp(old);
724
725out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400726 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400727out:
728 return rc;
729}
730
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400731/*
732 * Connect unconnected endpoint.
733 */
734int
735rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
736{
Chuck Lever0a904872017-02-08 17:00:35 -0500737 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
738 rx_ia);
Chuck Lever0a904872017-02-08 17:00:35 -0500739 unsigned int extras;
Chuck Lever18908962017-04-11 13:23:18 -0400740 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400741
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400742retry:
Chuck Lever18908962017-04-11 13:23:18 -0400743 switch (ep->rep_connected) {
744 case 0:
Chuck Leverec62f402014-05-28 10:34:07 -0400745 dprintk("RPC: %s: connecting...\n", __func__);
746 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
747 if (rc) {
748 dprintk("RPC: %s: rdma_create_qp failed %i\n",
749 __func__, rc);
Chuck Lever18908962017-04-11 13:23:18 -0400750 rc = -ENETUNREACH;
751 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400752 }
Chuck Lever18908962017-04-11 13:23:18 -0400753 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400754 case -ENODEV:
755 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
756 if (rc)
757 goto out_noupdate;
758 break;
Chuck Lever18908962017-04-11 13:23:18 -0400759 default:
760 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
761 if (rc)
762 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400763 }
764
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400765 ep->rep_connected = 0;
766
767 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
768 if (rc) {
769 dprintk("RPC: %s: rdma_connect() failed with %i\n",
770 __func__, rc);
771 goto out;
772 }
773
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400774 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400775 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500776 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400777 goto retry;
778 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500779 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400780 }
781
Chuck Lever0a904872017-02-08 17:00:35 -0500782 dprintk("RPC: %s: connected\n", __func__);
783 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
784 if (extras)
785 rpcrdma_ep_post_extra_recv(r_xprt, extras);
786
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400787out:
788 if (rc)
789 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400790
791out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400792 return rc;
793}
794
795/*
796 * rpcrdma_ep_disconnect
797 *
798 * This is separate from destroy to facilitate the ability
799 * to reconnect without recreating the endpoint.
800 *
801 * This call is not reentrant, and must not be made in parallel
802 * on the same endpoint.
803 */
Chuck Lever282191c2014-07-29 17:25:55 -0400804void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400805rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
806{
807 int rc;
808
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400809 rc = rdma_disconnect(ia->ri_id);
Chuck Leverb4744e02017-12-20 16:31:29 -0500810 if (!rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400811 /* returns without wait if not connected */
812 wait_event_interruptible(ep->rep_connect_wait,
813 ep->rep_connected != 1);
Chuck Leverb4744e02017-12-20 16:31:29 -0500814 else
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400815 ep->rep_connected = rc;
Chuck Leverb4744e02017-12-20 16:31:29 -0500816 trace_xprtrdma_disconnect(container_of(ep, struct rpcrdma_xprt,
817 rx_ep), rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400818
819 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400820}
821
Chuck Leverae729502017-10-20 10:48:12 -0400822/* Fixed-size circular FIFO queue. This implementation is wait-free and
823 * lock-free.
824 *
825 * Consumer is the code path that posts Sends. This path dequeues a
826 * sendctx for use by a Send operation. Multiple consumer threads
827 * are serialized by the RPC transport lock, which allows only one
828 * ->send_request call at a time.
829 *
830 * Producer is the code path that handles Send completions. This path
831 * enqueues a sendctx that has been completed. Multiple producer
832 * threads are serialized by the ib_poll_cq() function.
833 */
834
835/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
836 * queue activity, and ib_drain_qp has flushed all remaining Send
837 * requests.
838 */
839static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
840{
841 unsigned long i;
842
843 for (i = 0; i <= buf->rb_sc_last; i++)
844 kfree(buf->rb_sc_ctxs[i]);
845 kfree(buf->rb_sc_ctxs);
846}
847
848static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
849{
850 struct rpcrdma_sendctx *sc;
851
852 sc = kzalloc(sizeof(*sc) +
853 ia->ri_max_send_sges * sizeof(struct ib_sge),
854 GFP_KERNEL);
855 if (!sc)
856 return NULL;
857
858 sc->sc_wr.wr_cqe = &sc->sc_cqe;
859 sc->sc_wr.sg_list = sc->sc_sges;
860 sc->sc_wr.opcode = IB_WR_SEND;
861 sc->sc_cqe.done = rpcrdma_wc_send;
862 return sc;
863}
864
865static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
866{
867 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
868 struct rpcrdma_sendctx *sc;
869 unsigned long i;
870
871 /* Maximum number of concurrent outstanding Send WRs. Capping
872 * the circular queue size stops Send Queue overflow by causing
873 * the ->send_request call to fail temporarily before too many
874 * Sends are posted.
875 */
876 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
877 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
878 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
879 if (!buf->rb_sc_ctxs)
880 return -ENOMEM;
881
882 buf->rb_sc_last = i - 1;
883 for (i = 0; i <= buf->rb_sc_last; i++) {
884 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
885 if (!sc)
886 goto out_destroy;
887
888 sc->sc_xprt = r_xprt;
889 buf->rb_sc_ctxs[i] = sc;
890 }
891
892 return 0;
893
894out_destroy:
895 rpcrdma_sendctxs_destroy(buf);
896 return -ENOMEM;
897}
898
899/* The sendctx queue is not guaranteed to have a size that is a
900 * power of two, thus the helpers in circ_buf.h cannot be used.
901 * The other option is to use modulus (%), which can be expensive.
902 */
903static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
904 unsigned long item)
905{
906 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
907}
908
909/**
910 * rpcrdma_sendctx_get_locked - Acquire a send context
911 * @buf: transport buffers from which to acquire an unused context
912 *
913 * Returns pointer to a free send completion context; or NULL if
914 * the queue is empty.
915 *
916 * Usage: Called to acquire an SGE array before preparing a Send WR.
917 *
918 * The caller serializes calls to this function (per rpcrdma_buffer),
919 * and provides an effective memory barrier that flushes the new value
920 * of rb_sc_head.
921 */
922struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_buffer *buf)
923{
924 struct rpcrdma_xprt *r_xprt;
925 struct rpcrdma_sendctx *sc;
926 unsigned long next_head;
927
928 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
929
930 if (next_head == READ_ONCE(buf->rb_sc_tail))
931 goto out_emptyq;
932
933 /* ORDER: item must be accessed _before_ head is updated */
934 sc = buf->rb_sc_ctxs[next_head];
935
936 /* Releasing the lock in the caller acts as a memory
937 * barrier that flushes rb_sc_head.
938 */
939 buf->rb_sc_head = next_head;
940
941 return sc;
942
943out_emptyq:
944 /* The queue is "empty" if there have not been enough Send
945 * completions recently. This is a sign the Send Queue is
946 * backing up. Cause the caller to pause and try again.
947 */
948 dprintk("RPC: %s: empty sendctx queue\n", __func__);
949 r_xprt = container_of(buf, struct rpcrdma_xprt, rx_buf);
950 r_xprt->rx_stats.empty_sendctx_q++;
951 return NULL;
952}
953
954/**
955 * rpcrdma_sendctx_put_locked - Release a send context
956 * @sc: send context to release
957 *
958 * Usage: Called from Send completion to return a sendctxt
959 * to the queue.
960 *
961 * The caller serializes calls to this function (per rpcrdma_buffer).
962 */
963void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
964{
965 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
966 unsigned long next_tail;
967
968 /* Unmap SGEs of previously completed by unsignaled
969 * Sends by walking up the queue until @sc is found.
970 */
971 next_tail = buf->rb_sc_tail;
972 do {
973 next_tail = rpcrdma_sendctx_next(buf, next_tail);
974
975 /* ORDER: item must be accessed _before_ tail is updated */
976 rpcrdma_unmap_sendctx(buf->rb_sc_ctxs[next_tail]);
977
978 } while (buf->rb_sc_ctxs[next_tail] != sc);
979
980 /* Paired with READ_ONCE */
981 smp_store_release(&buf->rb_sc_tail, next_tail);
982}
983
Chuck Lever505bbe62016-06-29 13:52:54 -0400984static void
985rpcrdma_mr_recovery_worker(struct work_struct *work)
986{
987 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
988 rb_recovery_worker.work);
Chuck Lever96cedde2017-12-14 20:57:55 -0500989 struct rpcrdma_mr *mr;
Chuck Lever505bbe62016-06-29 13:52:54 -0400990
991 spin_lock(&buf->rb_recovery_lock);
992 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500993 mr = rpcrdma_mr_pop(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400994 spin_unlock(&buf->rb_recovery_lock);
995
Chuck Lever1c443eff2017-12-20 16:31:21 -0500996 trace_xprtrdma_recover_mr(mr);
Chuck Lever96cedde2017-12-14 20:57:55 -0500997 mr->mr_xprt->rx_ia.ri_ops->ro_recover_mr(mr);
Chuck Lever505bbe62016-06-29 13:52:54 -0400998
999 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +08001000 }
Chuck Lever505bbe62016-06-29 13:52:54 -04001001 spin_unlock(&buf->rb_recovery_lock);
1002}
1003
1004void
Chuck Lever96cedde2017-12-14 20:57:55 -05001005rpcrdma_mr_defer_recovery(struct rpcrdma_mr *mr)
Chuck Lever505bbe62016-06-29 13:52:54 -04001006{
Chuck Lever96cedde2017-12-14 20:57:55 -05001007 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
Chuck Lever505bbe62016-06-29 13:52:54 -04001008 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1009
1010 spin_lock(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001011 rpcrdma_mr_push(mr, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001012 spin_unlock(&buf->rb_recovery_lock);
1013
1014 schedule_delayed_work(&buf->rb_recovery_worker, 0);
1015}
1016
Chuck Levere2ac2362016-06-29 13:54:00 -04001017static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001018rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001019{
1020 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1021 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1022 unsigned int count;
1023 LIST_HEAD(free);
1024 LIST_HEAD(all);
1025
Chuck Leverae741a82018-02-28 15:30:49 -05001026 for (count = 0; count < 3; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001027 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001028 int rc;
1029
Chuck Lever96cedde2017-12-14 20:57:55 -05001030 mr = kzalloc(sizeof(*mr), GFP_KERNEL);
1031 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -04001032 break;
1033
Chuck Lever96cedde2017-12-14 20:57:55 -05001034 rc = ia->ri_ops->ro_init_mr(ia, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001035 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001036 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001037 break;
1038 }
1039
Chuck Lever96cedde2017-12-14 20:57:55 -05001040 mr->mr_xprt = r_xprt;
Chuck Levere2ac2362016-06-29 13:54:00 -04001041
Chuck Lever96cedde2017-12-14 20:57:55 -05001042 list_add(&mr->mr_list, &free);
1043 list_add(&mr->mr_all, &all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001044 }
1045
Chuck Lever96cedde2017-12-14 20:57:55 -05001046 spin_lock(&buf->rb_mrlock);
1047 list_splice(&free, &buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001048 list_splice(&all, &buf->rb_all);
1049 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever96cedde2017-12-14 20:57:55 -05001050 spin_unlock(&buf->rb_mrlock);
Chuck Lever1c443eff2017-12-20 16:31:21 -05001051 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Lever9e679d52018-02-28 15:30:44 -05001052
1053 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001054}
1055
1056static void
1057rpcrdma_mr_refresh_worker(struct work_struct *work)
1058{
1059 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
1060 rb_refresh_worker.work);
1061 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1062 rx_buf);
1063
Chuck Lever96cedde2017-12-14 20:57:55 -05001064 rpcrdma_mrs_create(r_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001065}
1066
Chuck Leverf531a5d2015-10-24 17:27:43 -04001067struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -05001068rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
1069{
Chuck Leverf531a5d2015-10-24 17:27:43 -04001070 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever2dd4a012018-02-28 15:31:05 -05001071 struct rpcrdma_regbuf *rb;
Chuck Lever13924022015-01-21 11:03:52 -05001072 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -05001073
Chuck Lever85275c82015-01-21 11:04:16 -05001074 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001075 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -05001076 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -05001077
Chuck Lever2dd4a012018-02-28 15:31:05 -05001078 rb = rpcrdma_alloc_regbuf(RPCRDMA_HDRBUF_SIZE,
1079 DMA_TO_DEVICE, GFP_KERNEL);
1080 if (IS_ERR(rb)) {
1081 kfree(req);
1082 return ERR_PTR(-ENOMEM);
1083 }
1084 req->rl_rdmabuf = rb;
1085 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
1086 req->rl_buffer = buffer;
1087 INIT_LIST_HEAD(&req->rl_registered);
1088
Chuck Leverf531a5d2015-10-24 17:27:43 -04001089 spin_lock(&buffer->rb_reqslock);
1090 list_add(&req->rl_all, &buffer->rb_allreqs);
1091 spin_unlock(&buffer->rb_reqslock);
Chuck Lever13924022015-01-21 11:03:52 -05001092 return req;
Chuck Lever13924022015-01-21 11:03:52 -05001093}
1094
Chuck Leverd698c4a2017-12-14 20:56:09 -05001095/**
1096 * rpcrdma_create_rep - Allocate an rpcrdma_rep object
1097 * @r_xprt: controlling transport
1098 *
1099 * Returns 0 on success or a negative errno on failure.
1100 */
1101int
Chuck Lever13924022015-01-21 11:03:52 -05001102rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
1103{
1104 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001105 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -05001106 struct rpcrdma_rep *rep;
1107 int rc;
1108
1109 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001110 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001111 if (rep == NULL)
1112 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001113
Chuck Lever13650c22016-09-15 10:56:26 -04001114 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001115 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -05001116 if (IS_ERR(rep->rr_rdmabuf)) {
1117 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001118 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001119 }
Chuck Lever96f87782017-08-03 14:30:03 -04001120 xdr_buf_init(&rep->rr_hdrbuf, rep->rr_rdmabuf->rg_base,
1121 rdmab_length(rep->rr_rdmabuf));
Chuck Lever13924022015-01-21 11:03:52 -05001122
Chuck Lever1519e962016-09-15 10:57:49 -04001123 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001124 rep->rr_rxprt = r_xprt;
Chuck Leverd8f532d2017-10-16 15:01:30 -04001125 INIT_WORK(&rep->rr_work, rpcrdma_deferred_completion);
Chuck Lever6ea8e712016-09-15 10:56:51 -04001126 rep->rr_recv_wr.next = NULL;
1127 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1128 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1129 rep->rr_recv_wr.num_sge = 1;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001130
1131 spin_lock(&buf->rb_lock);
1132 list_add(&rep->rr_list, &buf->rb_recv_bufs);
1133 spin_unlock(&buf->rb_lock);
1134 return 0;
Chuck Lever13924022015-01-21 11:03:52 -05001135
1136out_free:
1137 kfree(rep);
1138out:
Chuck Leverd698c4a2017-12-14 20:56:09 -05001139 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1140 __func__, rc);
1141 return rc;
Chuck Lever13924022015-01-21 11:03:52 -05001142}
1143
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001144int
Chuck Leverac920d02015-01-21 11:03:44 -05001145rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001146{
Chuck Leverac920d02015-01-21 11:03:44 -05001147 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001148 int i, rc;
1149
Chuck Lever1e465fd2015-10-24 17:27:02 -04001150 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001151 buf->rb_bc_srv_max_requests = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001152 spin_lock_init(&buf->rb_mrlock);
Chuck Lever505bbe62016-06-29 13:52:54 -04001153 spin_lock_init(&buf->rb_lock);
1154 spin_lock_init(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001155 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001156 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -04001157 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001158 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1159 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001160 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
1161 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001162
Chuck Lever96cedde2017-12-14 20:57:55 -05001163 rpcrdma_mrs_create(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001164
Chuck Lever1e465fd2015-10-24 17:27:02 -04001165 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001166 INIT_LIST_HEAD(&buf->rb_allreqs);
1167 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001168 for (i = 0; i < buf->rb_max_requests; i++) {
1169 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001170
Chuck Lever13924022015-01-21 11:03:52 -05001171 req = rpcrdma_create_req(r_xprt);
1172 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001173 dprintk("RPC: %s: request buffer %d alloc"
1174 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001175 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001176 goto out;
1177 }
Chuck Levera80d66c2017-06-08 11:52:12 -04001178 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001179 }
1180
1181 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Leverd698c4a2017-12-14 20:56:09 -05001182 for (i = 0; i <= buf->rb_max_requests; i++) {
1183 rc = rpcrdma_create_rep(r_xprt);
1184 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001185 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001186 }
Chuck Lever13924022015-01-21 11:03:52 -05001187
Chuck Leverae729502017-10-20 10:48:12 -04001188 rc = rpcrdma_sendctxs_create(r_xprt);
1189 if (rc)
1190 goto out;
1191
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001192 return 0;
1193out:
1194 rpcrdma_buffer_destroy(buf);
1195 return rc;
1196}
1197
Chuck Lever1e465fd2015-10-24 17:27:02 -04001198static struct rpcrdma_req *
1199rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
1200{
1201 struct rpcrdma_req *req;
1202
1203 req = list_first_entry(&buf->rb_send_bufs,
Chuck Levera80d66c2017-06-08 11:52:12 -04001204 struct rpcrdma_req, rl_list);
Chuck Lever431af642017-06-08 11:52:20 -04001205 list_del_init(&req->rl_list);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001206 return req;
1207}
1208
1209static struct rpcrdma_rep *
1210rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1211{
1212 struct rpcrdma_rep *rep;
1213
1214 rep = list_first_entry(&buf->rb_recv_bufs,
1215 struct rpcrdma_rep, rr_list);
1216 list_del(&rep->rr_list);
1217 return rep;
1218}
1219
Chuck Lever2e845222014-07-29 17:25:38 -04001220static void
Chuck Lever13650c22016-09-15 10:56:26 -04001221rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001222{
Chuck Lever13650c22016-09-15 10:56:26 -04001223 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001224 kfree(rep);
1225}
1226
Chuck Leverf531a5d2015-10-24 17:27:43 -04001227void
Chuck Lever13650c22016-09-15 10:56:26 -04001228rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001229{
Chuck Lever13650c22016-09-15 10:56:26 -04001230 rpcrdma_free_regbuf(req->rl_recvbuf);
1231 rpcrdma_free_regbuf(req->rl_sendbuf);
1232 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001233 kfree(req);
1234}
1235
Chuck Levere2ac2362016-06-29 13:54:00 -04001236static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001237rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf)
Chuck Levere2ac2362016-06-29 13:54:00 -04001238{
1239 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1240 rx_buf);
1241 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever96cedde2017-12-14 20:57:55 -05001242 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001243 unsigned int count;
1244
1245 count = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001246 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001247 while (!list_empty(&buf->rb_all)) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001248 mr = list_entry(buf->rb_all.next, struct rpcrdma_mr, mr_all);
1249 list_del(&mr->mr_all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001250
Chuck Lever96cedde2017-12-14 20:57:55 -05001251 spin_unlock(&buf->rb_mrlock);
1252 ia->ri_ops->ro_release_mr(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001253 count++;
Chuck Lever96cedde2017-12-14 20:57:55 -05001254 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001255 }
Chuck Lever96cedde2017-12-14 20:57:55 -05001256 spin_unlock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001257 r_xprt->rx_stats.mrs_allocated = 0;
1258
1259 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1260}
1261
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001262void
1263rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1264{
Chuck Lever505bbe62016-06-29 13:52:54 -04001265 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001266 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001267
Chuck Leverae729502017-10-20 10:48:12 -04001268 rpcrdma_sendctxs_destroy(buf);
1269
Chuck Lever1e465fd2015-10-24 17:27:02 -04001270 while (!list_empty(&buf->rb_recv_bufs)) {
1271 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001272
Chuck Lever1e465fd2015-10-24 17:27:02 -04001273 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001274 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001275 }
Chuck Lever05c97462016-09-06 11:22:58 -04001276 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001277
Chuck Leverf531a5d2015-10-24 17:27:43 -04001278 spin_lock(&buf->rb_reqslock);
1279 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001280 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001281
Chuck Leverf531a5d2015-10-24 17:27:43 -04001282 req = list_first_entry(&buf->rb_allreqs,
1283 struct rpcrdma_req, rl_all);
1284 list_del(&req->rl_all);
1285
1286 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001287 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001288 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001289 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001290 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001291 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001292
Chuck Lever96cedde2017-12-14 20:57:55 -05001293 rpcrdma_mrs_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001294}
1295
Chuck Lever96cedde2017-12-14 20:57:55 -05001296/**
1297 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1298 * @r_xprt: controlling transport
1299 *
1300 * Returns an initialized rpcrdma_mr or NULL if no free
1301 * rpcrdma_mr objects are available.
1302 */
1303struct rpcrdma_mr *
1304rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001305{
Chuck Lever346aa662015-05-26 11:52:06 -04001306 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001307 struct rpcrdma_mr *mr = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001308
Chuck Lever96cedde2017-12-14 20:57:55 -05001309 spin_lock(&buf->rb_mrlock);
1310 if (!list_empty(&buf->rb_mrs))
1311 mr = rpcrdma_mr_pop(&buf->rb_mrs);
1312 spin_unlock(&buf->rb_mrlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001313
Chuck Lever96cedde2017-12-14 20:57:55 -05001314 if (!mr)
1315 goto out_nomrs;
1316 return mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001317
Chuck Lever96cedde2017-12-14 20:57:55 -05001318out_nomrs:
Chuck Lever1c443eff2017-12-20 16:31:21 -05001319 trace_xprtrdma_nomrs(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -04001320 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1321 schedule_delayed_work(&buf->rb_refresh_worker, 0);
Chuck Levere2ac2362016-06-29 13:54:00 -04001322
1323 /* Allow the reply handler and refresh worker to run */
1324 cond_resched();
1325
1326 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001327}
1328
Chuck Leverec12e472017-12-14 20:58:04 -05001329static void
1330__rpcrdma_mr_put(struct rpcrdma_buffer *buf, struct rpcrdma_mr *mr)
1331{
1332 spin_lock(&buf->rb_mrlock);
1333 rpcrdma_mr_push(mr, &buf->rb_mrs);
1334 spin_unlock(&buf->rb_mrlock);
1335}
1336
Chuck Lever96cedde2017-12-14 20:57:55 -05001337/**
1338 * rpcrdma_mr_put - Release an rpcrdma_mr object
1339 * @mr: object to release
1340 *
1341 */
Chuck Lever346aa662015-05-26 11:52:06 -04001342void
Chuck Lever96cedde2017-12-14 20:57:55 -05001343rpcrdma_mr_put(struct rpcrdma_mr *mr)
Chuck Leverc2922c02014-07-29 17:24:36 -04001344{
Chuck Leverec12e472017-12-14 20:58:04 -05001345 __rpcrdma_mr_put(&mr->mr_xprt->rx_buf, mr);
1346}
Chuck Leverc2922c02014-07-29 17:24:36 -04001347
Chuck Leverec12e472017-12-14 20:58:04 -05001348/**
1349 * rpcrdma_mr_unmap_and_put - DMA unmap an MR and release it
1350 * @mr: object to release
1351 *
1352 */
1353void
1354rpcrdma_mr_unmap_and_put(struct rpcrdma_mr *mr)
1355{
1356 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1357
Chuck Lever2937fed2017-12-20 16:31:12 -05001358 trace_xprtrdma_dma_unmap(mr);
Chuck Leverec12e472017-12-14 20:58:04 -05001359 ib_dma_unmap_sg(r_xprt->rx_ia.ri_device,
1360 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1361 __rpcrdma_mr_put(&r_xprt->rx_buf, mr);
Chuck Leverc2922c02014-07-29 17:24:36 -04001362}
1363
Chuck Lever05c97462016-09-06 11:22:58 -04001364static struct rpcrdma_rep *
1365rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1366{
1367 /* If an RPC previously completed without a reply (say, a
1368 * credential problem or a soft timeout occurs) then hold off
1369 * on supplying more Receive buffers until the number of new
1370 * pending RPCs catches up to the number of posted Receives.
1371 */
1372 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1373 return NULL;
1374
1375 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1376 return NULL;
1377 buffers->rb_recv_count++;
1378 return rpcrdma_buffer_get_rep_locked(buffers);
1379}
1380
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001381/*
1382 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001383 *
1384 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001385 */
1386struct rpcrdma_req *
1387rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1388{
1389 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001390
Chuck Levera5b027e2015-10-24 17:27:27 -04001391 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001392 if (list_empty(&buffers->rb_send_bufs))
1393 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001394 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001395 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001396 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001397 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001398
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001399 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001400
Chuck Lever1e465fd2015-10-24 17:27:02 -04001401out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001402 spin_unlock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001403 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001404}
1405
1406/*
1407 * Put request/reply buffers back into pool.
1408 * Pre-decrement counter/array index.
1409 */
1410void
1411rpcrdma_buffer_put(struct rpcrdma_req *req)
1412{
1413 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001414 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001415
Chuck Lever1e465fd2015-10-24 17:27:02 -04001416 req->rl_reply = NULL;
1417
Chuck Levera5b027e2015-10-24 17:27:27 -04001418 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001419 buffers->rb_send_count--;
Chuck Levera80d66c2017-06-08 11:52:12 -04001420 list_add_tail(&req->rl_list, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001421 if (rep) {
1422 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001423 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001424 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001425 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001426}
1427
1428/*
1429 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001430 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001431 */
1432void
1433rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1434{
1435 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001436
Chuck Levera5b027e2015-10-24 17:27:27 -04001437 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001438 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001439 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001440}
1441
1442/*
1443 * Put reply buffers back into pool when not attached to
1444 * request. This happens in error conditions.
1445 */
1446void
1447rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1448{
Chuck Leverfed171b2015-05-26 11:51:37 -04001449 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001450
Chuck Levera5b027e2015-10-24 17:27:27 -04001451 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001452 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001453 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001454 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001455}
1456
Chuck Lever9128c3e2015-01-21 11:04:00 -05001457/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001458 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001459 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001460 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001461 * @flags: GFP flags
1462 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001463 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1464 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001465 *
1466 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001467 * receiving the payload of RDMA RECV operations. During Long Calls
1468 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001469 */
1470struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001471rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1472 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001473{
1474 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001475
Chuck Lever9128c3e2015-01-21 11:04:00 -05001476 rb = kmalloc(sizeof(*rb) + size, flags);
1477 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001478 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001479
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001480 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001481 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001482 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001483
1484 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001485}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001486
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001487/**
1488 * __rpcrdma_map_regbuf - DMA-map a regbuf
1489 * @ia: controlling rpcrdma_ia
1490 * @rb: regbuf to be mapped
1491 */
1492bool
1493__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1494{
Chuck Lever91a10c52017-04-11 13:23:02 -04001495 struct ib_device *device = ia->ri_device;
1496
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001497 if (rb->rg_direction == DMA_NONE)
1498 return false;
1499
Chuck Lever91a10c52017-04-11 13:23:02 -04001500 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001501 (void *)rb->rg_base,
1502 rdmab_length(rb),
1503 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001504 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001505 return false;
1506
Chuck Lever91a10c52017-04-11 13:23:02 -04001507 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001508 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1509 return true;
1510}
1511
1512static void
1513rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1514{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001515 if (!rb)
1516 return;
1517
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001518 if (!rpcrdma_regbuf_is_mapped(rb))
1519 return;
1520
1521 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1522 rdmab_length(rb), rb->rg_direction);
1523 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001524}
1525
1526/**
1527 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001528 * @rb: regbuf to be deregistered and freed
1529 */
1530void
Chuck Lever13650c22016-09-15 10:56:26 -04001531rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001532{
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001533 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001534 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001535}
1536
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001537/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001538 * Prepost any receive buffer, then post send.
1539 *
1540 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1541 */
1542int
1543rpcrdma_ep_post(struct rpcrdma_ia *ia,
1544 struct rpcrdma_ep *ep,
1545 struct rpcrdma_req *req)
1546{
Chuck Leverae729502017-10-20 10:48:12 -04001547 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
Chuck Lever655fec62016-09-15 10:57:24 -04001548 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001549
Chuck Lever90aab602016-09-15 10:56:43 -04001550 if (req->rl_reply) {
1551 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001552 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001553 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001554 req->rl_reply = NULL;
1555 }
1556
Chuck Lever01bb35c2017-10-20 10:48:36 -04001557 if (!ep->rep_send_count ||
1558 test_bit(RPCRDMA_REQ_F_TX_RESOURCES, &req->rl_flags)) {
Chuck Leverae729502017-10-20 10:48:12 -04001559 send_wr->send_flags |= IB_SEND_SIGNALED;
1560 ep->rep_send_count = ep->rep_send_batch;
1561 } else {
1562 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1563 --ep->rep_send_count;
1564 }
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001565
Chuck Leverf2877622018-02-28 15:30:59 -05001566 rc = ia->ri_ops->ro_send(ia, req);
Chuck Leverab03eff2017-12-20 16:30:40 -05001567 trace_xprtrdma_post_send(req, rc);
1568 if (rc)
1569 return -ENOTCONN;
1570 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001571}
1572
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001573int
1574rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001575 struct rpcrdma_rep *rep)
1576{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001577 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001578 int rc;
1579
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001580 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1581 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001582 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
Chuck Leverb4a7f912017-12-20 16:30:48 -05001583 trace_xprtrdma_post_recv(rep, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001584 if (rc)
Chuck Leverb4a7f912017-12-20 16:30:48 -05001585 return -ENOTCONN;
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001586 return 0;
1587
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001588out_map:
1589 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1590 return -EIO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001591}
Chuck Lever43e95982014-07-29 17:23:34 -04001592
Chuck Leverf531a5d2015-10-24 17:27:43 -04001593/**
1594 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1595 * @r_xprt: transport associated with these backchannel resources
Chuck Lever9ab6d892018-01-03 15:38:17 -05001596 * @count: minimum number of incoming requests expected
Chuck Leverf531a5d2015-10-24 17:27:43 -04001597 *
1598 * Returns zero if all requested buffers were posted, or a negative errno.
1599 */
1600int
1601rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1602{
1603 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1604 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001605 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001606 int rc;
1607
1608 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001609 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001610 if (list_empty(&buffers->rb_recv_bufs))
1611 goto out_reqbuf;
1612 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001613 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001614
Chuck Leverb1573802016-09-15 10:56:35 -04001615 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001616 if (rc)
1617 goto out_rc;
1618 }
1619
1620 return 0;
1621
1622out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001623 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001624 trace_xprtrdma_noreps(r_xprt);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001625 return -ENOMEM;
1626
1627out_rc:
1628 rpcrdma_recv_buffer_put(rep);
1629 return rc;
1630}