blob: e6f84a6434a049e41d83092a0764668a21416d4c [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:
258 connstate = 1;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400259 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400260 goto connected;
261 case RDMA_CM_EVENT_CONNECT_ERROR:
262 connstate = -ENOTCONN;
263 goto connected;
264 case RDMA_CM_EVENT_UNREACHABLE:
265 connstate = -ENETDOWN;
266 goto connected;
267 case RDMA_CM_EVENT_REJECTED:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500268 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
269 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever0a904872017-02-08 17:00:35 -0500270 rdma_reject_msg(id, event->status));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400271 connstate = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500272 if (event->status == IB_CM_REJ_STALE_CONN)
273 connstate = -EAGAIN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400274 goto connected;
275 case RDMA_CM_EVENT_DISCONNECTED:
276 connstate = -ECONNABORTED;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400277connected:
Chuck Leverbe798f92017-10-16 15:01:39 -0400278 xprt->rx_buf.rb_credits = 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400279 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500280 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400281 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400282 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400283 default:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500284 dprintk("RPC: %s: %s:%s on %s/%s (ep 0x%p): %s\n",
285 __func__,
286 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever173b8f42017-06-08 11:53:00 -0400287 ia->ri_device->name, ia->ri_ops->ro_displayname,
288 ep, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400289 break;
290 }
291
292 return 0;
293}
294
295static struct rdma_cm_id *
Chuck Leverdd229ce2017-12-14 20:56:58 -0500296rpcrdma_create_id(struct rpcrdma_xprt *xprt, struct rpcrdma_ia *ia)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400297{
Chuck Lever109b88a2016-11-29 10:52:40 -0500298 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400299 struct rdma_cm_id *id;
300 int rc;
301
Chuck Leverb4744e02017-12-20 16:31:29 -0500302 trace_xprtrdma_conn_start(xprt);
303
Tom Talpey1a954052008-10-09 15:01:31 -0400304 init_completion(&ia->ri_done);
Chuck Leverbebd0312017-04-11 13:23:10 -0400305 init_completion(&ia->ri_remove_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400306
Guy Shapirofa201052015-10-22 15:20:10 +0300307 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
308 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400309 if (IS_ERR(id)) {
310 rc = PTR_ERR(id);
311 dprintk("RPC: %s: rdma_create_id() failed %i\n",
312 __func__, rc);
313 return id;
314 }
315
Tom Talpey5675add2008-10-09 15:01:41 -0400316 ia->ri_async_rc = -ETIMEDOUT;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500317 rc = rdma_resolve_addr(id, NULL,
318 (struct sockaddr *)&xprt->rx_xprt.addr,
319 RDMA_RESOLVE_TIMEOUT);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400320 if (rc) {
321 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
322 __func__, rc);
323 goto out;
324 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500325 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
326 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500327 trace_xprtrdma_conn_tout(xprt);
Chuck Lever109b88a2016-11-29 10:52:40 -0500328 goto out;
329 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400330
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400331 rc = ia->ri_async_rc;
332 if (rc)
333 goto out;
334
Tom Talpey5675add2008-10-09 15:01:41 -0400335 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400336 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
337 if (rc) {
338 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
339 __func__, rc);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400340 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400341 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500342 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
343 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500344 trace_xprtrdma_conn_tout(xprt);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400345 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500346 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400347 rc = ia->ri_async_rc;
348 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400349 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400350
351 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400352
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400353out:
354 rdma_destroy_id(id);
355 return ERR_PTR(rc);
356}
357
358/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400359 * Exported functions.
360 */
361
Chuck Leverfff09592017-04-11 13:22:54 -0400362/**
363 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
Chuck Leverdd229ce2017-12-14 20:56:58 -0500364 * @xprt: transport with IA to (re)initialize
Chuck Leverfff09592017-04-11 13:22:54 -0400365 *
366 * Returns 0 on success, negative errno if an appropriate
367 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400368 */
369int
Chuck Leverdd229ce2017-12-14 20:56:58 -0500370rpcrdma_ia_open(struct rpcrdma_xprt *xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400371{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400372 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400373 int rc;
374
Chuck Leverdd229ce2017-12-14 20:56:58 -0500375 ia->ri_id = rpcrdma_create_id(xprt, ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400376 if (IS_ERR(ia->ri_id)) {
377 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400378 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400379 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400380 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400381
Christoph Hellwiged082d32016-09-05 12:56:17 +0200382 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400383 if (IS_ERR(ia->ri_pd)) {
384 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400385 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400386 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400387 }
388
Chuck Leverfff09592017-04-11 13:22:54 -0400389 switch (xprt_rdma_memreg_strategy) {
Chuck Leverce5b3712017-12-14 20:57:47 -0500390 case RPCRDMA_FRWR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400391 if (frwr_is_supported(ia)) {
392 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
393 break;
394 }
395 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400396 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400397 if (fmr_is_supported(ia)) {
398 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
399 break;
400 }
401 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400402 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400403 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
404 ia->ri_device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400405 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400406 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400407 }
408
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400409 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500410
Chuck Leverfff09592017-04-11 13:22:54 -0400411out_err:
412 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400413 return rc;
414}
415
Chuck Leverfff09592017-04-11 13:22:54 -0400416/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400417 * rpcrdma_ia_remove - Handle device driver unload
418 * @ia: interface adapter being removed
419 *
420 * Divest transport H/W resources associated with this adapter,
421 * but allow it to be restored later.
422 */
423void
424rpcrdma_ia_remove(struct rpcrdma_ia *ia)
425{
426 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
427 rx_ia);
428 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
429 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
430 struct rpcrdma_req *req;
431 struct rpcrdma_rep *rep;
432
433 cancel_delayed_work_sync(&buf->rb_refresh_worker);
434
435 /* This is similar to rpcrdma_ep_destroy, but:
436 * - Don't cancel the connect worker.
437 * - Don't call rpcrdma_ep_disconnect, which waits
438 * for another conn upcall, which will deadlock.
439 * - rdma_disconnect is unneeded, the underlying
440 * connection is already gone.
441 */
442 if (ia->ri_id->qp) {
443 ib_drain_qp(ia->ri_id->qp);
444 rdma_destroy_qp(ia->ri_id);
445 ia->ri_id->qp = NULL;
446 }
447 ib_free_cq(ep->rep_attr.recv_cq);
448 ib_free_cq(ep->rep_attr.send_cq);
449
450 /* The ULP is responsible for ensuring all DMA
451 * mappings and MRs are gone.
452 */
453 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
454 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
455 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
456 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
457 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
458 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
459 }
Chuck Lever96cedde2017-12-14 20:57:55 -0500460 rpcrdma_mrs_destroy(buf);
Chuck Leverbebd0312017-04-11 13:23:10 -0400461
462 /* Allow waiters to continue */
463 complete(&ia->ri_remove_done);
Chuck Leverb4744e02017-12-20 16:31:29 -0500464
465 trace_xprtrdma_remove(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400466}
467
468/**
Chuck Leverfff09592017-04-11 13:22:54 -0400469 * rpcrdma_ia_close - Clean up/close an IA.
470 * @ia: interface adapter to close
471 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400472 */
473void
474rpcrdma_ia_close(struct rpcrdma_ia *ia)
475{
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400476 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
477 if (ia->ri_id->qp)
478 rdma_destroy_qp(ia->ri_id);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400479 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400480 }
Chuck Leverfff09592017-04-11 13:22:54 -0400481 ia->ri_id = NULL;
482 ia->ri_device = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400483
484 /* If the pd is still busy, xprtrdma missed freeing a resource */
485 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600486 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400487 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400488}
489
490/*
491 * Create unconnected endpoint.
492 */
493int
494rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
Chuck Lever16f906d2017-02-08 17:00:10 -0500495 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400496{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400497 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Lever16f906d2017-02-08 17:00:10 -0500498 unsigned int max_qp_wr, max_sge;
Chuck Leverfc664482014-05-28 10:33:25 -0400499 struct ib_cq *sendcq, *recvcq;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500500 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400501
Chuck Levereed50872017-03-11 15:52:47 -0500502 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
503 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500504 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
505 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400506 return -ENOMEM;
507 }
Chuck Lever1179e2c2018-01-31 12:34:05 -0500508 ia->ri_max_send_sges = max_sge;
Chuck Leverb3221d62015-08-03 13:03:39 -0400509
Or Gerlitze3e45b12015-12-18 10:59:48 +0200510 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400511 dprintk("RPC: %s: insufficient wqe's available\n",
512 __func__);
513 return -ENOMEM;
514 }
Chuck Lever550d7502016-05-02 14:41:47 -0400515 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
Chuck Lever124fa172015-10-24 17:27:51 -0400516
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400517 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400518 if (cdata->max_requests > max_qp_wr)
519 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400520
521 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
522 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400523 ep->rep_attr.srq = NULL;
524 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400525 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400526 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
Chuck Lever3968cb52015-03-30 14:35:26 -0400527 rc = ia->ri_ops->ro_open(ia, ep, cdata);
528 if (rc)
529 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400530 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400531 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400532 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
Chuck Lever16f906d2017-02-08 17:00:10 -0500533 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400534 ep->rep_attr.cap.max_recv_sge = 1;
535 ep->rep_attr.cap.max_inline_data = 0;
536 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
537 ep->rep_attr.qp_type = IB_QPT_RC;
538 ep->rep_attr.port_num = ~0;
539
540 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
541 "iovs: send %d recv %d\n",
542 __func__,
543 ep->rep_attr.cap.max_send_wr,
544 ep->rep_attr.cap.max_recv_wr,
545 ep->rep_attr.cap.max_send_sge,
546 ep->rep_attr.cap.max_recv_sge);
547
548 /* set trigger for requesting send completion */
Chuck Leverae729502017-10-20 10:48:12 -0400549 ep->rep_send_batch = min_t(unsigned int, RPCRDMA_MAX_SEND_BATCH,
550 cdata->max_requests >> 2);
551 ep->rep_send_count = ep->rep_send_batch;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400552 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400553 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400554
Chuck Lever2fa8f882016-03-04 11:28:53 -0500555 sendcq = ib_alloc_cq(ia->ri_device, NULL,
556 ep->rep_attr.cap.max_send_wr + 1,
Chuck Levera4699f52017-10-30 16:21:49 -0400557 1, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400558 if (IS_ERR(sendcq)) {
559 rc = PTR_ERR(sendcq);
560 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400561 __func__, rc);
562 goto out1;
563 }
564
Chuck Lever552bf222016-03-04 11:28:36 -0500565 recvcq = ib_alloc_cq(ia->ri_device, NULL,
566 ep->rep_attr.cap.max_recv_wr + 1,
Chuck Leverd8f532d2017-10-16 15:01:30 -0400567 0, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400568 if (IS_ERR(recvcq)) {
569 rc = PTR_ERR(recvcq);
570 dprintk("RPC: %s: failed to create recv CQ: %i\n",
571 __func__, rc);
572 goto out2;
573 }
574
Chuck Leverfc664482014-05-28 10:33:25 -0400575 ep->rep_attr.send_cq = sendcq;
576 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400577
578 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400579 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400580
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400581 /* Prepare RDMA-CM private message */
582 pmsg->cp_magic = rpcrdma_cmp_magic;
583 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400584 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400585 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
586 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
587 ep->rep_remote_cma.private_data = pmsg;
588 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400589
590 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400591 ep->rep_remote_cma.initiator_depth = 0;
Or Gerlitze3e45b12015-12-18 10:59:48 +0200592 if (ia->ri_device->attrs.max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400593 ep->rep_remote_cma.responder_resources = 32;
594 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500595 ep->rep_remote_cma.responder_resources =
Or Gerlitze3e45b12015-12-18 10:59:48 +0200596 ia->ri_device->attrs.max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400597
Chuck Leverb2dde942016-05-02 14:43:03 -0400598 /* Limit transport retries so client can detect server
599 * GID changes quickly. RPC layer handles re-establishing
600 * transport connection and retransmission.
601 */
602 ep->rep_remote_cma.retry_count = 6;
603
604 /* RPC-over-RDMA handles its own flow control. In addition,
605 * make all RNR NAKs visible so we know that RPC-over-RDMA
606 * flow control is working correctly (no NAKs should be seen).
607 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400608 ep->rep_remote_cma.flow_control = 0;
609 ep->rep_remote_cma.rnr_retry_count = 0;
610
611 return 0;
612
613out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500614 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400615out1:
616 return rc;
617}
618
619/*
620 * rpcrdma_ep_destroy
621 *
622 * Disconnect and destroy endpoint. After this, the only
623 * valid operations on the ep are to free it (if dynamically
624 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400625 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400626void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400627rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
628{
Chuck Lever254f91e2014-05-28 10:32:17 -0400629 cancel_delayed_work_sync(&ep->rep_connect_worker);
630
Steve Wise72c02172015-09-21 12:24:23 -0500631 if (ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400632 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400633 rdma_destroy_qp(ia->ri_id);
634 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400635 }
636
Chuck Lever552bf222016-03-04 11:28:36 -0500637 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500638 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400639}
640
Chuck Levera9b0e382017-04-11 13:23:26 -0400641/* Re-establish a connection after a device removal event.
642 * Unlike a normal reconnection, a fresh PD and a new set
643 * of MRs and buffers is needed.
644 */
645static int
646rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
647 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
648{
Chuck Levera9b0e382017-04-11 13:23:26 -0400649 int rc, err;
650
Chuck Leverb4744e02017-12-20 16:31:29 -0500651 trace_xprtrdma_reinsert(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400652
653 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500654 if (rpcrdma_ia_open(r_xprt))
Chuck Levera9b0e382017-04-11 13:23:26 -0400655 goto out1;
656
657 rc = -ENOMEM;
658 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
659 if (err) {
660 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
661 goto out2;
662 }
663
664 rc = -ENETUNREACH;
665 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
666 if (err) {
667 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
668 goto out3;
669 }
670
Chuck Lever96cedde2017-12-14 20:57:55 -0500671 rpcrdma_mrs_create(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400672 return 0;
673
674out3:
675 rpcrdma_ep_destroy(ep, ia);
676out2:
677 rpcrdma_ia_close(ia);
678out1:
679 return rc;
680}
681
Chuck Lever18908962017-04-11 13:23:18 -0400682static int
683rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
684 struct rpcrdma_ia *ia)
685{
Chuck Lever18908962017-04-11 13:23:18 -0400686 struct rdma_cm_id *id, *old;
687 int err, rc;
688
Chuck Leverb4744e02017-12-20 16:31:29 -0500689 trace_xprtrdma_reconnect(r_xprt);
Chuck Lever18908962017-04-11 13:23:18 -0400690
691 rpcrdma_ep_disconnect(ep, ia);
692
693 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500694 id = rpcrdma_create_id(r_xprt, ia);
Chuck Lever18908962017-04-11 13:23:18 -0400695 if (IS_ERR(id))
696 goto out;
697
698 /* As long as the new ID points to the same device as the
699 * old ID, we can reuse the transport's existing PD and all
700 * previously allocated MRs. Also, the same device means
701 * the transport's previous DMA mappings are still valid.
702 *
703 * This is a sanity check only. There should be no way these
704 * point to two different devices here.
705 */
706 old = id;
707 rc = -ENETUNREACH;
708 if (ia->ri_device != id->device) {
709 pr_err("rpcrdma: can't reconnect on different device!\n");
710 goto out_destroy;
711 }
712
713 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
714 if (err) {
715 dprintk("RPC: %s: rdma_create_qp returned %d\n",
716 __func__, err);
717 goto out_destroy;
718 }
719
720 /* Atomically replace the transport's ID and QP. */
721 rc = 0;
722 old = ia->ri_id;
723 ia->ri_id = id;
724 rdma_destroy_qp(old);
725
726out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400727 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400728out:
729 return rc;
730}
731
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732/*
733 * Connect unconnected endpoint.
734 */
735int
736rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
737{
Chuck Lever0a904872017-02-08 17:00:35 -0500738 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
739 rx_ia);
Chuck Lever0a904872017-02-08 17:00:35 -0500740 unsigned int extras;
Chuck Lever18908962017-04-11 13:23:18 -0400741 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400742
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400743retry:
Chuck Lever18908962017-04-11 13:23:18 -0400744 switch (ep->rep_connected) {
745 case 0:
Chuck Leverec62f402014-05-28 10:34:07 -0400746 dprintk("RPC: %s: connecting...\n", __func__);
747 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
748 if (rc) {
749 dprintk("RPC: %s: rdma_create_qp failed %i\n",
750 __func__, rc);
Chuck Lever18908962017-04-11 13:23:18 -0400751 rc = -ENETUNREACH;
752 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400753 }
Chuck Lever18908962017-04-11 13:23:18 -0400754 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400755 case -ENODEV:
756 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
757 if (rc)
758 goto out_noupdate;
759 break;
Chuck Lever18908962017-04-11 13:23:18 -0400760 default:
761 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
762 if (rc)
763 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400764 }
765
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400766 ep->rep_connected = 0;
767
768 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
769 if (rc) {
770 dprintk("RPC: %s: rdma_connect() failed with %i\n",
771 __func__, rc);
772 goto out;
773 }
774
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400775 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400776 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500777 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400778 goto retry;
779 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500780 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400781 }
782
Chuck Lever0a904872017-02-08 17:00:35 -0500783 dprintk("RPC: %s: connected\n", __func__);
784 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
785 if (extras)
786 rpcrdma_ep_post_extra_recv(r_xprt, extras);
787
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400788out:
789 if (rc)
790 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400791
792out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400793 return rc;
794}
795
796/*
797 * rpcrdma_ep_disconnect
798 *
799 * This is separate from destroy to facilitate the ability
800 * to reconnect without recreating the endpoint.
801 *
802 * This call is not reentrant, and must not be made in parallel
803 * on the same endpoint.
804 */
Chuck Lever282191c2014-07-29 17:25:55 -0400805void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400806rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
807{
808 int rc;
809
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400810 rc = rdma_disconnect(ia->ri_id);
Chuck Leverb4744e02017-12-20 16:31:29 -0500811 if (!rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400812 /* returns without wait if not connected */
813 wait_event_interruptible(ep->rep_connect_wait,
814 ep->rep_connected != 1);
Chuck Leverb4744e02017-12-20 16:31:29 -0500815 else
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400816 ep->rep_connected = rc;
Chuck Leverb4744e02017-12-20 16:31:29 -0500817 trace_xprtrdma_disconnect(container_of(ep, struct rpcrdma_xprt,
818 rx_ep), rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400819
820 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400821}
822
Chuck Leverae729502017-10-20 10:48:12 -0400823/* Fixed-size circular FIFO queue. This implementation is wait-free and
824 * lock-free.
825 *
826 * Consumer is the code path that posts Sends. This path dequeues a
827 * sendctx for use by a Send operation. Multiple consumer threads
828 * are serialized by the RPC transport lock, which allows only one
829 * ->send_request call at a time.
830 *
831 * Producer is the code path that handles Send completions. This path
832 * enqueues a sendctx that has been completed. Multiple producer
833 * threads are serialized by the ib_poll_cq() function.
834 */
835
836/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
837 * queue activity, and ib_drain_qp has flushed all remaining Send
838 * requests.
839 */
840static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
841{
842 unsigned long i;
843
844 for (i = 0; i <= buf->rb_sc_last; i++)
845 kfree(buf->rb_sc_ctxs[i]);
846 kfree(buf->rb_sc_ctxs);
847}
848
849static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
850{
851 struct rpcrdma_sendctx *sc;
852
853 sc = kzalloc(sizeof(*sc) +
854 ia->ri_max_send_sges * sizeof(struct ib_sge),
855 GFP_KERNEL);
856 if (!sc)
857 return NULL;
858
859 sc->sc_wr.wr_cqe = &sc->sc_cqe;
860 sc->sc_wr.sg_list = sc->sc_sges;
861 sc->sc_wr.opcode = IB_WR_SEND;
862 sc->sc_cqe.done = rpcrdma_wc_send;
863 return sc;
864}
865
866static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
867{
868 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
869 struct rpcrdma_sendctx *sc;
870 unsigned long i;
871
872 /* Maximum number of concurrent outstanding Send WRs. Capping
873 * the circular queue size stops Send Queue overflow by causing
874 * the ->send_request call to fail temporarily before too many
875 * Sends are posted.
876 */
877 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
878 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
879 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
880 if (!buf->rb_sc_ctxs)
881 return -ENOMEM;
882
883 buf->rb_sc_last = i - 1;
884 for (i = 0; i <= buf->rb_sc_last; i++) {
885 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
886 if (!sc)
887 goto out_destroy;
888
889 sc->sc_xprt = r_xprt;
890 buf->rb_sc_ctxs[i] = sc;
891 }
892
893 return 0;
894
895out_destroy:
896 rpcrdma_sendctxs_destroy(buf);
897 return -ENOMEM;
898}
899
900/* The sendctx queue is not guaranteed to have a size that is a
901 * power of two, thus the helpers in circ_buf.h cannot be used.
902 * The other option is to use modulus (%), which can be expensive.
903 */
904static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
905 unsigned long item)
906{
907 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
908}
909
910/**
911 * rpcrdma_sendctx_get_locked - Acquire a send context
912 * @buf: transport buffers from which to acquire an unused context
913 *
914 * Returns pointer to a free send completion context; or NULL if
915 * the queue is empty.
916 *
917 * Usage: Called to acquire an SGE array before preparing a Send WR.
918 *
919 * The caller serializes calls to this function (per rpcrdma_buffer),
920 * and provides an effective memory barrier that flushes the new value
921 * of rb_sc_head.
922 */
923struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_buffer *buf)
924{
925 struct rpcrdma_xprt *r_xprt;
926 struct rpcrdma_sendctx *sc;
927 unsigned long next_head;
928
929 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
930
931 if (next_head == READ_ONCE(buf->rb_sc_tail))
932 goto out_emptyq;
933
934 /* ORDER: item must be accessed _before_ head is updated */
935 sc = buf->rb_sc_ctxs[next_head];
936
937 /* Releasing the lock in the caller acts as a memory
938 * barrier that flushes rb_sc_head.
939 */
940 buf->rb_sc_head = next_head;
941
942 return sc;
943
944out_emptyq:
945 /* The queue is "empty" if there have not been enough Send
946 * completions recently. This is a sign the Send Queue is
947 * backing up. Cause the caller to pause and try again.
948 */
949 dprintk("RPC: %s: empty sendctx queue\n", __func__);
950 r_xprt = container_of(buf, struct rpcrdma_xprt, rx_buf);
951 r_xprt->rx_stats.empty_sendctx_q++;
952 return NULL;
953}
954
955/**
956 * rpcrdma_sendctx_put_locked - Release a send context
957 * @sc: send context to release
958 *
959 * Usage: Called from Send completion to return a sendctxt
960 * to the queue.
961 *
962 * The caller serializes calls to this function (per rpcrdma_buffer).
963 */
964void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
965{
966 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
967 unsigned long next_tail;
968
969 /* Unmap SGEs of previously completed by unsignaled
970 * Sends by walking up the queue until @sc is found.
971 */
972 next_tail = buf->rb_sc_tail;
973 do {
974 next_tail = rpcrdma_sendctx_next(buf, next_tail);
975
976 /* ORDER: item must be accessed _before_ tail is updated */
977 rpcrdma_unmap_sendctx(buf->rb_sc_ctxs[next_tail]);
978
979 } while (buf->rb_sc_ctxs[next_tail] != sc);
980
981 /* Paired with READ_ONCE */
982 smp_store_release(&buf->rb_sc_tail, next_tail);
983}
984
Chuck Lever505bbe62016-06-29 13:52:54 -0400985static void
986rpcrdma_mr_recovery_worker(struct work_struct *work)
987{
988 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
989 rb_recovery_worker.work);
Chuck Lever96cedde2017-12-14 20:57:55 -0500990 struct rpcrdma_mr *mr;
Chuck Lever505bbe62016-06-29 13:52:54 -0400991
992 spin_lock(&buf->rb_recovery_lock);
993 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500994 mr = rpcrdma_mr_pop(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400995 spin_unlock(&buf->rb_recovery_lock);
996
Chuck Lever1c443eff2017-12-20 16:31:21 -0500997 trace_xprtrdma_recover_mr(mr);
Chuck Lever96cedde2017-12-14 20:57:55 -0500998 mr->mr_xprt->rx_ia.ri_ops->ro_recover_mr(mr);
Chuck Lever505bbe62016-06-29 13:52:54 -0400999
1000 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +08001001 }
Chuck Lever505bbe62016-06-29 13:52:54 -04001002 spin_unlock(&buf->rb_recovery_lock);
1003}
1004
1005void
Chuck Lever96cedde2017-12-14 20:57:55 -05001006rpcrdma_mr_defer_recovery(struct rpcrdma_mr *mr)
Chuck Lever505bbe62016-06-29 13:52:54 -04001007{
Chuck Lever96cedde2017-12-14 20:57:55 -05001008 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
Chuck Lever505bbe62016-06-29 13:52:54 -04001009 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1010
1011 spin_lock(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001012 rpcrdma_mr_push(mr, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001013 spin_unlock(&buf->rb_recovery_lock);
1014
1015 schedule_delayed_work(&buf->rb_recovery_worker, 0);
1016}
1017
Chuck Levere2ac2362016-06-29 13:54:00 -04001018static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001019rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001020{
1021 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1022 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1023 unsigned int count;
1024 LIST_HEAD(free);
1025 LIST_HEAD(all);
1026
1027 for (count = 0; count < 32; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001028 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001029 int rc;
1030
Chuck Lever96cedde2017-12-14 20:57:55 -05001031 mr = kzalloc(sizeof(*mr), GFP_KERNEL);
1032 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -04001033 break;
1034
Chuck Lever96cedde2017-12-14 20:57:55 -05001035 rc = ia->ri_ops->ro_init_mr(ia, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001036 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001037 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001038 break;
1039 }
1040
Chuck Lever96cedde2017-12-14 20:57:55 -05001041 mr->mr_xprt = r_xprt;
Chuck Levere2ac2362016-06-29 13:54:00 -04001042
Chuck Lever96cedde2017-12-14 20:57:55 -05001043 list_add(&mr->mr_list, &free);
1044 list_add(&mr->mr_all, &all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001045 }
1046
Chuck Lever96cedde2017-12-14 20:57:55 -05001047 spin_lock(&buf->rb_mrlock);
1048 list_splice(&free, &buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001049 list_splice(&all, &buf->rb_all);
1050 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever96cedde2017-12-14 20:57:55 -05001051 spin_unlock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001052
Chuck Lever1c443eff2017-12-20 16:31:21 -05001053 trace_xprtrdma_createmrs(r_xprt, count);
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 Lever13924022015-01-21 11:03:52 -05001071 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -05001072
Chuck Lever85275c82015-01-21 11:04:16 -05001073 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001074 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -05001075 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -05001076
Chuck Leverf531a5d2015-10-24 17:27:43 -04001077 spin_lock(&buffer->rb_reqslock);
1078 list_add(&req->rl_all, &buffer->rb_allreqs);
1079 spin_unlock(&buffer->rb_reqslock);
Chuck Lever13924022015-01-21 11:03:52 -05001080 req->rl_buffer = &r_xprt->rx_buf;
Chuck Lever9d6b0402016-06-29 13:54:16 -04001081 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever13924022015-01-21 11:03:52 -05001082 return req;
Chuck Lever13924022015-01-21 11:03:52 -05001083}
1084
Chuck Leverd698c4a2017-12-14 20:56:09 -05001085/**
1086 * rpcrdma_create_rep - Allocate an rpcrdma_rep object
1087 * @r_xprt: controlling transport
1088 *
1089 * Returns 0 on success or a negative errno on failure.
1090 */
1091int
Chuck Lever13924022015-01-21 11:03:52 -05001092rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
1093{
1094 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001095 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -05001096 struct rpcrdma_rep *rep;
1097 int rc;
1098
1099 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001100 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001101 if (rep == NULL)
1102 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001103
Chuck Lever13650c22016-09-15 10:56:26 -04001104 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001105 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -05001106 if (IS_ERR(rep->rr_rdmabuf)) {
1107 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001108 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001109 }
Chuck Lever96f87782017-08-03 14:30:03 -04001110 xdr_buf_init(&rep->rr_hdrbuf, rep->rr_rdmabuf->rg_base,
1111 rdmab_length(rep->rr_rdmabuf));
Chuck Lever13924022015-01-21 11:03:52 -05001112
Chuck Lever1519e962016-09-15 10:57:49 -04001113 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001114 rep->rr_rxprt = r_xprt;
Chuck Leverd8f532d2017-10-16 15:01:30 -04001115 INIT_WORK(&rep->rr_work, rpcrdma_deferred_completion);
Chuck Lever6ea8e712016-09-15 10:56:51 -04001116 rep->rr_recv_wr.next = NULL;
1117 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1118 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1119 rep->rr_recv_wr.num_sge = 1;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001120
1121 spin_lock(&buf->rb_lock);
1122 list_add(&rep->rr_list, &buf->rb_recv_bufs);
1123 spin_unlock(&buf->rb_lock);
1124 return 0;
Chuck Lever13924022015-01-21 11:03:52 -05001125
1126out_free:
1127 kfree(rep);
1128out:
Chuck Leverd698c4a2017-12-14 20:56:09 -05001129 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1130 __func__, rc);
1131 return rc;
Chuck Lever13924022015-01-21 11:03:52 -05001132}
1133
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001134int
Chuck Leverac920d02015-01-21 11:03:44 -05001135rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001136{
Chuck Leverac920d02015-01-21 11:03:44 -05001137 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001138 int i, rc;
1139
Chuck Lever1e465fd2015-10-24 17:27:02 -04001140 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001141 buf->rb_bc_srv_max_requests = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001142 spin_lock_init(&buf->rb_mrlock);
Chuck Lever505bbe62016-06-29 13:52:54 -04001143 spin_lock_init(&buf->rb_lock);
1144 spin_lock_init(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001145 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001146 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -04001147 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001148 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1149 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001150 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
1151 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001152
Chuck Lever96cedde2017-12-14 20:57:55 -05001153 rpcrdma_mrs_create(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001154
Chuck Lever1e465fd2015-10-24 17:27:02 -04001155 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001156 INIT_LIST_HEAD(&buf->rb_allreqs);
1157 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001158 for (i = 0; i < buf->rb_max_requests; i++) {
1159 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001160
Chuck Lever13924022015-01-21 11:03:52 -05001161 req = rpcrdma_create_req(r_xprt);
1162 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001163 dprintk("RPC: %s: request buffer %d alloc"
1164 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001165 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001166 goto out;
1167 }
Chuck Levera80d66c2017-06-08 11:52:12 -04001168 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001169 }
1170
1171 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Leverd698c4a2017-12-14 20:56:09 -05001172 for (i = 0; i <= buf->rb_max_requests; i++) {
1173 rc = rpcrdma_create_rep(r_xprt);
1174 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001175 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001176 }
Chuck Lever13924022015-01-21 11:03:52 -05001177
Chuck Leverae729502017-10-20 10:48:12 -04001178 rc = rpcrdma_sendctxs_create(r_xprt);
1179 if (rc)
1180 goto out;
1181
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001182 return 0;
1183out:
1184 rpcrdma_buffer_destroy(buf);
1185 return rc;
1186}
1187
Chuck Lever1e465fd2015-10-24 17:27:02 -04001188static struct rpcrdma_req *
1189rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
1190{
1191 struct rpcrdma_req *req;
1192
1193 req = list_first_entry(&buf->rb_send_bufs,
Chuck Levera80d66c2017-06-08 11:52:12 -04001194 struct rpcrdma_req, rl_list);
Chuck Lever431af642017-06-08 11:52:20 -04001195 list_del_init(&req->rl_list);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001196 return req;
1197}
1198
1199static struct rpcrdma_rep *
1200rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1201{
1202 struct rpcrdma_rep *rep;
1203
1204 rep = list_first_entry(&buf->rb_recv_bufs,
1205 struct rpcrdma_rep, rr_list);
1206 list_del(&rep->rr_list);
1207 return rep;
1208}
1209
Chuck Lever2e845222014-07-29 17:25:38 -04001210static void
Chuck Lever13650c22016-09-15 10:56:26 -04001211rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001212{
Chuck Lever13650c22016-09-15 10:56:26 -04001213 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001214 kfree(rep);
1215}
1216
Chuck Leverf531a5d2015-10-24 17:27:43 -04001217void
Chuck Lever13650c22016-09-15 10:56:26 -04001218rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001219{
Chuck Lever13650c22016-09-15 10:56:26 -04001220 rpcrdma_free_regbuf(req->rl_recvbuf);
1221 rpcrdma_free_regbuf(req->rl_sendbuf);
1222 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001223 kfree(req);
1224}
1225
Chuck Levere2ac2362016-06-29 13:54:00 -04001226static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001227rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf)
Chuck Levere2ac2362016-06-29 13:54:00 -04001228{
1229 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1230 rx_buf);
1231 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever96cedde2017-12-14 20:57:55 -05001232 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001233 unsigned int count;
1234
1235 count = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001236 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001237 while (!list_empty(&buf->rb_all)) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001238 mr = list_entry(buf->rb_all.next, struct rpcrdma_mr, mr_all);
1239 list_del(&mr->mr_all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001240
Chuck Lever96cedde2017-12-14 20:57:55 -05001241 spin_unlock(&buf->rb_mrlock);
1242 ia->ri_ops->ro_release_mr(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001243 count++;
Chuck Lever96cedde2017-12-14 20:57:55 -05001244 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001245 }
Chuck Lever96cedde2017-12-14 20:57:55 -05001246 spin_unlock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001247 r_xprt->rx_stats.mrs_allocated = 0;
1248
1249 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1250}
1251
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001252void
1253rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1254{
Chuck Lever505bbe62016-06-29 13:52:54 -04001255 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001256 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001257
Chuck Leverae729502017-10-20 10:48:12 -04001258 rpcrdma_sendctxs_destroy(buf);
1259
Chuck Lever1e465fd2015-10-24 17:27:02 -04001260 while (!list_empty(&buf->rb_recv_bufs)) {
1261 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001262
Chuck Lever1e465fd2015-10-24 17:27:02 -04001263 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001264 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001265 }
Chuck Lever05c97462016-09-06 11:22:58 -04001266 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001267
Chuck Leverf531a5d2015-10-24 17:27:43 -04001268 spin_lock(&buf->rb_reqslock);
1269 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001270 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001271
Chuck Leverf531a5d2015-10-24 17:27:43 -04001272 req = list_first_entry(&buf->rb_allreqs,
1273 struct rpcrdma_req, rl_all);
1274 list_del(&req->rl_all);
1275
1276 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001277 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001278 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001279 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001280 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001281 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001282
Chuck Lever96cedde2017-12-14 20:57:55 -05001283 rpcrdma_mrs_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001284}
1285
Chuck Lever96cedde2017-12-14 20:57:55 -05001286/**
1287 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1288 * @r_xprt: controlling transport
1289 *
1290 * Returns an initialized rpcrdma_mr or NULL if no free
1291 * rpcrdma_mr objects are available.
1292 */
1293struct rpcrdma_mr *
1294rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001295{
Chuck Lever346aa662015-05-26 11:52:06 -04001296 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001297 struct rpcrdma_mr *mr = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001298
Chuck Lever96cedde2017-12-14 20:57:55 -05001299 spin_lock(&buf->rb_mrlock);
1300 if (!list_empty(&buf->rb_mrs))
1301 mr = rpcrdma_mr_pop(&buf->rb_mrs);
1302 spin_unlock(&buf->rb_mrlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001303
Chuck Lever96cedde2017-12-14 20:57:55 -05001304 if (!mr)
1305 goto out_nomrs;
1306 return mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001307
Chuck Lever96cedde2017-12-14 20:57:55 -05001308out_nomrs:
Chuck Lever1c443eff2017-12-20 16:31:21 -05001309 trace_xprtrdma_nomrs(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -04001310 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1311 schedule_delayed_work(&buf->rb_refresh_worker, 0);
Chuck Levere2ac2362016-06-29 13:54:00 -04001312
1313 /* Allow the reply handler and refresh worker to run */
1314 cond_resched();
1315
1316 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001317}
1318
Chuck Leverec12e472017-12-14 20:58:04 -05001319static void
1320__rpcrdma_mr_put(struct rpcrdma_buffer *buf, struct rpcrdma_mr *mr)
1321{
1322 spin_lock(&buf->rb_mrlock);
1323 rpcrdma_mr_push(mr, &buf->rb_mrs);
1324 spin_unlock(&buf->rb_mrlock);
1325}
1326
Chuck Lever96cedde2017-12-14 20:57:55 -05001327/**
1328 * rpcrdma_mr_put - Release an rpcrdma_mr object
1329 * @mr: object to release
1330 *
1331 */
Chuck Lever346aa662015-05-26 11:52:06 -04001332void
Chuck Lever96cedde2017-12-14 20:57:55 -05001333rpcrdma_mr_put(struct rpcrdma_mr *mr)
Chuck Leverc2922c02014-07-29 17:24:36 -04001334{
Chuck Leverec12e472017-12-14 20:58:04 -05001335 __rpcrdma_mr_put(&mr->mr_xprt->rx_buf, mr);
1336}
Chuck Leverc2922c02014-07-29 17:24:36 -04001337
Chuck Leverec12e472017-12-14 20:58:04 -05001338/**
1339 * rpcrdma_mr_unmap_and_put - DMA unmap an MR and release it
1340 * @mr: object to release
1341 *
1342 */
1343void
1344rpcrdma_mr_unmap_and_put(struct rpcrdma_mr *mr)
1345{
1346 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1347
Chuck Lever2937fed2017-12-20 16:31:12 -05001348 trace_xprtrdma_dma_unmap(mr);
Chuck Leverec12e472017-12-14 20:58:04 -05001349 ib_dma_unmap_sg(r_xprt->rx_ia.ri_device,
1350 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1351 __rpcrdma_mr_put(&r_xprt->rx_buf, mr);
Chuck Leverc2922c02014-07-29 17:24:36 -04001352}
1353
Chuck Lever05c97462016-09-06 11:22:58 -04001354static struct rpcrdma_rep *
1355rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1356{
1357 /* If an RPC previously completed without a reply (say, a
1358 * credential problem or a soft timeout occurs) then hold off
1359 * on supplying more Receive buffers until the number of new
1360 * pending RPCs catches up to the number of posted Receives.
1361 */
1362 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1363 return NULL;
1364
1365 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1366 return NULL;
1367 buffers->rb_recv_count++;
1368 return rpcrdma_buffer_get_rep_locked(buffers);
1369}
1370
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001371/*
1372 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001373 *
1374 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001375 */
1376struct rpcrdma_req *
1377rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1378{
1379 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001380
Chuck Levera5b027e2015-10-24 17:27:27 -04001381 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001382 if (list_empty(&buffers->rb_send_bufs))
1383 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001384 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001385 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001386 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001387 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001388
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001389 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001390
Chuck Lever1e465fd2015-10-24 17:27:02 -04001391out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001392 spin_unlock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001393 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001394}
1395
1396/*
1397 * Put request/reply buffers back into pool.
1398 * Pre-decrement counter/array index.
1399 */
1400void
1401rpcrdma_buffer_put(struct rpcrdma_req *req)
1402{
1403 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001404 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001405
Chuck Lever1e465fd2015-10-24 17:27:02 -04001406 req->rl_reply = NULL;
1407
Chuck Levera5b027e2015-10-24 17:27:27 -04001408 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001409 buffers->rb_send_count--;
Chuck Levera80d66c2017-06-08 11:52:12 -04001410 list_add_tail(&req->rl_list, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001411 if (rep) {
1412 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001413 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001414 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001415 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001416}
1417
1418/*
1419 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001420 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001421 */
1422void
1423rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1424{
1425 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001426
Chuck Levera5b027e2015-10-24 17:27:27 -04001427 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001428 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001429 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001430}
1431
1432/*
1433 * Put reply buffers back into pool when not attached to
1434 * request. This happens in error conditions.
1435 */
1436void
1437rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1438{
Chuck Leverfed171b2015-05-26 11:51:37 -04001439 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001440
Chuck Levera5b027e2015-10-24 17:27:27 -04001441 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001442 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001443 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001444 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001445}
1446
Chuck Lever9128c3e2015-01-21 11:04:00 -05001447/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001448 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001449 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001450 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001451 * @flags: GFP flags
1452 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001453 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1454 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001455 *
1456 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001457 * receiving the payload of RDMA RECV operations. During Long Calls
1458 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001459 */
1460struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001461rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1462 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001463{
1464 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001465
Chuck Lever9128c3e2015-01-21 11:04:00 -05001466 rb = kmalloc(sizeof(*rb) + size, flags);
1467 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001468 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001469
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001470 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001471 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001472 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001473
1474 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001475}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001476
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001477/**
1478 * __rpcrdma_map_regbuf - DMA-map a regbuf
1479 * @ia: controlling rpcrdma_ia
1480 * @rb: regbuf to be mapped
1481 */
1482bool
1483__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1484{
Chuck Lever91a10c52017-04-11 13:23:02 -04001485 struct ib_device *device = ia->ri_device;
1486
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001487 if (rb->rg_direction == DMA_NONE)
1488 return false;
1489
Chuck Lever91a10c52017-04-11 13:23:02 -04001490 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001491 (void *)rb->rg_base,
1492 rdmab_length(rb),
1493 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001494 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001495 return false;
1496
Chuck Lever91a10c52017-04-11 13:23:02 -04001497 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001498 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1499 return true;
1500}
1501
1502static void
1503rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1504{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001505 if (!rb)
1506 return;
1507
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001508 if (!rpcrdma_regbuf_is_mapped(rb))
1509 return;
1510
1511 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1512 rdmab_length(rb), rb->rg_direction);
1513 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001514}
1515
1516/**
1517 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001518 * @rb: regbuf to be deregistered and freed
1519 */
1520void
Chuck Lever13650c22016-09-15 10:56:26 -04001521rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001522{
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001523 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001524 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001525}
1526
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001527/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001528 * Prepost any receive buffer, then post send.
1529 *
1530 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1531 */
1532int
1533rpcrdma_ep_post(struct rpcrdma_ia *ia,
1534 struct rpcrdma_ep *ep,
1535 struct rpcrdma_req *req)
1536{
Chuck Leverae729502017-10-20 10:48:12 -04001537 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
Chuck Lever90aab602016-09-15 10:56:43 -04001538 struct ib_send_wr *send_wr_fail;
Chuck Lever655fec62016-09-15 10:57:24 -04001539 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001540
Chuck Lever90aab602016-09-15 10:56:43 -04001541 if (req->rl_reply) {
1542 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001543 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001544 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001545 req->rl_reply = NULL;
1546 }
1547
Chuck Lever01bb35c2017-10-20 10:48:36 -04001548 if (!ep->rep_send_count ||
1549 test_bit(RPCRDMA_REQ_F_TX_RESOURCES, &req->rl_flags)) {
Chuck Leverae729502017-10-20 10:48:12 -04001550 send_wr->send_flags |= IB_SEND_SIGNALED;
1551 ep->rep_send_count = ep->rep_send_batch;
1552 } else {
1553 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1554 --ep->rep_send_count;
1555 }
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001556
Chuck Leverab03eff2017-12-20 16:30:40 -05001557 rc = ib_post_send(ia->ri_id->qp, send_wr, &send_wr_fail);
1558 trace_xprtrdma_post_send(req, rc);
1559 if (rc)
1560 return -ENOTCONN;
1561 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001562}
1563
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001564int
1565rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001566 struct rpcrdma_rep *rep)
1567{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001568 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001569 int rc;
1570
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001571 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1572 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001573 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
Chuck Leverb4a7f912017-12-20 16:30:48 -05001574 trace_xprtrdma_post_recv(rep, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001575 if (rc)
Chuck Leverb4a7f912017-12-20 16:30:48 -05001576 return -ENOTCONN;
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001577 return 0;
1578
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001579out_map:
1580 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1581 return -EIO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001582}
Chuck Lever43e95982014-07-29 17:23:34 -04001583
Chuck Leverf531a5d2015-10-24 17:27:43 -04001584/**
1585 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1586 * @r_xprt: transport associated with these backchannel resources
Chuck Lever9ab6d892018-01-03 15:38:17 -05001587 * @count: minimum number of incoming requests expected
Chuck Leverf531a5d2015-10-24 17:27:43 -04001588 *
1589 * Returns zero if all requested buffers were posted, or a negative errno.
1590 */
1591int
1592rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1593{
1594 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1595 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001596 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001597 int rc;
1598
1599 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001600 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001601 if (list_empty(&buffers->rb_recv_bufs))
1602 goto out_reqbuf;
1603 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001604 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001605
Chuck Leverb1573802016-09-15 10:56:35 -04001606 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001607 if (rc)
1608 goto out_rc;
1609 }
1610
1611 return 0;
1612
1613out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001614 spin_unlock(&buffers->rb_lock);
Chuck Leverae724672017-12-20 16:31:53 -05001615 trace_xprtrdma_noreps(r_xprt);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001616 return -ENOMEM;
1617
1618out_rc:
1619 rpcrdma_recv_buffer_put(rep);
1620 return rc;
1621}