blob: 0e0b7d5cb74d1c1286f61e084dae647b8be9765e [file] [log] [blame]
Chuck Levera2268cf2018-05-04 15:34:32 -04001// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04002/*
Chuck Lever62b56a62017-10-30 16:22:14 -04003 * Copyright (c) 2014-2017 Oracle. All rights reserved.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04004 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
5 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the BSD-type
10 * license below:
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 *
19 * Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials provided
22 * with the distribution.
23 *
24 * Neither the name of the Network Appliance, Inc. nor the names of
25 * its contributors may be used to endorse or promote products
26 * derived from this software without specific prior written
27 * permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040040 */
41
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040042/*
43 * verbs.c
44 *
45 * Encapsulates the major functions managing:
46 * o adapters
47 * o endpoints
48 * o connections
49 * o buffer memory
50 */
51
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000052#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Chuck Lever0dd39ca2015-03-30 14:33:43 -040054#include <linux/sunrpc/addr.h>
Chuck Lever05c97462016-09-06 11:22:58 -040055#include <linux/sunrpc/svc_rdma.h>
Chuck Leverae729502017-10-20 10:48:12 -040056
57#include <asm-generic/barrier.h>
Chuck Lever65866f82014-05-28 10:33:59 -040058#include <asm/bitops.h>
Chuck Lever56a6bd12017-04-11 13:23:34 -040059
Chuck Lever0a904872017-02-08 17:00:35 -050060#include <rdma/ib_cm.h>
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040061
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040062#include "xprt_rdma.h"
63
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040064/*
65 * Globals/Macros
66 */
67
Jeff Laytonf895b252014-11-17 16:58:04 -050068#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040069# define RPCDBG_FACILITY RPCDBG_TRANS
70#endif
71
72/*
73 * internal functions
74 */
Chuck Leverefd81e92018-05-04 15:35:41 -040075static void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc);
Chuck Lever96cedde2017-12-14 20:57:55 -050076static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
77static void rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf);
Chuck Lever7c8d9e72018-05-04 15:35:20 -040078static int rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt, bool temp);
Chuck Leverbebd0312017-04-11 13:23:10 -040079static void rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040080
Chuck Leverd8f532d2017-10-16 15:01:30 -040081struct workqueue_struct *rpcrdma_receive_wq __read_mostly;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040082
Chuck Leverfe97b472015-10-24 17:27:10 -040083int
84rpcrdma_alloc_wq(void)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040085{
Chuck Leverfe97b472015-10-24 17:27:10 -040086 struct workqueue_struct *recv_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040087
Chuck Leverfe97b472015-10-24 17:27:10 -040088 recv_wq = alloc_workqueue("xprtrdma_receive",
Chuck Leverccede752017-12-04 14:04:04 -050089 WQ_MEM_RECLAIM | WQ_HIGHPRI,
Chuck Leverfe97b472015-10-24 17:27:10 -040090 0);
91 if (!recv_wq)
92 return -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040093
Chuck Leverfe97b472015-10-24 17:27:10 -040094 rpcrdma_receive_wq = recv_wq;
95 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040096}
97
Chuck Leverfe97b472015-10-24 17:27:10 -040098void
99rpcrdma_destroy_wq(void)
Chuck Leverf1a03b72014-11-08 20:14:37 -0500100{
Chuck Leverfe97b472015-10-24 17:27:10 -0400101 struct workqueue_struct *wq;
Chuck Leverf1a03b72014-11-08 20:14:37 -0500102
Chuck Leverfe97b472015-10-24 17:27:10 -0400103 if (rpcrdma_receive_wq) {
104 wq = rpcrdma_receive_wq;
105 rpcrdma_receive_wq = NULL;
106 destroy_workqueue(wq);
107 }
Chuck Leverf1a03b72014-11-08 20:14:37 -0500108}
109
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400110static void
111rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
112{
113 struct rpcrdma_ep *ep = context;
Chuck Lever643cf322017-12-20 16:31:45 -0500114 struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
115 rx_ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400116
Chuck Lever643cf322017-12-20 16:31:45 -0500117 trace_xprtrdma_qp_error(r_xprt, event);
Chuck Lever2f6922c2016-11-29 10:53:21 -0500118 pr_err("rpcrdma: %s on device %s ep %p\n",
119 ib_event_msg(event->event), event->device->name, context);
120
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400121 if (ep->rep_connected == 1) {
122 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500123 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400124 wake_up_all(&ep->rep_connect_wait);
125 }
126}
127
Chuck Lever2fa8f882016-03-04 11:28:53 -0500128/**
129 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
130 * @cq: completion queue (ignored)
131 * @wc: completed WR
132 *
Chuck Lever4220a072015-10-24 17:26:45 -0400133 */
134static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500135rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400136{
Chuck Leverae729502017-10-20 10:48:12 -0400137 struct ib_cqe *cqe = wc->wr_cqe;
138 struct rpcrdma_sendctx *sc =
139 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
140
Chuck Lever2fa8f882016-03-04 11:28:53 -0500141 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leverab03eff2017-12-20 16:30:40 -0500142 trace_xprtrdma_wc_send(sc, wc);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500143 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
144 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
145 ib_wc_status_msg(wc->status),
146 wc->status, wc->vendor_err);
Chuck Leverae729502017-10-20 10:48:12 -0400147
148 rpcrdma_sendctx_put_locked(sc);
Chuck Leverfc664482014-05-28 10:33:25 -0400149}
150
Chuck Lever552bf222016-03-04 11:28:36 -0500151/**
Chuck Lever1519e962016-09-15 10:57:49 -0400152 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500153 * @cq: completion queue (ignored)
154 * @wc: completed WR
155 *
156 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400157static void
Chuck Lever1519e962016-09-15 10:57:49 -0400158rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400159{
Chuck Lever552bf222016-03-04 11:28:36 -0500160 struct ib_cqe *cqe = wc->wr_cqe;
161 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
162 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400163
Chuck Lever85024272015-01-21 11:02:04 -0500164 /* WARNING: Only wr_id and status are reliable at this point */
Chuck Lever0e0b8542018-05-04 15:35:14 -0400165 trace_xprtrdma_wc_receive(wc);
Chuck Lever85024272015-01-21 11:02:04 -0500166 if (wc->status != IB_WC_SUCCESS)
167 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400168
Chuck Lever85024272015-01-21 11:02:04 -0500169 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever96f87782017-08-03 14:30:03 -0400170 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400171 rep->rr_wc_flags = wc->wc_flags;
172 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
173
Chuck Lever91a10c52017-04-11 13:23:02 -0400174 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500175 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400176 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500177
Chuck Leverfc664482014-05-28 10:33:25 -0400178out_schedule:
Chuck Leverd8f532d2017-10-16 15:01:30 -0400179 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500180 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400181
Chuck Lever85024272015-01-21 11:02:04 -0500182out_fail:
183 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500184 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
185 ib_wc_status_msg(wc->status),
186 wc->status, wc->vendor_err);
Chuck Levere2a67192017-08-03 14:30:44 -0400187 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, 0);
Chuck Lever85024272015-01-21 11:02:04 -0500188 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400189}
190
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400191static void
192rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
193 struct rdma_conn_param *param)
194{
195 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
196 const struct rpcrdma_connect_private *pmsg = param->private_data;
197 unsigned int rsize, wsize;
198
Chuck Leverc8b920b2016-09-15 10:57:16 -0400199 /* Default settings for RPC-over-RDMA Version One */
Chuck Leverb5f0afb2017-02-08 16:59:54 -0500200 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400201 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
202 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
203
204 if (pmsg &&
205 pmsg->cp_magic == rpcrdma_cmp_magic &&
206 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc95a3c62017-02-08 17:00:02 -0500207 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400208 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
209 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
210 }
211
212 if (rsize < cdata->inline_rsize)
213 cdata->inline_rsize = rsize;
214 if (wsize < cdata->inline_wsize)
215 cdata->inline_wsize = wsize;
Chuck Lever6d6bf722016-11-29 10:53:13 -0500216 dprintk("RPC: %s: max send %u, max recv %u\n",
217 __func__, cdata->inline_wsize, cdata->inline_rsize);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400218 rpcrdma_set_max_header_sizes(r_xprt);
219}
220
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400221static int
222rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
223{
224 struct rpcrdma_xprt *xprt = id->context;
225 struct rpcrdma_ia *ia = &xprt->rx_ia;
226 struct rpcrdma_ep *ep = &xprt->rx_ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400227 int connstate = 0;
228
Chuck Leverb4744e02017-12-20 16:31:29 -0500229 trace_xprtrdma_conn_upcall(xprt, event);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400230 switch (event->event) {
231 case RDMA_CM_EVENT_ADDR_RESOLVED:
232 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400233 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400234 complete(&ia->ri_done);
235 break;
236 case RDMA_CM_EVENT_ADDR_ERROR:
Chuck Lever52d28fe2018-05-04 15:34:37 -0400237 ia->ri_async_rc = -EPROTO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400238 complete(&ia->ri_done);
239 break;
240 case RDMA_CM_EVENT_ROUTE_ERROR:
241 ia->ri_async_rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400242 complete(&ia->ri_done);
243 break;
Chuck Leverbebd0312017-04-11 13:23:10 -0400244 case RDMA_CM_EVENT_DEVICE_REMOVAL:
245#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverd461f1f2017-12-14 20:56:50 -0500246 pr_info("rpcrdma: removing device %s for %s:%s\n",
Chuck Lever173b8f42017-06-08 11:53:00 -0400247 ia->ri_device->name,
Chuck Leverd461f1f2017-12-14 20:56:50 -0500248 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt));
Chuck Leverbebd0312017-04-11 13:23:10 -0400249#endif
250 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
251 ep->rep_connected = -ENODEV;
252 xprt_force_disconnect(&xprt->rx_xprt);
253 wait_for_completion(&ia->ri_remove_done);
254
255 ia->ri_id = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400256 ia->ri_device = NULL;
257 /* Return 1 to ensure the core destroys the id. */
258 return 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400259 case RDMA_CM_EVENT_ESTABLISHED:
Chuck Lever8a147932018-02-28 15:30:38 -0500260 ++xprt->rx_xprt.connect_cookie;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400261 connstate = 1;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400262 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400263 goto connected;
264 case RDMA_CM_EVENT_CONNECT_ERROR:
265 connstate = -ENOTCONN;
266 goto connected;
267 case RDMA_CM_EVENT_UNREACHABLE:
Chuck Lever52d28fe2018-05-04 15:34:37 -0400268 connstate = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400269 goto connected;
270 case RDMA_CM_EVENT_REJECTED:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500271 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
272 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever0a904872017-02-08 17:00:35 -0500273 rdma_reject_msg(id, event->status));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400274 connstate = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500275 if (event->status == IB_CM_REJ_STALE_CONN)
276 connstate = -EAGAIN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400277 goto connected;
278 case RDMA_CM_EVENT_DISCONNECTED:
Chuck Lever8a147932018-02-28 15:30:38 -0500279 ++xprt->rx_xprt.connect_cookie;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400280 connstate = -ECONNABORTED;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400281connected:
Chuck Leverbe798f92017-10-16 15:01:39 -0400282 xprt->rx_buf.rb_credits = 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400283 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500284 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400285 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400286 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400287 default:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500288 dprintk("RPC: %s: %s:%s on %s/%s (ep 0x%p): %s\n",
289 __func__,
290 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever173b8f42017-06-08 11:53:00 -0400291 ia->ri_device->name, ia->ri_ops->ro_displayname,
292 ep, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400293 break;
294 }
295
296 return 0;
297}
298
299static struct rdma_cm_id *
Chuck Leverdd229ce2017-12-14 20:56:58 -0500300rpcrdma_create_id(struct rpcrdma_xprt *xprt, struct rpcrdma_ia *ia)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400301{
Chuck Lever109b88a2016-11-29 10:52:40 -0500302 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400303 struct rdma_cm_id *id;
304 int rc;
305
Chuck Leverb4744e02017-12-20 16:31:29 -0500306 trace_xprtrdma_conn_start(xprt);
307
Tom Talpey1a954052008-10-09 15:01:31 -0400308 init_completion(&ia->ri_done);
Chuck Leverbebd0312017-04-11 13:23:10 -0400309 init_completion(&ia->ri_remove_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400310
Chuck Lever107c4be2018-05-04 15:34:42 -0400311 id = rdma_create_id(xprt->rx_xprt.xprt_net, rpcrdma_conn_upcall,
312 xprt, RDMA_PS_TCP, IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400313 if (IS_ERR(id)) {
314 rc = PTR_ERR(id);
315 dprintk("RPC: %s: rdma_create_id() failed %i\n",
316 __func__, rc);
317 return id;
318 }
319
Tom Talpey5675add2008-10-09 15:01:41 -0400320 ia->ri_async_rc = -ETIMEDOUT;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500321 rc = rdma_resolve_addr(id, NULL,
322 (struct sockaddr *)&xprt->rx_xprt.addr,
323 RDMA_RESOLVE_TIMEOUT);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400324 if (rc) {
325 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
326 __func__, rc);
327 goto out;
328 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500329 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
330 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500331 trace_xprtrdma_conn_tout(xprt);
Chuck Lever109b88a2016-11-29 10:52:40 -0500332 goto out;
333 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400334
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400335 rc = ia->ri_async_rc;
336 if (rc)
337 goto out;
338
Tom Talpey5675add2008-10-09 15:01:41 -0400339 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400340 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
341 if (rc) {
342 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
343 __func__, rc);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400344 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400345 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500346 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
347 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500348 trace_xprtrdma_conn_tout(xprt);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400349 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500350 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400351 rc = ia->ri_async_rc;
352 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400353 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400354
355 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400356
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400357out:
358 rdma_destroy_id(id);
359 return ERR_PTR(rc);
360}
361
362/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400363 * Exported functions.
364 */
365
Chuck Leverfff09592017-04-11 13:22:54 -0400366/**
367 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
Chuck Leverdd229ce2017-12-14 20:56:58 -0500368 * @xprt: transport with IA to (re)initialize
Chuck Leverfff09592017-04-11 13:22:54 -0400369 *
370 * Returns 0 on success, negative errno if an appropriate
371 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400372 */
373int
Chuck Leverdd229ce2017-12-14 20:56:58 -0500374rpcrdma_ia_open(struct rpcrdma_xprt *xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400375{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400376 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400377 int rc;
378
Chuck Leverdd229ce2017-12-14 20:56:58 -0500379 ia->ri_id = rpcrdma_create_id(xprt, ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400380 if (IS_ERR(ia->ri_id)) {
381 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400382 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400383 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400384 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400385
Christoph Hellwiged082d32016-09-05 12:56:17 +0200386 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400387 if (IS_ERR(ia->ri_pd)) {
388 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400389 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400390 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400391 }
392
Chuck Leverfff09592017-04-11 13:22:54 -0400393 switch (xprt_rdma_memreg_strategy) {
Chuck Leverce5b3712017-12-14 20:57:47 -0500394 case RPCRDMA_FRWR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400395 if (frwr_is_supported(ia)) {
396 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
397 break;
398 }
399 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400400 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400401 if (fmr_is_supported(ia)) {
402 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
403 break;
404 }
405 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400406 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400407 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
408 ia->ri_device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400409 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400410 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400411 }
412
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400413 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500414
Chuck Leverfff09592017-04-11 13:22:54 -0400415out_err:
416 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400417 return rc;
418}
419
Chuck Leverfff09592017-04-11 13:22:54 -0400420/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400421 * rpcrdma_ia_remove - Handle device driver unload
422 * @ia: interface adapter being removed
423 *
424 * Divest transport H/W resources associated with this adapter,
425 * but allow it to be restored later.
426 */
427void
428rpcrdma_ia_remove(struct rpcrdma_ia *ia)
429{
430 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
431 rx_ia);
432 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
433 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
434 struct rpcrdma_req *req;
435 struct rpcrdma_rep *rep;
436
437 cancel_delayed_work_sync(&buf->rb_refresh_worker);
438
439 /* This is similar to rpcrdma_ep_destroy, but:
440 * - Don't cancel the connect worker.
441 * - Don't call rpcrdma_ep_disconnect, which waits
442 * for another conn upcall, which will deadlock.
443 * - rdma_disconnect is unneeded, the underlying
444 * connection is already gone.
445 */
446 if (ia->ri_id->qp) {
447 ib_drain_qp(ia->ri_id->qp);
448 rdma_destroy_qp(ia->ri_id);
449 ia->ri_id->qp = NULL;
450 }
451 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400452 ep->rep_attr.recv_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400453 ib_free_cq(ep->rep_attr.send_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400454 ep->rep_attr.send_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400455
456 /* The ULP is responsible for ensuring all DMA
457 * mappings and MRs are gone.
458 */
459 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
460 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
461 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
462 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
463 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
464 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
465 }
Chuck Lever96cedde2017-12-14 20:57:55 -0500466 rpcrdma_mrs_destroy(buf);
Chuck Lever25524282018-03-19 14:23:16 -0400467 ib_dealloc_pd(ia->ri_pd);
468 ia->ri_pd = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400469
470 /* Allow waiters to continue */
471 complete(&ia->ri_remove_done);
Chuck Leverb4744e02017-12-20 16:31:29 -0500472
473 trace_xprtrdma_remove(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400474}
475
476/**
Chuck Leverfff09592017-04-11 13:22:54 -0400477 * rpcrdma_ia_close - Clean up/close an IA.
478 * @ia: interface adapter to close
479 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400480 */
481void
482rpcrdma_ia_close(struct rpcrdma_ia *ia)
483{
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400484 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
485 if (ia->ri_id->qp)
486 rdma_destroy_qp(ia->ri_id);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400487 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400488 }
Chuck Leverfff09592017-04-11 13:22:54 -0400489 ia->ri_id = NULL;
490 ia->ri_device = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400491
492 /* If the pd is still busy, xprtrdma missed freeing a resource */
493 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600494 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400495 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400496}
497
498/*
499 * Create unconnected endpoint.
500 */
501int
502rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
Chuck Lever16f906d2017-02-08 17:00:10 -0500503 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400504{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400505 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Leverfc664482014-05-28 10:33:25 -0400506 struct ib_cq *sendcq, *recvcq;
Chuck Lever914fcad2018-05-04 15:34:48 -0400507 unsigned int max_sge;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500508 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400509
Chuck Levereed50872017-03-11 15:52:47 -0500510 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
511 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500512 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
513 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400514 return -ENOMEM;
515 }
Chuck Lever1179e2c2018-01-31 12:34:05 -0500516 ia->ri_max_send_sges = max_sge;
Chuck Leverb3221d62015-08-03 13:03:39 -0400517
Chuck Lever914fcad2018-05-04 15:34:48 -0400518 rc = ia->ri_ops->ro_open(ia, ep, cdata);
519 if (rc)
520 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400521
522 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
523 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400524 ep->rep_attr.srq = NULL;
Chuck Lever16f906d2017-02-08 17:00:10 -0500525 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400526 ep->rep_attr.cap.max_recv_sge = 1;
527 ep->rep_attr.cap.max_inline_data = 0;
528 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
529 ep->rep_attr.qp_type = IB_QPT_RC;
530 ep->rep_attr.port_num = ~0;
531
532 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
533 "iovs: send %d recv %d\n",
534 __func__,
535 ep->rep_attr.cap.max_send_wr,
536 ep->rep_attr.cap.max_recv_wr,
537 ep->rep_attr.cap.max_send_sge,
538 ep->rep_attr.cap.max_recv_sge);
539
540 /* set trigger for requesting send completion */
Chuck Leverae729502017-10-20 10:48:12 -0400541 ep->rep_send_batch = min_t(unsigned int, RPCRDMA_MAX_SEND_BATCH,
542 cdata->max_requests >> 2);
543 ep->rep_send_count = ep->rep_send_batch;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400544 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400545 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400546
Chuck Lever2fa8f882016-03-04 11:28:53 -0500547 sendcq = ib_alloc_cq(ia->ri_device, NULL,
548 ep->rep_attr.cap.max_send_wr + 1,
Chuck Levera4699f52017-10-30 16:21:49 -0400549 1, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400550 if (IS_ERR(sendcq)) {
551 rc = PTR_ERR(sendcq);
552 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400553 __func__, rc);
554 goto out1;
555 }
556
Chuck Lever552bf222016-03-04 11:28:36 -0500557 recvcq = ib_alloc_cq(ia->ri_device, NULL,
558 ep->rep_attr.cap.max_recv_wr + 1,
Chuck Leverd8f532d2017-10-16 15:01:30 -0400559 0, IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400560 if (IS_ERR(recvcq)) {
561 rc = PTR_ERR(recvcq);
562 dprintk("RPC: %s: failed to create recv CQ: %i\n",
563 __func__, rc);
564 goto out2;
565 }
566
Chuck Leverfc664482014-05-28 10:33:25 -0400567 ep->rep_attr.send_cq = sendcq;
568 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400569
570 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400571 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400572
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400573 /* Prepare RDMA-CM private message */
574 pmsg->cp_magic = rpcrdma_cmp_magic;
575 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400576 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400577 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
578 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
579 ep->rep_remote_cma.private_data = pmsg;
580 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400581
582 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400583 ep->rep_remote_cma.initiator_depth = 0;
Chuck Leverb7e85fff2018-02-28 15:30:33 -0500584 ep->rep_remote_cma.responder_resources =
585 min_t(int, U8_MAX, ia->ri_device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400586
Chuck Leverb2dde942016-05-02 14:43:03 -0400587 /* Limit transport retries so client can detect server
588 * GID changes quickly. RPC layer handles re-establishing
589 * transport connection and retransmission.
590 */
591 ep->rep_remote_cma.retry_count = 6;
592
593 /* RPC-over-RDMA handles its own flow control. In addition,
594 * make all RNR NAKs visible so we know that RPC-over-RDMA
595 * flow control is working correctly (no NAKs should be seen).
596 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400597 ep->rep_remote_cma.flow_control = 0;
598 ep->rep_remote_cma.rnr_retry_count = 0;
599
600 return 0;
601
602out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500603 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400604out1:
605 return rc;
606}
607
608/*
609 * rpcrdma_ep_destroy
610 *
611 * Disconnect and destroy endpoint. After this, the only
612 * valid operations on the ep are to free it (if dynamically
613 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400614 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400615void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400616rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
617{
Chuck Lever254f91e2014-05-28 10:32:17 -0400618 cancel_delayed_work_sync(&ep->rep_connect_worker);
619
Chuck Lever25524282018-03-19 14:23:16 -0400620 if (ia->ri_id && ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400621 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400622 rdma_destroy_qp(ia->ri_id);
623 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400624 }
625
Chuck Lever25524282018-03-19 14:23:16 -0400626 if (ep->rep_attr.recv_cq)
627 ib_free_cq(ep->rep_attr.recv_cq);
628 if (ep->rep_attr.send_cq)
629 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400630}
631
Chuck Levera9b0e382017-04-11 13:23:26 -0400632/* Re-establish a connection after a device removal event.
633 * Unlike a normal reconnection, a fresh PD and a new set
634 * of MRs and buffers is needed.
635 */
636static int
637rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
638 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
639{
Chuck Levera9b0e382017-04-11 13:23:26 -0400640 int rc, err;
641
Chuck Leverb4744e02017-12-20 16:31:29 -0500642 trace_xprtrdma_reinsert(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400643
644 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500645 if (rpcrdma_ia_open(r_xprt))
Chuck Levera9b0e382017-04-11 13:23:26 -0400646 goto out1;
647
648 rc = -ENOMEM;
649 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
650 if (err) {
651 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
652 goto out2;
653 }
654
655 rc = -ENETUNREACH;
656 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
657 if (err) {
658 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
659 goto out3;
660 }
661
Chuck Lever96cedde2017-12-14 20:57:55 -0500662 rpcrdma_mrs_create(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400663 return 0;
664
665out3:
666 rpcrdma_ep_destroy(ep, ia);
667out2:
668 rpcrdma_ia_close(ia);
669out1:
670 return rc;
671}
672
Chuck Lever18908962017-04-11 13:23:18 -0400673static int
674rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
675 struct rpcrdma_ia *ia)
676{
Chuck Lever18908962017-04-11 13:23:18 -0400677 struct rdma_cm_id *id, *old;
678 int err, rc;
679
Chuck Leverb4744e02017-12-20 16:31:29 -0500680 trace_xprtrdma_reconnect(r_xprt);
Chuck Lever18908962017-04-11 13:23:18 -0400681
682 rpcrdma_ep_disconnect(ep, ia);
683
684 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500685 id = rpcrdma_create_id(r_xprt, ia);
Chuck Lever18908962017-04-11 13:23:18 -0400686 if (IS_ERR(id))
687 goto out;
688
689 /* As long as the new ID points to the same device as the
690 * old ID, we can reuse the transport's existing PD and all
691 * previously allocated MRs. Also, the same device means
692 * the transport's previous DMA mappings are still valid.
693 *
694 * This is a sanity check only. There should be no way these
695 * point to two different devices here.
696 */
697 old = id;
698 rc = -ENETUNREACH;
699 if (ia->ri_device != id->device) {
700 pr_err("rpcrdma: can't reconnect on different device!\n");
701 goto out_destroy;
702 }
703
704 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
705 if (err) {
706 dprintk("RPC: %s: rdma_create_qp returned %d\n",
707 __func__, err);
708 goto out_destroy;
709 }
710
711 /* Atomically replace the transport's ID and QP. */
712 rc = 0;
713 old = ia->ri_id;
714 ia->ri_id = id;
715 rdma_destroy_qp(old);
716
717out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400718 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400719out:
720 return rc;
721}
722
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400723/*
724 * Connect unconnected endpoint.
725 */
726int
727rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
728{
Chuck Lever0a904872017-02-08 17:00:35 -0500729 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
730 rx_ia);
Chuck Lever18908962017-04-11 13:23:18 -0400731 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400733retry:
Chuck Lever18908962017-04-11 13:23:18 -0400734 switch (ep->rep_connected) {
735 case 0:
Chuck Leverec62f402014-05-28 10:34:07 -0400736 dprintk("RPC: %s: connecting...\n", __func__);
737 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
738 if (rc) {
739 dprintk("RPC: %s: rdma_create_qp failed %i\n",
740 __func__, rc);
Chuck Lever18908962017-04-11 13:23:18 -0400741 rc = -ENETUNREACH;
742 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400743 }
Chuck Lever18908962017-04-11 13:23:18 -0400744 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400745 case -ENODEV:
746 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
747 if (rc)
748 goto out_noupdate;
749 break;
Chuck Lever18908962017-04-11 13:23:18 -0400750 default:
751 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
752 if (rc)
753 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400754 }
755
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400756 ep->rep_connected = 0;
757
758 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
759 if (rc) {
760 dprintk("RPC: %s: rdma_connect() failed with %i\n",
761 __func__, rc);
762 goto out;
763 }
764
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400765 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400766 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500767 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400768 goto retry;
769 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500770 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400771 }
772
Chuck Lever0a904872017-02-08 17:00:35 -0500773 dprintk("RPC: %s: connected\n", __func__);
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400774
775 rpcrdma_post_recvs(r_xprt, true);
Chuck Lever0a904872017-02-08 17:00:35 -0500776
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400777out:
778 if (rc)
779 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400780
781out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400782 return rc;
783}
784
785/*
786 * rpcrdma_ep_disconnect
787 *
788 * This is separate from destroy to facilitate the ability
789 * to reconnect without recreating the endpoint.
790 *
791 * This call is not reentrant, and must not be made in parallel
792 * on the same endpoint.
793 */
Chuck Lever282191c2014-07-29 17:25:55 -0400794void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400795rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
796{
797 int rc;
798
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400799 rc = rdma_disconnect(ia->ri_id);
Chuck Leverb4744e02017-12-20 16:31:29 -0500800 if (!rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400801 /* returns without wait if not connected */
802 wait_event_interruptible(ep->rep_connect_wait,
803 ep->rep_connected != 1);
Chuck Leverb4744e02017-12-20 16:31:29 -0500804 else
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400805 ep->rep_connected = rc;
Chuck Leverb4744e02017-12-20 16:31:29 -0500806 trace_xprtrdma_disconnect(container_of(ep, struct rpcrdma_xprt,
807 rx_ep), rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400808
809 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400810}
811
Chuck Leverae729502017-10-20 10:48:12 -0400812/* Fixed-size circular FIFO queue. This implementation is wait-free and
813 * lock-free.
814 *
815 * Consumer is the code path that posts Sends. This path dequeues a
816 * sendctx for use by a Send operation. Multiple consumer threads
817 * are serialized by the RPC transport lock, which allows only one
818 * ->send_request call at a time.
819 *
820 * Producer is the code path that handles Send completions. This path
821 * enqueues a sendctx that has been completed. Multiple producer
822 * threads are serialized by the ib_poll_cq() function.
823 */
824
825/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
826 * queue activity, and ib_drain_qp has flushed all remaining Send
827 * requests.
828 */
829static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
830{
831 unsigned long i;
832
833 for (i = 0; i <= buf->rb_sc_last; i++)
834 kfree(buf->rb_sc_ctxs[i]);
835 kfree(buf->rb_sc_ctxs);
836}
837
838static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
839{
840 struct rpcrdma_sendctx *sc;
841
842 sc = kzalloc(sizeof(*sc) +
843 ia->ri_max_send_sges * sizeof(struct ib_sge),
844 GFP_KERNEL);
845 if (!sc)
846 return NULL;
847
848 sc->sc_wr.wr_cqe = &sc->sc_cqe;
849 sc->sc_wr.sg_list = sc->sc_sges;
850 sc->sc_wr.opcode = IB_WR_SEND;
851 sc->sc_cqe.done = rpcrdma_wc_send;
852 return sc;
853}
854
855static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
856{
857 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
858 struct rpcrdma_sendctx *sc;
859 unsigned long i;
860
861 /* Maximum number of concurrent outstanding Send WRs. Capping
862 * the circular queue size stops Send Queue overflow by causing
863 * the ->send_request call to fail temporarily before too many
864 * Sends are posted.
865 */
866 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
867 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
868 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
869 if (!buf->rb_sc_ctxs)
870 return -ENOMEM;
871
872 buf->rb_sc_last = i - 1;
873 for (i = 0; i <= buf->rb_sc_last; i++) {
874 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
875 if (!sc)
876 goto out_destroy;
877
878 sc->sc_xprt = r_xprt;
879 buf->rb_sc_ctxs[i] = sc;
880 }
881
882 return 0;
883
884out_destroy:
885 rpcrdma_sendctxs_destroy(buf);
886 return -ENOMEM;
887}
888
889/* The sendctx queue is not guaranteed to have a size that is a
890 * power of two, thus the helpers in circ_buf.h cannot be used.
891 * The other option is to use modulus (%), which can be expensive.
892 */
893static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
894 unsigned long item)
895{
896 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
897}
898
899/**
900 * rpcrdma_sendctx_get_locked - Acquire a send context
901 * @buf: transport buffers from which to acquire an unused context
902 *
903 * Returns pointer to a free send completion context; or NULL if
904 * the queue is empty.
905 *
906 * Usage: Called to acquire an SGE array before preparing a Send WR.
907 *
908 * The caller serializes calls to this function (per rpcrdma_buffer),
909 * and provides an effective memory barrier that flushes the new value
910 * of rb_sc_head.
911 */
912struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_buffer *buf)
913{
914 struct rpcrdma_xprt *r_xprt;
915 struct rpcrdma_sendctx *sc;
916 unsigned long next_head;
917
918 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
919
920 if (next_head == READ_ONCE(buf->rb_sc_tail))
921 goto out_emptyq;
922
923 /* ORDER: item must be accessed _before_ head is updated */
924 sc = buf->rb_sc_ctxs[next_head];
925
926 /* Releasing the lock in the caller acts as a memory
927 * barrier that flushes rb_sc_head.
928 */
929 buf->rb_sc_head = next_head;
930
931 return sc;
932
933out_emptyq:
934 /* The queue is "empty" if there have not been enough Send
935 * completions recently. This is a sign the Send Queue is
936 * backing up. Cause the caller to pause and try again.
937 */
938 dprintk("RPC: %s: empty sendctx queue\n", __func__);
939 r_xprt = container_of(buf, struct rpcrdma_xprt, rx_buf);
940 r_xprt->rx_stats.empty_sendctx_q++;
941 return NULL;
942}
943
944/**
945 * rpcrdma_sendctx_put_locked - Release a send context
946 * @sc: send context to release
947 *
948 * Usage: Called from Send completion to return a sendctxt
949 * to the queue.
950 *
951 * The caller serializes calls to this function (per rpcrdma_buffer).
952 */
Chuck Leverefd81e92018-05-04 15:35:41 -0400953static void
954rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
Chuck Leverae729502017-10-20 10:48:12 -0400955{
956 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
957 unsigned long next_tail;
958
959 /* Unmap SGEs of previously completed by unsignaled
960 * Sends by walking up the queue until @sc is found.
961 */
962 next_tail = buf->rb_sc_tail;
963 do {
964 next_tail = rpcrdma_sendctx_next(buf, next_tail);
965
966 /* ORDER: item must be accessed _before_ tail is updated */
967 rpcrdma_unmap_sendctx(buf->rb_sc_ctxs[next_tail]);
968
969 } while (buf->rb_sc_ctxs[next_tail] != sc);
970
971 /* Paired with READ_ONCE */
972 smp_store_release(&buf->rb_sc_tail, next_tail);
973}
974
Chuck Lever505bbe62016-06-29 13:52:54 -0400975static void
976rpcrdma_mr_recovery_worker(struct work_struct *work)
977{
978 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
979 rb_recovery_worker.work);
Chuck Lever96cedde2017-12-14 20:57:55 -0500980 struct rpcrdma_mr *mr;
Chuck Lever505bbe62016-06-29 13:52:54 -0400981
982 spin_lock(&buf->rb_recovery_lock);
983 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500984 mr = rpcrdma_mr_pop(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400985 spin_unlock(&buf->rb_recovery_lock);
986
Chuck Lever1c443eff2017-12-20 16:31:21 -0500987 trace_xprtrdma_recover_mr(mr);
Chuck Lever96cedde2017-12-14 20:57:55 -0500988 mr->mr_xprt->rx_ia.ri_ops->ro_recover_mr(mr);
Chuck Lever505bbe62016-06-29 13:52:54 -0400989
990 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +0800991 }
Chuck Lever505bbe62016-06-29 13:52:54 -0400992 spin_unlock(&buf->rb_recovery_lock);
993}
994
995void
Chuck Lever96cedde2017-12-14 20:57:55 -0500996rpcrdma_mr_defer_recovery(struct rpcrdma_mr *mr)
Chuck Lever505bbe62016-06-29 13:52:54 -0400997{
Chuck Lever96cedde2017-12-14 20:57:55 -0500998 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
Chuck Lever505bbe62016-06-29 13:52:54 -0400999 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1000
1001 spin_lock(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001002 rpcrdma_mr_push(mr, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001003 spin_unlock(&buf->rb_recovery_lock);
1004
1005 schedule_delayed_work(&buf->rb_recovery_worker, 0);
1006}
1007
Chuck Levere2ac2362016-06-29 13:54:00 -04001008static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001009rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001010{
1011 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1012 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1013 unsigned int count;
1014 LIST_HEAD(free);
1015 LIST_HEAD(all);
1016
Chuck Leverae741a82018-02-28 15:30:49 -05001017 for (count = 0; count < 3; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001018 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001019 int rc;
1020
Chuck Lever96cedde2017-12-14 20:57:55 -05001021 mr = kzalloc(sizeof(*mr), GFP_KERNEL);
1022 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -04001023 break;
1024
Chuck Lever96cedde2017-12-14 20:57:55 -05001025 rc = ia->ri_ops->ro_init_mr(ia, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001026 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001027 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001028 break;
1029 }
1030
Chuck Lever96cedde2017-12-14 20:57:55 -05001031 mr->mr_xprt = r_xprt;
Chuck Levere2ac2362016-06-29 13:54:00 -04001032
Chuck Lever96cedde2017-12-14 20:57:55 -05001033 list_add(&mr->mr_list, &free);
1034 list_add(&mr->mr_all, &all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001035 }
1036
Chuck Lever96cedde2017-12-14 20:57:55 -05001037 spin_lock(&buf->rb_mrlock);
1038 list_splice(&free, &buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001039 list_splice(&all, &buf->rb_all);
1040 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever96cedde2017-12-14 20:57:55 -05001041 spin_unlock(&buf->rb_mrlock);
Chuck Lever1c443eff2017-12-20 16:31:21 -05001042 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Lever9e679d52018-02-28 15:30:44 -05001043
1044 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001045}
1046
1047static void
1048rpcrdma_mr_refresh_worker(struct work_struct *work)
1049{
1050 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
1051 rb_refresh_worker.work);
1052 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1053 rx_buf);
1054
Chuck Lever96cedde2017-12-14 20:57:55 -05001055 rpcrdma_mrs_create(r_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -04001056}
1057
Chuck Leverf531a5d2015-10-24 17:27:43 -04001058struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -05001059rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
1060{
Chuck Leverf531a5d2015-10-24 17:27:43 -04001061 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever2dd4a012018-02-28 15:31:05 -05001062 struct rpcrdma_regbuf *rb;
Chuck Lever13924022015-01-21 11:03:52 -05001063 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -05001064
Chuck Lever85275c82015-01-21 11:04:16 -05001065 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001066 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -05001067 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -05001068
Chuck Lever2dd4a012018-02-28 15:31:05 -05001069 rb = rpcrdma_alloc_regbuf(RPCRDMA_HDRBUF_SIZE,
1070 DMA_TO_DEVICE, GFP_KERNEL);
1071 if (IS_ERR(rb)) {
1072 kfree(req);
1073 return ERR_PTR(-ENOMEM);
1074 }
1075 req->rl_rdmabuf = rb;
1076 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
1077 req->rl_buffer = buffer;
1078 INIT_LIST_HEAD(&req->rl_registered);
1079
Chuck Leverf531a5d2015-10-24 17:27:43 -04001080 spin_lock(&buffer->rb_reqslock);
1081 list_add(&req->rl_all, &buffer->rb_allreqs);
1082 spin_unlock(&buffer->rb_reqslock);
Chuck Lever13924022015-01-21 11:03:52 -05001083 return req;
Chuck Lever13924022015-01-21 11:03:52 -05001084}
1085
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001086static int
1087rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt, bool temp)
Chuck Lever13924022015-01-21 11:03:52 -05001088{
1089 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001090 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -05001091 struct rpcrdma_rep *rep;
1092 int rc;
1093
1094 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001095 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001096 if (rep == NULL)
1097 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001098
Chuck Lever13650c22016-09-15 10:56:26 -04001099 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001100 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -05001101 if (IS_ERR(rep->rr_rdmabuf)) {
1102 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001103 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001104 }
Chuck Lever96f87782017-08-03 14:30:03 -04001105 xdr_buf_init(&rep->rr_hdrbuf, rep->rr_rdmabuf->rg_base,
1106 rdmab_length(rep->rr_rdmabuf));
Chuck Lever13924022015-01-21 11:03:52 -05001107
Chuck Lever1519e962016-09-15 10:57:49 -04001108 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001109 rep->rr_rxprt = r_xprt;
Chuck Leverd8f532d2017-10-16 15:01:30 -04001110 INIT_WORK(&rep->rr_work, rpcrdma_deferred_completion);
Chuck Lever6ea8e712016-09-15 10:56:51 -04001111 rep->rr_recv_wr.next = NULL;
1112 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1113 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1114 rep->rr_recv_wr.num_sge = 1;
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001115 rep->rr_temp = temp;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001116
1117 spin_lock(&buf->rb_lock);
1118 list_add(&rep->rr_list, &buf->rb_recv_bufs);
1119 spin_unlock(&buf->rb_lock);
1120 return 0;
Chuck Lever13924022015-01-21 11:03:52 -05001121
1122out_free:
1123 kfree(rep);
1124out:
Chuck Leverd698c4a2017-12-14 20:56:09 -05001125 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1126 __func__, rc);
1127 return rc;
Chuck Lever13924022015-01-21 11:03:52 -05001128}
1129
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001130int
Chuck Leverac920d02015-01-21 11:03:44 -05001131rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001132{
Chuck Leverac920d02015-01-21 11:03:44 -05001133 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001134 int i, rc;
1135
Chuck Lever1e465fd2015-10-24 17:27:02 -04001136 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001137 buf->rb_bc_srv_max_requests = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001138 spin_lock_init(&buf->rb_mrlock);
Chuck Lever505bbe62016-06-29 13:52:54 -04001139 spin_lock_init(&buf->rb_lock);
1140 spin_lock_init(&buf->rb_recovery_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001141 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001142 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -04001143 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001144 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1145 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001146 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
1147 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001148
Chuck Lever96cedde2017-12-14 20:57:55 -05001149 rpcrdma_mrs_create(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001150
Chuck Lever1e465fd2015-10-24 17:27:02 -04001151 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001152 INIT_LIST_HEAD(&buf->rb_allreqs);
1153 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001154 for (i = 0; i < buf->rb_max_requests; i++) {
1155 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001156
Chuck Lever13924022015-01-21 11:03:52 -05001157 req = rpcrdma_create_req(r_xprt);
1158 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001159 dprintk("RPC: %s: request buffer %d alloc"
1160 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001161 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001162 goto out;
1163 }
Chuck Levera80d66c2017-06-08 11:52:12 -04001164 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001165 }
1166
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001167 buf->rb_posted_receives = 0;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001168 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Lever13924022015-01-21 11:03:52 -05001169
Chuck Leverae729502017-10-20 10:48:12 -04001170 rc = rpcrdma_sendctxs_create(r_xprt);
1171 if (rc)
1172 goto out;
1173
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001174 return 0;
1175out:
1176 rpcrdma_buffer_destroy(buf);
1177 return rc;
1178}
1179
Chuck Lever2e845222014-07-29 17:25:38 -04001180static void
Chuck Lever13650c22016-09-15 10:56:26 -04001181rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001182{
Chuck Lever13650c22016-09-15 10:56:26 -04001183 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001184 kfree(rep);
1185}
1186
Chuck Leverf531a5d2015-10-24 17:27:43 -04001187void
Chuck Lever13650c22016-09-15 10:56:26 -04001188rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001189{
Chuck Lever13650c22016-09-15 10:56:26 -04001190 rpcrdma_free_regbuf(req->rl_recvbuf);
1191 rpcrdma_free_regbuf(req->rl_sendbuf);
1192 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001193 kfree(req);
1194}
1195
Chuck Levere2ac2362016-06-29 13:54:00 -04001196static void
Chuck Lever96cedde2017-12-14 20:57:55 -05001197rpcrdma_mrs_destroy(struct rpcrdma_buffer *buf)
Chuck Levere2ac2362016-06-29 13:54:00 -04001198{
1199 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1200 rx_buf);
1201 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever96cedde2017-12-14 20:57:55 -05001202 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001203 unsigned int count;
1204
1205 count = 0;
Chuck Lever96cedde2017-12-14 20:57:55 -05001206 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001207 while (!list_empty(&buf->rb_all)) {
Chuck Lever96cedde2017-12-14 20:57:55 -05001208 mr = list_entry(buf->rb_all.next, struct rpcrdma_mr, mr_all);
1209 list_del(&mr->mr_all);
Chuck Levere2ac2362016-06-29 13:54:00 -04001210
Chuck Lever96cedde2017-12-14 20:57:55 -05001211 spin_unlock(&buf->rb_mrlock);
1212 ia->ri_ops->ro_release_mr(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -04001213 count++;
Chuck Lever96cedde2017-12-14 20:57:55 -05001214 spin_lock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001215 }
Chuck Lever96cedde2017-12-14 20:57:55 -05001216 spin_unlock(&buf->rb_mrlock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001217 r_xprt->rx_stats.mrs_allocated = 0;
1218
1219 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1220}
1221
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001222void
1223rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1224{
Chuck Lever505bbe62016-06-29 13:52:54 -04001225 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001226 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001227
Chuck Leverae729502017-10-20 10:48:12 -04001228 rpcrdma_sendctxs_destroy(buf);
1229
Chuck Lever1e465fd2015-10-24 17:27:02 -04001230 while (!list_empty(&buf->rb_recv_bufs)) {
1231 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001232
Chuck Lever9d95cd52018-05-04 15:35:36 -04001233 rep = list_first_entry(&buf->rb_recv_bufs,
1234 struct rpcrdma_rep, rr_list);
1235 list_del(&rep->rr_list);
Chuck Lever13650c22016-09-15 10:56:26 -04001236 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001237 }
1238
Chuck Leverf531a5d2015-10-24 17:27:43 -04001239 spin_lock(&buf->rb_reqslock);
1240 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001241 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001242
Chuck Leverf531a5d2015-10-24 17:27:43 -04001243 req = list_first_entry(&buf->rb_allreqs,
1244 struct rpcrdma_req, rl_all);
1245 list_del(&req->rl_all);
1246
1247 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001248 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001249 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001250 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001251 spin_unlock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001252
Chuck Lever96cedde2017-12-14 20:57:55 -05001253 rpcrdma_mrs_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001254}
1255
Chuck Lever96cedde2017-12-14 20:57:55 -05001256/**
1257 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1258 * @r_xprt: controlling transport
1259 *
1260 * Returns an initialized rpcrdma_mr or NULL if no free
1261 * rpcrdma_mr objects are available.
1262 */
1263struct rpcrdma_mr *
1264rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001265{
Chuck Lever346aa662015-05-26 11:52:06 -04001266 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001267 struct rpcrdma_mr *mr = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001268
Chuck Lever96cedde2017-12-14 20:57:55 -05001269 spin_lock(&buf->rb_mrlock);
1270 if (!list_empty(&buf->rb_mrs))
1271 mr = rpcrdma_mr_pop(&buf->rb_mrs);
1272 spin_unlock(&buf->rb_mrlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001273
Chuck Lever96cedde2017-12-14 20:57:55 -05001274 if (!mr)
1275 goto out_nomrs;
1276 return mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001277
Chuck Lever96cedde2017-12-14 20:57:55 -05001278out_nomrs:
Chuck Lever1c443eff2017-12-20 16:31:21 -05001279 trace_xprtrdma_nomrs(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -04001280 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1281 schedule_delayed_work(&buf->rb_refresh_worker, 0);
Chuck Levere2ac2362016-06-29 13:54:00 -04001282
1283 /* Allow the reply handler and refresh worker to run */
1284 cond_resched();
1285
1286 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001287}
1288
Chuck Leverec12e472017-12-14 20:58:04 -05001289static void
1290__rpcrdma_mr_put(struct rpcrdma_buffer *buf, struct rpcrdma_mr *mr)
1291{
1292 spin_lock(&buf->rb_mrlock);
1293 rpcrdma_mr_push(mr, &buf->rb_mrs);
1294 spin_unlock(&buf->rb_mrlock);
1295}
1296
Chuck Lever96cedde2017-12-14 20:57:55 -05001297/**
1298 * rpcrdma_mr_put - Release an rpcrdma_mr object
1299 * @mr: object to release
1300 *
1301 */
Chuck Lever346aa662015-05-26 11:52:06 -04001302void
Chuck Lever96cedde2017-12-14 20:57:55 -05001303rpcrdma_mr_put(struct rpcrdma_mr *mr)
Chuck Leverc2922c02014-07-29 17:24:36 -04001304{
Chuck Leverec12e472017-12-14 20:58:04 -05001305 __rpcrdma_mr_put(&mr->mr_xprt->rx_buf, mr);
1306}
Chuck Leverc2922c02014-07-29 17:24:36 -04001307
Chuck Leverec12e472017-12-14 20:58:04 -05001308/**
1309 * rpcrdma_mr_unmap_and_put - DMA unmap an MR and release it
1310 * @mr: object to release
1311 *
1312 */
1313void
1314rpcrdma_mr_unmap_and_put(struct rpcrdma_mr *mr)
1315{
1316 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1317
Chuck Lever2937fed2017-12-20 16:31:12 -05001318 trace_xprtrdma_dma_unmap(mr);
Chuck Leverec12e472017-12-14 20:58:04 -05001319 ib_dma_unmap_sg(r_xprt->rx_ia.ri_device,
1320 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1321 __rpcrdma_mr_put(&r_xprt->rx_buf, mr);
Chuck Leverc2922c02014-07-29 17:24:36 -04001322}
1323
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001324/**
1325 * rpcrdma_buffer_get - Get a request buffer
1326 * @buffers: Buffer pool from which to obtain a buffer
Chuck Lever78d506e2016-09-06 11:22:49 -04001327 *
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001328 * Returns a fresh rpcrdma_req, or NULL if none are available.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001329 */
1330struct rpcrdma_req *
1331rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1332{
1333 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001334
Chuck Levera5b027e2015-10-24 17:27:27 -04001335 spin_lock(&buffers->rb_lock);
Chuck Levere68699c2018-05-04 15:35:31 -04001336 req = list_first_entry_or_null(&buffers->rb_send_bufs,
1337 struct rpcrdma_req, rl_list);
1338 if (req)
1339 list_del_init(&req->rl_list);
Chuck Levera5b027e2015-10-24 17:27:27 -04001340 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001341 return req;
1342}
1343
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001344/**
1345 * rpcrdma_buffer_put - Put request/reply buffers back into pool
1346 * @req: object to return
1347 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001348 */
1349void
1350rpcrdma_buffer_put(struct rpcrdma_req *req)
1351{
1352 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001353 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001354
Chuck Lever1e465fd2015-10-24 17:27:02 -04001355 req->rl_reply = NULL;
1356
Chuck Levera5b027e2015-10-24 17:27:27 -04001357 spin_lock(&buffers->rb_lock);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001358 list_add(&req->rl_list, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001359 if (rep) {
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001360 if (!rep->rr_temp) {
1361 list_add(&rep->rr_list, &buffers->rb_recv_bufs);
1362 rep = NULL;
1363 }
Chuck Lever05c97462016-09-06 11:22:58 -04001364 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001365 spin_unlock(&buffers->rb_lock);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001366 if (rep)
1367 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001368}
1369
1370/*
1371 * Put reply buffers back into pool when not attached to
Chuck Leverb45ccfd2014-05-28 10:32:34 -04001372 * request. This happens in error conditions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001373 */
1374void
1375rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1376{
Chuck Leverfed171b2015-05-26 11:51:37 -04001377 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001378
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001379 if (!rep->rr_temp) {
1380 spin_lock(&buffers->rb_lock);
1381 list_add(&rep->rr_list, &buffers->rb_recv_bufs);
1382 spin_unlock(&buffers->rb_lock);
1383 } else {
1384 rpcrdma_destroy_rep(rep);
1385 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001386}
1387
Chuck Lever9128c3e2015-01-21 11:04:00 -05001388/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001389 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001390 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001391 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001392 * @flags: GFP flags
1393 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001394 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1395 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001396 *
1397 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001398 * receiving the payload of RDMA RECV operations. During Long Calls
1399 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001400 */
1401struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001402rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1403 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001404{
1405 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001406
Chuck Lever9128c3e2015-01-21 11:04:00 -05001407 rb = kmalloc(sizeof(*rb) + size, flags);
1408 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001409 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001410
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001411 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001412 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001413 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001414
1415 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001416}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001417
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001418/**
1419 * __rpcrdma_map_regbuf - DMA-map a regbuf
1420 * @ia: controlling rpcrdma_ia
1421 * @rb: regbuf to be mapped
1422 */
1423bool
1424__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1425{
Chuck Lever91a10c52017-04-11 13:23:02 -04001426 struct ib_device *device = ia->ri_device;
1427
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001428 if (rb->rg_direction == DMA_NONE)
1429 return false;
1430
Chuck Lever91a10c52017-04-11 13:23:02 -04001431 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001432 (void *)rb->rg_base,
1433 rdmab_length(rb),
1434 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001435 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001436 return false;
1437
Chuck Lever91a10c52017-04-11 13:23:02 -04001438 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001439 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1440 return true;
1441}
1442
1443static void
1444rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1445{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001446 if (!rb)
1447 return;
1448
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001449 if (!rpcrdma_regbuf_is_mapped(rb))
1450 return;
1451
1452 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1453 rdmab_length(rb), rb->rg_direction);
1454 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001455}
1456
1457/**
1458 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001459 * @rb: regbuf to be deregistered and freed
1460 */
1461void
Chuck Lever13650c22016-09-15 10:56:26 -04001462rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001463{
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001464 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001465 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001466}
1467
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001468/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001469 * Prepost any receive buffer, then post send.
1470 *
1471 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1472 */
1473int
1474rpcrdma_ep_post(struct rpcrdma_ia *ia,
1475 struct rpcrdma_ep *ep,
1476 struct rpcrdma_req *req)
1477{
Chuck Leverae729502017-10-20 10:48:12 -04001478 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
Chuck Lever655fec62016-09-15 10:57:24 -04001479 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001480
Chuck Lever01bb35c2017-10-20 10:48:36 -04001481 if (!ep->rep_send_count ||
1482 test_bit(RPCRDMA_REQ_F_TX_RESOURCES, &req->rl_flags)) {
Chuck Leverae729502017-10-20 10:48:12 -04001483 send_wr->send_flags |= IB_SEND_SIGNALED;
1484 ep->rep_send_count = ep->rep_send_batch;
1485 } else {
1486 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1487 --ep->rep_send_count;
1488 }
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001489
Chuck Leverf2877622018-02-28 15:30:59 -05001490 rc = ia->ri_ops->ro_send(ia, req);
Chuck Leverab03eff2017-12-20 16:30:40 -05001491 trace_xprtrdma_post_send(req, rc);
1492 if (rc)
1493 return -ENOTCONN;
1494 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001495}
1496
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001497/**
1498 * rpcrdma_post_recvs - Maybe post some Receive buffers
1499 * @r_xprt: controlling transport
1500 * @temp: when true, allocate temp rpcrdma_rep objects
1501 *
1502 */
1503void
1504rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, bool temp)
1505{
1506 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1507 struct ib_recv_wr *wr, *bad_wr;
1508 int needed, count, rc;
1509
1510 needed = buf->rb_credits + (buf->rb_bc_srv_max_requests << 1);
1511 if (buf->rb_posted_receives > needed)
1512 return;
1513 needed -= buf->rb_posted_receives;
1514
1515 count = 0;
1516 wr = NULL;
1517 while (needed) {
1518 struct rpcrdma_regbuf *rb;
1519 struct rpcrdma_rep *rep;
1520
1521 spin_lock(&buf->rb_lock);
1522 rep = list_first_entry_or_null(&buf->rb_recv_bufs,
1523 struct rpcrdma_rep, rr_list);
1524 if (likely(rep))
1525 list_del(&rep->rr_list);
1526 spin_unlock(&buf->rb_lock);
1527 if (!rep) {
1528 if (rpcrdma_create_rep(r_xprt, temp))
1529 break;
1530 continue;
1531 }
1532
1533 rb = rep->rr_rdmabuf;
1534 if (!rpcrdma_regbuf_is_mapped(rb)) {
1535 if (!__rpcrdma_dma_map_regbuf(&r_xprt->rx_ia, rb)) {
1536 rpcrdma_recv_buffer_put(rep);
1537 break;
1538 }
1539 }
1540
1541 trace_xprtrdma_post_recv(rep->rr_recv_wr.wr_cqe);
1542 rep->rr_recv_wr.next = wr;
1543 wr = &rep->rr_recv_wr;
1544 ++count;
1545 --needed;
1546 }
1547 if (!count)
1548 return;
1549
1550 rc = ib_post_recv(r_xprt->rx_ia.ri_id->qp, wr, &bad_wr);
1551 if (rc) {
1552 for (wr = bad_wr; wr; wr = wr->next) {
1553 struct rpcrdma_rep *rep;
1554
1555 rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
1556 rpcrdma_recv_buffer_put(rep);
1557 --count;
1558 }
1559 }
1560 buf->rb_posted_receives += count;
1561 trace_xprtrdma_post_recvs(r_xprt, count, rc);
1562}