blob: 0b4d6a3f6d023c7ac71486b2adbaebb8dd0ff11d [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 Levera9b0e382017-04-11 13:23:26 -040074static void rpcrdma_create_mrs(struct rpcrdma_xprt *r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -040075static void rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf);
76static 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;
111
Chuck Lever2f6922c2016-11-29 10:53:21 -0500112 pr_err("rpcrdma: %s on device %s ep %p\n",
113 ib_event_msg(event->event), event->device->name, context);
114
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400115 if (ep->rep_connected == 1) {
116 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500117 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400118 wake_up_all(&ep->rep_connect_wait);
119 }
120}
121
Chuck Lever2fa8f882016-03-04 11:28:53 -0500122/**
123 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
124 * @cq: completion queue (ignored)
125 * @wc: completed WR
126 *
Chuck Lever4220a072015-10-24 17:26:45 -0400127 */
128static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500129rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400130{
Chuck Leverae729502017-10-20 10:48:12 -0400131 struct ib_cqe *cqe = wc->wr_cqe;
132 struct rpcrdma_sendctx *sc =
133 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
134
Chuck Lever2fa8f882016-03-04 11:28:53 -0500135 /* WARNING: Only wr_cqe and status are reliable at this point */
136 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
137 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
138 ib_wc_status_msg(wc->status),
139 wc->status, wc->vendor_err);
Chuck Leverae729502017-10-20 10:48:12 -0400140
141 rpcrdma_sendctx_put_locked(sc);
Chuck Leverfc664482014-05-28 10:33:25 -0400142}
143
Chuck Lever552bf222016-03-04 11:28:36 -0500144/**
Chuck Lever1519e962016-09-15 10:57:49 -0400145 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500146 * @cq: completion queue (ignored)
147 * @wc: completed WR
148 *
149 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400150static void
Chuck Lever1519e962016-09-15 10:57:49 -0400151rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400152{
Chuck Lever552bf222016-03-04 11:28:36 -0500153 struct ib_cqe *cqe = wc->wr_cqe;
154 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
155 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400156
Chuck Lever85024272015-01-21 11:02:04 -0500157 /* WARNING: Only wr_id and status are reliable at this point */
158 if (wc->status != IB_WC_SUCCESS)
159 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400160
Chuck Lever85024272015-01-21 11:02:04 -0500161 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever85024272015-01-21 11:02:04 -0500162 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
163 __func__, rep, wc->byte_len);
164
Chuck Lever96f87782017-08-03 14:30:03 -0400165 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400166 rep->rr_wc_flags = wc->wc_flags;
167 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
168
Chuck Lever91a10c52017-04-11 13:23:02 -0400169 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500170 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400171 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500172
Chuck Leverfc664482014-05-28 10:33:25 -0400173out_schedule:
Chuck Leverd8f532d2017-10-16 15:01:30 -0400174 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500175 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400176
Chuck Lever85024272015-01-21 11:02:04 -0500177out_fail:
178 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500179 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
180 ib_wc_status_msg(wc->status),
181 wc->status, wc->vendor_err);
Chuck Levere2a67192017-08-03 14:30:44 -0400182 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, 0);
Chuck Lever85024272015-01-21 11:02:04 -0500183 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400184}
185
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400186static void
187rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
188 struct rdma_conn_param *param)
189{
190 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
191 const struct rpcrdma_connect_private *pmsg = param->private_data;
192 unsigned int rsize, wsize;
193
Chuck Leverc8b920b2016-09-15 10:57:16 -0400194 /* Default settings for RPC-over-RDMA Version One */
Chuck Leverb5f0afb2017-02-08 16:59:54 -0500195 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400196 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
197 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
198
199 if (pmsg &&
200 pmsg->cp_magic == rpcrdma_cmp_magic &&
201 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc95a3c62017-02-08 17:00:02 -0500202 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400203 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
204 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
205 }
206
207 if (rsize < cdata->inline_rsize)
208 cdata->inline_rsize = rsize;
209 if (wsize < cdata->inline_wsize)
210 cdata->inline_wsize = wsize;
Chuck Lever6d6bf722016-11-29 10:53:13 -0500211 dprintk("RPC: %s: max send %u, max recv %u\n",
212 __func__, cdata->inline_wsize, cdata->inline_rsize);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400213 rpcrdma_set_max_header_sizes(r_xprt);
214}
215
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400216static int
217rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
218{
219 struct rpcrdma_xprt *xprt = id->context;
220 struct rpcrdma_ia *ia = &xprt->rx_ia;
221 struct rpcrdma_ep *ep = &xprt->rx_ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400222 int connstate = 0;
223
224 switch (event->event) {
225 case RDMA_CM_EVENT_ADDR_RESOLVED:
226 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400227 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400228 complete(&ia->ri_done);
229 break;
230 case RDMA_CM_EVENT_ADDR_ERROR:
231 ia->ri_async_rc = -EHOSTUNREACH;
232 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
233 __func__, ep);
234 complete(&ia->ri_done);
235 break;
236 case RDMA_CM_EVENT_ROUTE_ERROR:
237 ia->ri_async_rc = -ENETUNREACH;
238 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
239 __func__, ep);
240 complete(&ia->ri_done);
241 break;
Chuck Leverbebd0312017-04-11 13:23:10 -0400242 case RDMA_CM_EVENT_DEVICE_REMOVAL:
243#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverd461f1f2017-12-14 20:56:50 -0500244 pr_info("rpcrdma: removing device %s for %s:%s\n",
Chuck Lever173b8f42017-06-08 11:53:00 -0400245 ia->ri_device->name,
Chuck Leverd461f1f2017-12-14 20:56:50 -0500246 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt));
Chuck Leverbebd0312017-04-11 13:23:10 -0400247#endif
248 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
249 ep->rep_connected = -ENODEV;
250 xprt_force_disconnect(&xprt->rx_xprt);
251 wait_for_completion(&ia->ri_remove_done);
252
253 ia->ri_id = NULL;
254 ia->ri_pd = NULL;
255 ia->ri_device = NULL;
256 /* Return 1 to ensure the core destroys the id. */
257 return 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400258 case RDMA_CM_EVENT_ESTABLISHED:
259 connstate = 1;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400260 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400261 goto connected;
262 case RDMA_CM_EVENT_CONNECT_ERROR:
263 connstate = -ENOTCONN;
264 goto connected;
265 case RDMA_CM_EVENT_UNREACHABLE:
266 connstate = -ENETDOWN;
267 goto connected;
268 case RDMA_CM_EVENT_REJECTED:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500269 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
270 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever0a904872017-02-08 17:00:35 -0500271 rdma_reject_msg(id, event->status));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400272 connstate = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500273 if (event->status == IB_CM_REJ_STALE_CONN)
274 connstate = -EAGAIN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400275 goto connected;
276 case RDMA_CM_EVENT_DISCONNECTED:
277 connstate = -ECONNABORTED;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400278connected:
Chuck Leverbe798f92017-10-16 15:01:39 -0400279 xprt->rx_buf.rb_credits = 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400280 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500281 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400282 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400283 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400284 default:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500285 dprintk("RPC: %s: %s:%s on %s/%s (ep 0x%p): %s\n",
286 __func__,
287 rpcrdma_addrstr(xprt), rpcrdma_portstr(xprt),
Chuck Lever173b8f42017-06-08 11:53:00 -0400288 ia->ri_device->name, ia->ri_ops->ro_displayname,
289 ep, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400290 break;
291 }
292
293 return 0;
294}
295
296static struct rdma_cm_id *
297rpcrdma_create_id(struct rpcrdma_xprt *xprt,
298 struct rpcrdma_ia *ia, struct sockaddr *addr)
299{
Chuck Lever109b88a2016-11-29 10:52:40 -0500300 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400301 struct rdma_cm_id *id;
302 int rc;
303
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;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400317 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
318 if (rc) {
319 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
320 __func__, rc);
321 goto out;
322 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500323 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
324 if (rc < 0) {
325 dprintk("RPC: %s: wait() exited: %i\n",
326 __func__, rc);
327 goto out;
328 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400329
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400330 rc = ia->ri_async_rc;
331 if (rc)
332 goto out;
333
Tom Talpey5675add2008-10-09 15:01:41 -0400334 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400335 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
336 if (rc) {
337 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
338 __func__, rc);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400339 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400340 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500341 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
342 if (rc < 0) {
343 dprintk("RPC: %s: wait() exited: %i\n",
344 __func__, rc);
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.
364 * @xprt: controlling transport
365 * @addr: IP address of remote peer
366 *
367 * Returns 0 on success, negative errno if an appropriate
368 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400369 */
370int
Chuck Leverfff09592017-04-11 13:22:54 -0400371rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400372{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400373 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400374 int rc;
375
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400376 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
377 if (IS_ERR(ia->ri_id)) {
378 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400379 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400380 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400381 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400382
Christoph Hellwiged082d32016-09-05 12:56:17 +0200383 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400384 if (IS_ERR(ia->ri_pd)) {
385 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400386 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400387 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400388 }
389
Chuck Leverfff09592017-04-11 13:22:54 -0400390 switch (xprt_rdma_memreg_strategy) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400391 case RPCRDMA_FRMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400392 if (frwr_is_supported(ia)) {
393 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
394 break;
395 }
396 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400397 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400398 if (fmr_is_supported(ia)) {
399 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
400 break;
401 }
402 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400403 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400404 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
405 ia->ri_device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400406 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400407 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400408 }
409
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400410 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500411
Chuck Leverfff09592017-04-11 13:22:54 -0400412out_err:
413 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400414 return rc;
415}
416
Chuck Leverfff09592017-04-11 13:22:54 -0400417/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400418 * rpcrdma_ia_remove - Handle device driver unload
419 * @ia: interface adapter being removed
420 *
421 * Divest transport H/W resources associated with this adapter,
422 * but allow it to be restored later.
423 */
424void
425rpcrdma_ia_remove(struct rpcrdma_ia *ia)
426{
427 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
428 rx_ia);
429 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
430 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
431 struct rpcrdma_req *req;
432 struct rpcrdma_rep *rep;
433
434 cancel_delayed_work_sync(&buf->rb_refresh_worker);
435
436 /* This is similar to rpcrdma_ep_destroy, but:
437 * - Don't cancel the connect worker.
438 * - Don't call rpcrdma_ep_disconnect, which waits
439 * for another conn upcall, which will deadlock.
440 * - rdma_disconnect is unneeded, the underlying
441 * connection is already gone.
442 */
443 if (ia->ri_id->qp) {
444 ib_drain_qp(ia->ri_id->qp);
445 rdma_destroy_qp(ia->ri_id);
446 ia->ri_id->qp = NULL;
447 }
448 ib_free_cq(ep->rep_attr.recv_cq);
449 ib_free_cq(ep->rep_attr.send_cq);
450
451 /* The ULP is responsible for ensuring all DMA
452 * mappings and MRs are gone.
453 */
454 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
455 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
456 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
457 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
458 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
459 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
460 }
461 rpcrdma_destroy_mrs(buf);
462
463 /* Allow waiters to continue */
464 complete(&ia->ri_remove_done);
465}
466
467/**
Chuck Leverfff09592017-04-11 13:22:54 -0400468 * rpcrdma_ia_close - Clean up/close an IA.
469 * @ia: interface adapter to close
470 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400471 */
472void
473rpcrdma_ia_close(struct rpcrdma_ia *ia)
474{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400475 dprintk("RPC: %s: entering\n", __func__);
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 Lever16f906d2017-02-08 17:00:10 -0500508 ia->ri_max_send_sges = max_sge - RPCRDMA_MIN_SEND_SGES;
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{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400629 dprintk("RPC: %s: entering, connected is %d\n",
630 __func__, ep->rep_connected);
631
Chuck Lever254f91e2014-05-28 10:32:17 -0400632 cancel_delayed_work_sync(&ep->rep_connect_worker);
633
Steve Wise72c02172015-09-21 12:24:23 -0500634 if (ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400635 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400636 rdma_destroy_qp(ia->ri_id);
637 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400638 }
639
Chuck Lever552bf222016-03-04 11:28:36 -0500640 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500641 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400642}
643
Chuck Levera9b0e382017-04-11 13:23:26 -0400644/* Re-establish a connection after a device removal event.
645 * Unlike a normal reconnection, a fresh PD and a new set
646 * of MRs and buffers is needed.
647 */
648static int
649rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
650 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
651{
652 struct sockaddr *sap = (struct sockaddr *)&r_xprt->rx_data.addr;
653 int rc, err;
654
655 pr_info("%s: r_xprt = %p\n", __func__, r_xprt);
656
657 rc = -EHOSTUNREACH;
658 if (rpcrdma_ia_open(r_xprt, sap))
659 goto out1;
660
661 rc = -ENOMEM;
662 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
663 if (err) {
664 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
665 goto out2;
666 }
667
668 rc = -ENETUNREACH;
669 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
670 if (err) {
671 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
672 goto out3;
673 }
674
675 rpcrdma_create_mrs(r_xprt);
676 return 0;
677
678out3:
679 rpcrdma_ep_destroy(ep, ia);
680out2:
681 rpcrdma_ia_close(ia);
682out1:
683 return rc;
684}
685
Chuck Lever18908962017-04-11 13:23:18 -0400686static int
687rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
688 struct rpcrdma_ia *ia)
689{
690 struct sockaddr *sap = (struct sockaddr *)&r_xprt->rx_data.addr;
691 struct rdma_cm_id *id, *old;
692 int err, rc;
693
694 dprintk("RPC: %s: reconnecting...\n", __func__);
695
696 rpcrdma_ep_disconnect(ep, ia);
697
698 rc = -EHOSTUNREACH;
699 id = rpcrdma_create_id(r_xprt, ia, sap);
700 if (IS_ERR(id))
701 goto out;
702
703 /* As long as the new ID points to the same device as the
704 * old ID, we can reuse the transport's existing PD and all
705 * previously allocated MRs. Also, the same device means
706 * the transport's previous DMA mappings are still valid.
707 *
708 * This is a sanity check only. There should be no way these
709 * point to two different devices here.
710 */
711 old = id;
712 rc = -ENETUNREACH;
713 if (ia->ri_device != id->device) {
714 pr_err("rpcrdma: can't reconnect on different device!\n");
715 goto out_destroy;
716 }
717
718 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
719 if (err) {
720 dprintk("RPC: %s: rdma_create_qp returned %d\n",
721 __func__, err);
722 goto out_destroy;
723 }
724
725 /* Atomically replace the transport's ID and QP. */
726 rc = 0;
727 old = ia->ri_id;
728 ia->ri_id = id;
729 rdma_destroy_qp(old);
730
731out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400732 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400733out:
734 return rc;
735}
736
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400737/*
738 * Connect unconnected endpoint.
739 */
740int
741rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
742{
Chuck Lever0a904872017-02-08 17:00:35 -0500743 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
744 rx_ia);
Chuck Lever0a904872017-02-08 17:00:35 -0500745 unsigned int extras;
Chuck Lever18908962017-04-11 13:23:18 -0400746 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400747
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400748retry:
Chuck Lever18908962017-04-11 13:23:18 -0400749 switch (ep->rep_connected) {
750 case 0:
Chuck Leverec62f402014-05-28 10:34:07 -0400751 dprintk("RPC: %s: connecting...\n", __func__);
752 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
753 if (rc) {
754 dprintk("RPC: %s: rdma_create_qp failed %i\n",
755 __func__, rc);
Chuck Lever18908962017-04-11 13:23:18 -0400756 rc = -ENETUNREACH;
757 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400758 }
Chuck Lever18908962017-04-11 13:23:18 -0400759 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400760 case -ENODEV:
761 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
762 if (rc)
763 goto out_noupdate;
764 break;
Chuck Lever18908962017-04-11 13:23:18 -0400765 default:
766 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
767 if (rc)
768 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400769 }
770
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400771 ep->rep_connected = 0;
772
773 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
774 if (rc) {
775 dprintk("RPC: %s: rdma_connect() failed with %i\n",
776 __func__, rc);
777 goto out;
778 }
779
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400780 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400781 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500782 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400783 goto retry;
784 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500785 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400786 }
787
Chuck Lever0a904872017-02-08 17:00:35 -0500788 dprintk("RPC: %s: connected\n", __func__);
789 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
790 if (extras)
791 rpcrdma_ep_post_extra_recv(r_xprt, extras);
792
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400793out:
794 if (rc)
795 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400796
797out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400798 return rc;
799}
800
801/*
802 * rpcrdma_ep_disconnect
803 *
804 * This is separate from destroy to facilitate the ability
805 * to reconnect without recreating the endpoint.
806 *
807 * This call is not reentrant, and must not be made in parallel
808 * on the same endpoint.
809 */
Chuck Lever282191c2014-07-29 17:25:55 -0400810void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400811rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
812{
813 int rc;
814
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400815 rc = rdma_disconnect(ia->ri_id);
816 if (!rc) {
817 /* returns without wait if not connected */
818 wait_event_interruptible(ep->rep_connect_wait,
819 ep->rep_connected != 1);
820 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
821 (ep->rep_connected == 1) ? "still " : "dis");
822 } else {
823 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
824 ep->rep_connected = rc;
825 }
Chuck Lever550d7502016-05-02 14:41:47 -0400826
827 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400828}
829
Chuck Leverae729502017-10-20 10:48:12 -0400830/* Fixed-size circular FIFO queue. This implementation is wait-free and
831 * lock-free.
832 *
833 * Consumer is the code path that posts Sends. This path dequeues a
834 * sendctx for use by a Send operation. Multiple consumer threads
835 * are serialized by the RPC transport lock, which allows only one
836 * ->send_request call at a time.
837 *
838 * Producer is the code path that handles Send completions. This path
839 * enqueues a sendctx that has been completed. Multiple producer
840 * threads are serialized by the ib_poll_cq() function.
841 */
842
843/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
844 * queue activity, and ib_drain_qp has flushed all remaining Send
845 * requests.
846 */
847static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
848{
849 unsigned long i;
850
851 for (i = 0; i <= buf->rb_sc_last; i++)
852 kfree(buf->rb_sc_ctxs[i]);
853 kfree(buf->rb_sc_ctxs);
854}
855
856static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
857{
858 struct rpcrdma_sendctx *sc;
859
860 sc = kzalloc(sizeof(*sc) +
861 ia->ri_max_send_sges * sizeof(struct ib_sge),
862 GFP_KERNEL);
863 if (!sc)
864 return NULL;
865
866 sc->sc_wr.wr_cqe = &sc->sc_cqe;
867 sc->sc_wr.sg_list = sc->sc_sges;
868 sc->sc_wr.opcode = IB_WR_SEND;
869 sc->sc_cqe.done = rpcrdma_wc_send;
870 return sc;
871}
872
873static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
874{
875 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
876 struct rpcrdma_sendctx *sc;
877 unsigned long i;
878
879 /* Maximum number of concurrent outstanding Send WRs. Capping
880 * the circular queue size stops Send Queue overflow by causing
881 * the ->send_request call to fail temporarily before too many
882 * Sends are posted.
883 */
884 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
885 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
886 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
887 if (!buf->rb_sc_ctxs)
888 return -ENOMEM;
889
890 buf->rb_sc_last = i - 1;
891 for (i = 0; i <= buf->rb_sc_last; i++) {
892 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
893 if (!sc)
894 goto out_destroy;
895
896 sc->sc_xprt = r_xprt;
897 buf->rb_sc_ctxs[i] = sc;
898 }
899
900 return 0;
901
902out_destroy:
903 rpcrdma_sendctxs_destroy(buf);
904 return -ENOMEM;
905}
906
907/* The sendctx queue is not guaranteed to have a size that is a
908 * power of two, thus the helpers in circ_buf.h cannot be used.
909 * The other option is to use modulus (%), which can be expensive.
910 */
911static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
912 unsigned long item)
913{
914 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
915}
916
917/**
918 * rpcrdma_sendctx_get_locked - Acquire a send context
919 * @buf: transport buffers from which to acquire an unused context
920 *
921 * Returns pointer to a free send completion context; or NULL if
922 * the queue is empty.
923 *
924 * Usage: Called to acquire an SGE array before preparing a Send WR.
925 *
926 * The caller serializes calls to this function (per rpcrdma_buffer),
927 * and provides an effective memory barrier that flushes the new value
928 * of rb_sc_head.
929 */
930struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_buffer *buf)
931{
932 struct rpcrdma_xprt *r_xprt;
933 struct rpcrdma_sendctx *sc;
934 unsigned long next_head;
935
936 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
937
938 if (next_head == READ_ONCE(buf->rb_sc_tail))
939 goto out_emptyq;
940
941 /* ORDER: item must be accessed _before_ head is updated */
942 sc = buf->rb_sc_ctxs[next_head];
943
944 /* Releasing the lock in the caller acts as a memory
945 * barrier that flushes rb_sc_head.
946 */
947 buf->rb_sc_head = next_head;
948
949 return sc;
950
951out_emptyq:
952 /* The queue is "empty" if there have not been enough Send
953 * completions recently. This is a sign the Send Queue is
954 * backing up. Cause the caller to pause and try again.
955 */
956 dprintk("RPC: %s: empty sendctx queue\n", __func__);
957 r_xprt = container_of(buf, struct rpcrdma_xprt, rx_buf);
958 r_xprt->rx_stats.empty_sendctx_q++;
959 return NULL;
960}
961
962/**
963 * rpcrdma_sendctx_put_locked - Release a send context
964 * @sc: send context to release
965 *
966 * Usage: Called from Send completion to return a sendctxt
967 * to the queue.
968 *
969 * The caller serializes calls to this function (per rpcrdma_buffer).
970 */
971void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
972{
973 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
974 unsigned long next_tail;
975
976 /* Unmap SGEs of previously completed by unsignaled
977 * Sends by walking up the queue until @sc is found.
978 */
979 next_tail = buf->rb_sc_tail;
980 do {
981 next_tail = rpcrdma_sendctx_next(buf, next_tail);
982
983 /* ORDER: item must be accessed _before_ tail is updated */
984 rpcrdma_unmap_sendctx(buf->rb_sc_ctxs[next_tail]);
985
986 } while (buf->rb_sc_ctxs[next_tail] != sc);
987
988 /* Paired with READ_ONCE */
989 smp_store_release(&buf->rb_sc_tail, next_tail);
990}
991
Chuck Lever505bbe62016-06-29 13:52:54 -0400992static void
993rpcrdma_mr_recovery_worker(struct work_struct *work)
994{
995 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
996 rb_recovery_worker.work);
997 struct rpcrdma_mw *mw;
998
999 spin_lock(&buf->rb_recovery_lock);
1000 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001001 mw = rpcrdma_pop_mw(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001002 spin_unlock(&buf->rb_recovery_lock);
1003
1004 dprintk("RPC: %s: recovering MR %p\n", __func__, mw);
1005 mw->mw_xprt->rx_ia.ri_ops->ro_recover_mr(mw);
1006
1007 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +08001008 }
Chuck Lever505bbe62016-06-29 13:52:54 -04001009 spin_unlock(&buf->rb_recovery_lock);
1010}
1011
1012void
1013rpcrdma_defer_mr_recovery(struct rpcrdma_mw *mw)
1014{
1015 struct rpcrdma_xprt *r_xprt = mw->mw_xprt;
1016 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1017
1018 spin_lock(&buf->rb_recovery_lock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001019 rpcrdma_push_mw(mw, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -04001020 spin_unlock(&buf->rb_recovery_lock);
1021
1022 schedule_delayed_work(&buf->rb_recovery_worker, 0);
1023}
1024
Chuck Levere2ac2362016-06-29 13:54:00 -04001025static void
1026rpcrdma_create_mrs(struct rpcrdma_xprt *r_xprt)
1027{
1028 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1029 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1030 unsigned int count;
1031 LIST_HEAD(free);
1032 LIST_HEAD(all);
1033
1034 for (count = 0; count < 32; count++) {
1035 struct rpcrdma_mw *mw;
1036 int rc;
1037
1038 mw = kzalloc(sizeof(*mw), GFP_KERNEL);
1039 if (!mw)
1040 break;
1041
1042 rc = ia->ri_ops->ro_init_mr(ia, mw);
1043 if (rc) {
1044 kfree(mw);
1045 break;
1046 }
1047
1048 mw->mw_xprt = r_xprt;
1049
1050 list_add(&mw->mw_list, &free);
1051 list_add(&mw->mw_all, &all);
1052 }
1053
1054 spin_lock(&buf->rb_mwlock);
1055 list_splice(&free, &buf->rb_mws);
1056 list_splice(&all, &buf->rb_all);
1057 r_xprt->rx_stats.mrs_allocated += count;
1058 spin_unlock(&buf->rb_mwlock);
1059
1060 dprintk("RPC: %s: created %u MRs\n", __func__, count);
1061}
1062
1063static void
1064rpcrdma_mr_refresh_worker(struct work_struct *work)
1065{
1066 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
1067 rb_refresh_worker.work);
1068 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1069 rx_buf);
1070
1071 rpcrdma_create_mrs(r_xprt);
1072}
1073
Chuck Leverf531a5d2015-10-24 17:27:43 -04001074struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -05001075rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
1076{
Chuck Leverf531a5d2015-10-24 17:27:43 -04001077 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -05001078 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -05001079
Chuck Lever85275c82015-01-21 11:04:16 -05001080 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001081 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -05001082 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -05001083
Chuck Leverf531a5d2015-10-24 17:27:43 -04001084 spin_lock(&buffer->rb_reqslock);
1085 list_add(&req->rl_all, &buffer->rb_allreqs);
1086 spin_unlock(&buffer->rb_reqslock);
Chuck Lever13924022015-01-21 11:03:52 -05001087 req->rl_buffer = &r_xprt->rx_buf;
Chuck Lever9d6b0402016-06-29 13:54:16 -04001088 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever13924022015-01-21 11:03:52 -05001089 return req;
Chuck Lever13924022015-01-21 11:03:52 -05001090}
1091
Chuck Leverd698c4a2017-12-14 20:56:09 -05001092/**
1093 * rpcrdma_create_rep - Allocate an rpcrdma_rep object
1094 * @r_xprt: controlling transport
1095 *
1096 * Returns 0 on success or a negative errno on failure.
1097 */
1098int
Chuck Lever13924022015-01-21 11:03:52 -05001099rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
1100{
1101 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001102 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -05001103 struct rpcrdma_rep *rep;
1104 int rc;
1105
1106 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001107 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001108 if (rep == NULL)
1109 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001110
Chuck Lever13650c22016-09-15 10:56:26 -04001111 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001112 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -05001113 if (IS_ERR(rep->rr_rdmabuf)) {
1114 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001115 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001116 }
Chuck Lever96f87782017-08-03 14:30:03 -04001117 xdr_buf_init(&rep->rr_hdrbuf, rep->rr_rdmabuf->rg_base,
1118 rdmab_length(rep->rr_rdmabuf));
Chuck Lever13924022015-01-21 11:03:52 -05001119
Chuck Lever1519e962016-09-15 10:57:49 -04001120 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001121 rep->rr_rxprt = r_xprt;
Chuck Leverd8f532d2017-10-16 15:01:30 -04001122 INIT_WORK(&rep->rr_work, rpcrdma_deferred_completion);
Chuck Lever6ea8e712016-09-15 10:56:51 -04001123 rep->rr_recv_wr.next = NULL;
1124 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1125 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1126 rep->rr_recv_wr.num_sge = 1;
Chuck Leverd698c4a2017-12-14 20:56:09 -05001127
1128 spin_lock(&buf->rb_lock);
1129 list_add(&rep->rr_list, &buf->rb_recv_bufs);
1130 spin_unlock(&buf->rb_lock);
1131 return 0;
Chuck Lever13924022015-01-21 11:03:52 -05001132
1133out_free:
1134 kfree(rep);
1135out:
Chuck Leverd698c4a2017-12-14 20:56:09 -05001136 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1137 __func__, rc);
1138 return rc;
Chuck Lever13924022015-01-21 11:03:52 -05001139}
1140
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001141int
Chuck Leverac920d02015-01-21 11:03:44 -05001142rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001143{
Chuck Leverac920d02015-01-21 11:03:44 -05001144 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001145 int i, rc;
1146
Chuck Lever1e465fd2015-10-24 17:27:02 -04001147 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001148 buf->rb_bc_srv_max_requests = 0;
Chuck Levere2ac2362016-06-29 13:54:00 -04001149 spin_lock_init(&buf->rb_mwlock);
Chuck Lever505bbe62016-06-29 13:52:54 -04001150 spin_lock_init(&buf->rb_lock);
1151 spin_lock_init(&buf->rb_recovery_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001152 INIT_LIST_HEAD(&buf->rb_mws);
1153 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -04001154 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001155 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1156 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001157 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
1158 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001159
Chuck Levere2ac2362016-06-29 13:54:00 -04001160 rpcrdma_create_mrs(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001161
Chuck Lever1e465fd2015-10-24 17:27:02 -04001162 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001163 INIT_LIST_HEAD(&buf->rb_allreqs);
1164 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001165 for (i = 0; i < buf->rb_max_requests; i++) {
1166 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001167
Chuck Lever13924022015-01-21 11:03:52 -05001168 req = rpcrdma_create_req(r_xprt);
1169 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001170 dprintk("RPC: %s: request buffer %d alloc"
1171 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001172 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001173 goto out;
1174 }
Chuck Levera80d66c2017-06-08 11:52:12 -04001175 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001176 }
1177
1178 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Leverd698c4a2017-12-14 20:56:09 -05001179 for (i = 0; i <= buf->rb_max_requests; i++) {
1180 rc = rpcrdma_create_rep(r_xprt);
1181 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001182 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001183 }
Chuck Lever13924022015-01-21 11:03:52 -05001184
Chuck Leverae729502017-10-20 10:48:12 -04001185 rc = rpcrdma_sendctxs_create(r_xprt);
1186 if (rc)
1187 goto out;
1188
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001189 return 0;
1190out:
1191 rpcrdma_buffer_destroy(buf);
1192 return rc;
1193}
1194
Chuck Lever1e465fd2015-10-24 17:27:02 -04001195static struct rpcrdma_req *
1196rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
1197{
1198 struct rpcrdma_req *req;
1199
1200 req = list_first_entry(&buf->rb_send_bufs,
Chuck Levera80d66c2017-06-08 11:52:12 -04001201 struct rpcrdma_req, rl_list);
Chuck Lever431af642017-06-08 11:52:20 -04001202 list_del_init(&req->rl_list);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001203 return req;
1204}
1205
1206static struct rpcrdma_rep *
1207rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1208{
1209 struct rpcrdma_rep *rep;
1210
1211 rep = list_first_entry(&buf->rb_recv_bufs,
1212 struct rpcrdma_rep, rr_list);
1213 list_del(&rep->rr_list);
1214 return rep;
1215}
1216
Chuck Lever2e845222014-07-29 17:25:38 -04001217static void
Chuck Lever13650c22016-09-15 10:56:26 -04001218rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001219{
Chuck Lever13650c22016-09-15 10:56:26 -04001220 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001221 kfree(rep);
1222}
1223
Chuck Leverf531a5d2015-10-24 17:27:43 -04001224void
Chuck Lever13650c22016-09-15 10:56:26 -04001225rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001226{
Chuck Lever13650c22016-09-15 10:56:26 -04001227 rpcrdma_free_regbuf(req->rl_recvbuf);
1228 rpcrdma_free_regbuf(req->rl_sendbuf);
1229 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001230 kfree(req);
1231}
1232
Chuck Levere2ac2362016-06-29 13:54:00 -04001233static void
1234rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf)
1235{
1236 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1237 rx_buf);
1238 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
1239 struct rpcrdma_mw *mw;
1240 unsigned int count;
1241
1242 count = 0;
1243 spin_lock(&buf->rb_mwlock);
1244 while (!list_empty(&buf->rb_all)) {
1245 mw = list_entry(buf->rb_all.next, struct rpcrdma_mw, mw_all);
1246 list_del(&mw->mw_all);
1247
1248 spin_unlock(&buf->rb_mwlock);
1249 ia->ri_ops->ro_release_mr(mw);
1250 count++;
1251 spin_lock(&buf->rb_mwlock);
1252 }
1253 spin_unlock(&buf->rb_mwlock);
1254 r_xprt->rx_stats.mrs_allocated = 0;
1255
1256 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1257}
1258
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001259void
1260rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1261{
Chuck Lever505bbe62016-06-29 13:52:54 -04001262 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001263 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001264
Chuck Leverae729502017-10-20 10:48:12 -04001265 rpcrdma_sendctxs_destroy(buf);
1266
Chuck Lever1e465fd2015-10-24 17:27:02 -04001267 while (!list_empty(&buf->rb_recv_bufs)) {
1268 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001269
Chuck Lever1e465fd2015-10-24 17:27:02 -04001270 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001271 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001272 }
Chuck Lever05c97462016-09-06 11:22:58 -04001273 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001274
Chuck Leverf531a5d2015-10-24 17:27:43 -04001275 spin_lock(&buf->rb_reqslock);
1276 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001277 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001278
Chuck Leverf531a5d2015-10-24 17:27:43 -04001279 req = list_first_entry(&buf->rb_allreqs,
1280 struct rpcrdma_req, rl_all);
1281 list_del(&req->rl_all);
1282
1283 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001284 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001285 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001286 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001287 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001288 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001289
Chuck Levere2ac2362016-06-29 13:54:00 -04001290 rpcrdma_destroy_mrs(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001291}
1292
Chuck Lever346aa662015-05-26 11:52:06 -04001293struct rpcrdma_mw *
1294rpcrdma_get_mw(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;
1297 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001298
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001299 spin_lock(&buf->rb_mwlock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001300 if (!list_empty(&buf->rb_mws))
1301 mw = rpcrdma_pop_mw(&buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001302 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001303
1304 if (!mw)
Chuck Levere2ac2362016-06-29 13:54:00 -04001305 goto out_nomws;
Chuck Lever346aa662015-05-26 11:52:06 -04001306 return mw;
Chuck Levere2ac2362016-06-29 13:54:00 -04001307
1308out_nomws:
1309 dprintk("RPC: %s: no MWs available\n", __func__);
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 Lever346aa662015-05-26 11:52:06 -04001319void
1320rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -04001321{
Chuck Lever346aa662015-05-26 11:52:06 -04001322 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -04001323
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001324 spin_lock(&buf->rb_mwlock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001325 rpcrdma_push_mw(mw, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001326 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -04001327}
1328
Chuck Lever05c97462016-09-06 11:22:58 -04001329static struct rpcrdma_rep *
1330rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1331{
1332 /* If an RPC previously completed without a reply (say, a
1333 * credential problem or a soft timeout occurs) then hold off
1334 * on supplying more Receive buffers until the number of new
1335 * pending RPCs catches up to the number of posted Receives.
1336 */
1337 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1338 return NULL;
1339
1340 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1341 return NULL;
1342 buffers->rb_recv_count++;
1343 return rpcrdma_buffer_get_rep_locked(buffers);
1344}
1345
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001346/*
1347 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001348 *
1349 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001350 */
1351struct rpcrdma_req *
1352rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1353{
1354 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001355
Chuck Levera5b027e2015-10-24 17:27:27 -04001356 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001357 if (list_empty(&buffers->rb_send_bufs))
1358 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001359 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001360 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001361 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001362 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001363 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001364
Chuck Lever1e465fd2015-10-24 17:27:02 -04001365out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001366 spin_unlock(&buffers->rb_lock);
Chuck Lever78d506e2016-09-06 11:22:49 -04001367 pr_warn("RPC: %s: out of request buffers\n", __func__);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001368 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001369}
1370
1371/*
1372 * Put request/reply buffers back into pool.
1373 * Pre-decrement counter/array index.
1374 */
1375void
1376rpcrdma_buffer_put(struct rpcrdma_req *req)
1377{
1378 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001379 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001380
Chuck Lever1e465fd2015-10-24 17:27:02 -04001381 req->rl_reply = NULL;
1382
Chuck Levera5b027e2015-10-24 17:27:27 -04001383 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001384 buffers->rb_send_count--;
Chuck Levera80d66c2017-06-08 11:52:12 -04001385 list_add_tail(&req->rl_list, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001386 if (rep) {
1387 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001388 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001389 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001390 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001391}
1392
1393/*
1394 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001395 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001396 */
1397void
1398rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1399{
1400 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001401
Chuck Levera5b027e2015-10-24 17:27:27 -04001402 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001403 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001404 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001405}
1406
1407/*
1408 * Put reply buffers back into pool when not attached to
1409 * request. This happens in error conditions.
1410 */
1411void
1412rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1413{
Chuck Leverfed171b2015-05-26 11:51:37 -04001414 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001415
Chuck Levera5b027e2015-10-24 17:27:27 -04001416 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001417 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001418 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001419 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001420}
1421
Chuck Lever9128c3e2015-01-21 11:04:00 -05001422/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001423 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001424 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001425 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001426 * @flags: GFP flags
1427 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001428 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1429 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001430 *
1431 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001432 * receiving the payload of RDMA RECV operations. During Long Calls
1433 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001434 */
1435struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001436rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1437 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001438{
1439 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001440
Chuck Lever9128c3e2015-01-21 11:04:00 -05001441 rb = kmalloc(sizeof(*rb) + size, flags);
1442 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001443 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001444
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001445 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001446 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001447 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001448
1449 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001450}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001451
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001452/**
1453 * __rpcrdma_map_regbuf - DMA-map a regbuf
1454 * @ia: controlling rpcrdma_ia
1455 * @rb: regbuf to be mapped
1456 */
1457bool
1458__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1459{
Chuck Lever91a10c52017-04-11 13:23:02 -04001460 struct ib_device *device = ia->ri_device;
1461
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001462 if (rb->rg_direction == DMA_NONE)
1463 return false;
1464
Chuck Lever91a10c52017-04-11 13:23:02 -04001465 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001466 (void *)rb->rg_base,
1467 rdmab_length(rb),
1468 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001469 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001470 return false;
1471
Chuck Lever91a10c52017-04-11 13:23:02 -04001472 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001473 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1474 return true;
1475}
1476
1477static void
1478rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1479{
1480 if (!rpcrdma_regbuf_is_mapped(rb))
1481 return;
1482
1483 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1484 rdmab_length(rb), rb->rg_direction);
1485 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001486}
1487
1488/**
1489 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001490 * @rb: regbuf to be deregistered and freed
1491 */
1492void
Chuck Lever13650c22016-09-15 10:56:26 -04001493rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001494{
Chuck Levere531dca2015-08-03 13:03:20 -04001495 if (!rb)
1496 return;
1497
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001498 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001499 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001500}
1501
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001502/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001503 * Prepost any receive buffer, then post send.
1504 *
1505 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1506 */
1507int
1508rpcrdma_ep_post(struct rpcrdma_ia *ia,
1509 struct rpcrdma_ep *ep,
1510 struct rpcrdma_req *req)
1511{
Chuck Leverae729502017-10-20 10:48:12 -04001512 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
Chuck Lever90aab602016-09-15 10:56:43 -04001513 struct ib_send_wr *send_wr_fail;
Chuck Lever655fec62016-09-15 10:57:24 -04001514 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001515
Chuck Lever90aab602016-09-15 10:56:43 -04001516 if (req->rl_reply) {
1517 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001518 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001519 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001520 req->rl_reply = NULL;
1521 }
1522
Chuck Leverb3221d62015-08-03 13:03:39 -04001523 dprintk("RPC: %s: posting %d s/g entries\n",
Chuck Lever90aab602016-09-15 10:56:43 -04001524 __func__, send_wr->num_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001525
Chuck Lever01bb35c2017-10-20 10:48:36 -04001526 if (!ep->rep_send_count ||
1527 test_bit(RPCRDMA_REQ_F_TX_RESOURCES, &req->rl_flags)) {
Chuck Leverae729502017-10-20 10:48:12 -04001528 send_wr->send_flags |= IB_SEND_SIGNALED;
1529 ep->rep_send_count = ep->rep_send_batch;
1530 } else {
1531 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1532 --ep->rep_send_count;
1533 }
Chuck Lever90aab602016-09-15 10:56:43 -04001534 rc = ib_post_send(ia->ri_id->qp, send_wr, &send_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001535 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001536 goto out_postsend_err;
1537 return 0;
1538
1539out_postsend_err:
1540 pr_err("rpcrdma: RDMA Send ib_post_send returned %i\n", rc);
1541 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001542}
1543
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001544int
1545rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001546 struct rpcrdma_rep *rep)
1547{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001548 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001549 int rc;
1550
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001551 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1552 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001553 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001554 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001555 goto out_postrecv;
1556 return 0;
1557
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001558out_map:
1559 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1560 return -EIO;
1561
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001562out_postrecv:
1563 pr_err("rpcrdma: ib_post_recv returned %i\n", rc);
1564 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001565}
Chuck Lever43e95982014-07-29 17:23:34 -04001566
Chuck Leverf531a5d2015-10-24 17:27:43 -04001567/**
1568 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1569 * @r_xprt: transport associated with these backchannel resources
1570 * @min_reqs: minimum number of incoming requests expected
1571 *
1572 * Returns zero if all requested buffers were posted, or a negative errno.
1573 */
1574int
1575rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1576{
1577 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1578 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001579 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001580 int rc;
1581
1582 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001583 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001584 if (list_empty(&buffers->rb_recv_bufs))
1585 goto out_reqbuf;
1586 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001587 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001588
Chuck Leverb1573802016-09-15 10:56:35 -04001589 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001590 if (rc)
1591 goto out_rc;
1592 }
1593
1594 return 0;
1595
1596out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001597 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001598 pr_warn("%s: no extra receive buffers\n", __func__);
1599 return -ENOMEM;
1600
1601out_rc:
1602 rpcrdma_recv_buffer_put(rep);
1603 return rc;
1604}