blob: d8ed69442219003938653cc62e45dd0900381f7b [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 Leverf3c66a22019-08-19 18:40:11 -040056#include <linux/log2.h>
Chuck Leverae729502017-10-20 10:48:12 -040057
58#include <asm-generic/barrier.h>
Chuck Lever65866f82014-05-28 10:33:59 -040059#include <asm/bitops.h>
Chuck Lever56a6bd12017-04-11 13:23:34 -040060
Chuck Lever0a904872017-02-08 17:00:35 -050061#include <rdma/ib_cm.h>
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040062
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040063#include "xprt_rdma.h"
Chuck Leverb6e717cb2018-05-07 15:27:05 -040064#include <trace/events/rpcrdma.h>
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040065
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040066/*
67 * Globals/Macros
68 */
69
Jeff Laytonf895b252014-11-17 16:58:04 -050070#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040071# define RPCDBG_FACILITY RPCDBG_TRANS
72#endif
73
74/*
75 * internal functions
76 */
Chuck Levercb586de2020-01-03 11:56:32 -050077static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt);
78static void rpcrdma_sendctxs_destroy(struct rpcrdma_xprt *r_xprt);
Chuck Leverf9958792019-10-17 14:31:18 -040079static void rpcrdma_sendctx_put_locked(struct rpcrdma_xprt *r_xprt,
80 struct rpcrdma_sendctx *sc);
Chuck Leverb78de1d2020-01-03 11:56:53 -050081static int rpcrdma_reqs_setup(struct rpcrdma_xprt *r_xprt);
Chuck Levera31b2f92019-10-09 13:07:27 -040082static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt);
Chuck Lever85810382020-01-03 11:56:58 -050083static void rpcrdma_rep_destroy(struct rpcrdma_rep *rep);
Chuck Lever671c4502020-01-03 11:52:22 -050084static void rpcrdma_reps_unmap(struct rpcrdma_xprt *r_xprt);
Chuck Lever96cedde2017-12-14 20:57:55 -050085static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
Chuck Lever9d2da4f2019-10-09 13:07:48 -040086static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt);
Chuck Lever2acc5ca2020-06-15 09:20:52 -040087static void rpcrdma_ep_get(struct rpcrdma_ep *ep);
88static int rpcrdma_ep_put(struct rpcrdma_ep *ep);
Chuck Leverd2832af2019-04-24 09:39:32 -040089static struct rpcrdma_regbuf *
90rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
91 gfp_t flags);
92static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb);
93static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040094
Chuck Leverb8fe6772019-04-24 09:40:36 -040095/* Wait for outstanding transport work to finish. ib_drain_qp
96 * handles the drains in the wrong order for us, so open code
97 * them here.
Chuck Lever6d2d0ee2018-12-19 10:58:29 -050098 */
99static void rpcrdma_xprt_drain(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400100{
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400101 struct rpcrdma_ep *ep = r_xprt->rx_ep;
102 struct rdma_cm_id *id = ep->re_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400103
Chuck Lever15788d12021-04-19 14:02:09 -0400104 /* Wait for rpcrdma_post_recvs() to leave its critical
105 * section.
106 */
107 if (atomic_inc_return(&ep->re_receiving) > 1)
108 wait_for_completion(&ep->re_done);
109
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500110 /* Flush Receives, then wait for deferred Reply work
111 * to complete.
112 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500113 ib_drain_rq(id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400114
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500115 /* Deferred Reply processing might have scheduled
116 * local invalidations.
117 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500118 ib_drain_sq(id->qp);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400119
120 rpcrdma_ep_put(ep);
Chuck Leverf1a03b72014-11-08 20:14:37 -0500121}
122
Chuck Lever31e62d22018-10-01 14:26:08 -0400123/**
Chuck Leverf9521d52018-10-01 14:26:13 -0400124 * rpcrdma_qp_event_handler - Handle one QP event (error notification)
125 * @event: details of the event
126 * @context: ep that owns QP where event occurred
127 *
128 * Called from the RDMA provider (device driver) possibly in an interrupt
Chuck Lever745b7342020-02-21 17:01:00 -0500129 * context. The QP is always destroyed before the ID, so the ID will be
130 * reliably available when this handler is invoked.
Chuck Leverf9521d52018-10-01 14:26:13 -0400131 */
Chuck Lever745b7342020-02-21 17:01:00 -0500132static void rpcrdma_qp_event_handler(struct ib_event *event, void *context)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400133{
134 struct rpcrdma_ep *ep = context;
135
Chuck Lever745b7342020-02-21 17:01:00 -0500136 trace_xprtrdma_qp_event(ep, event);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400137}
138
Chuck Leverc487eb72020-06-15 09:21:07 -0400139/* Ensure xprt_force_disconnect() is invoked exactly once when a
140 * connection is closed or lost. (The important thing is it needs
141 * to be invoked "at least" once).
142 */
143static void rpcrdma_force_disconnect(struct rpcrdma_ep *ep)
144{
145 if (atomic_add_unless(&ep->re_force_disconnect, 1, 1))
146 xprt_force_disconnect(ep->re_xprt);
147}
148
Chuck Lever2fa8f882016-03-04 11:28:53 -0500149/**
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500150 * rpcrdma_flush_disconnect - Disconnect on flushed completion
Chuck Leverf423f752020-06-15 09:21:02 -0400151 * @r_xprt: transport to disconnect
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500152 * @wc: work completion entry
153 *
154 * Must be called in process context.
155 */
Chuck Leverf423f752020-06-15 09:21:02 -0400156void rpcrdma_flush_disconnect(struct rpcrdma_xprt *r_xprt, struct ib_wc *wc)
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500157{
Chuck Leverc487eb72020-06-15 09:21:07 -0400158 if (wc->status != IB_WC_SUCCESS)
159 rpcrdma_force_disconnect(r_xprt->rx_ep);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500160}
161
162/**
Chuck Lever2fa8f882016-03-04 11:28:53 -0500163 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
Chuck Leverf9958792019-10-17 14:31:18 -0400164 * @cq: completion queue
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500165 * @wc: WCE for a completed Send WR
Chuck Lever2fa8f882016-03-04 11:28:53 -0500166 *
Chuck Lever4220a072015-10-24 17:26:45 -0400167 */
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500168static void rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400169{
Chuck Leverae729502017-10-20 10:48:12 -0400170 struct ib_cqe *cqe = wc->wr_cqe;
171 struct rpcrdma_sendctx *sc =
172 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
Chuck Leverf423f752020-06-15 09:21:02 -0400173 struct rpcrdma_xprt *r_xprt = cq->cq_context;
Chuck Leverae729502017-10-20 10:48:12 -0400174
Chuck Lever2fa8f882016-03-04 11:28:53 -0500175 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leverb2e74672020-11-09 14:39:26 -0500176 trace_xprtrdma_wc_send(wc, &sc->sc_cid);
Chuck Leverf423f752020-06-15 09:21:02 -0400177 rpcrdma_sendctx_put_locked(r_xprt, sc);
178 rpcrdma_flush_disconnect(r_xprt, wc);
Chuck Leverfc664482014-05-28 10:33:25 -0400179}
180
Chuck Lever552bf222016-03-04 11:28:36 -0500181/**
Chuck Lever1519e962016-09-15 10:57:49 -0400182 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500183 * @cq: completion queue
184 * @wc: WCE for a completed Receive WR
Chuck Lever552bf222016-03-04 11:28:36 -0500185 *
186 */
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500187static void rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400188{
Chuck Lever552bf222016-03-04 11:28:36 -0500189 struct ib_cqe *cqe = wc->wr_cqe;
190 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
191 rr_cqe);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500192 struct rpcrdma_xprt *r_xprt = cq->cq_context;
Chuck Leverfc664482014-05-28 10:33:25 -0400193
Chuck Lever6ceea362018-12-19 10:58:24 -0500194 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leveraf5865d2020-11-09 14:39:21 -0500195 trace_xprtrdma_wc_receive(wc, &rep->rr_cid);
Chuck Levere28ce902020-02-21 17:01:05 -0500196 --r_xprt->rx_ep->re_receive_count;
Chuck Lever85024272015-01-21 11:02:04 -0500197 if (wc->status != IB_WC_SUCCESS)
Chuck Lever6ceea362018-12-19 10:58:24 -0500198 goto out_flushed;
Chuck Leverfc664482014-05-28 10:33:25 -0400199
Chuck Lever85024272015-01-21 11:02:04 -0500200 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever96f87782017-08-03 14:30:03 -0400201 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400202 rep->rr_wc_flags = wc->wc_flags;
203 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
204
Chuck Lever91a10c52017-04-11 13:23:02 -0400205 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500206 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400207 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500208
Chuck Leverd8f532d2017-10-16 15:01:30 -0400209 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500210 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400211
Chuck Lever6ceea362018-12-19 10:58:24 -0500212out_flushed:
Chuck Leverf423f752020-06-15 09:21:02 -0400213 rpcrdma_flush_disconnect(r_xprt, wc);
Chuck Lever85810382020-01-03 11:56:58 -0500214 rpcrdma_rep_destroy(rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400215}
216
Chuck Lever745b7342020-02-21 17:01:00 -0500217static void rpcrdma_update_cm_private(struct rpcrdma_ep *ep,
Chuck Leverf54c8702019-10-23 10:02:09 -0400218 struct rdma_conn_param *param)
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400219{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400220 const struct rpcrdma_connect_private *pmsg = param->private_data;
221 unsigned int rsize, wsize;
222
Chuck Leverc8b920b2016-09-15 10:57:16 -0400223 /* Default settings for RPC-over-RDMA Version One */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500224 ep->re_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400225 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
226 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
227
228 if (pmsg &&
229 pmsg->cp_magic == rpcrdma_cmp_magic &&
230 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Lever93aa8e02020-02-21 17:00:54 -0500231 ep->re_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400232 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
233 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
234 }
235
Chuck Lever93aa8e02020-02-21 17:00:54 -0500236 if (rsize < ep->re_inline_recv)
237 ep->re_inline_recv = rsize;
238 if (wsize < ep->re_inline_send)
239 ep->re_inline_send = wsize;
Chuck Leverf54c8702019-10-23 10:02:09 -0400240
Chuck Lever93aa8e02020-02-21 17:00:54 -0500241 rpcrdma_set_max_header_sizes(ep);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400242}
243
Chuck Leverae382882018-10-01 14:25:47 -0400244/**
245 * rpcrdma_cm_event_handler - Handle RDMA CM events
246 * @id: rdma_cm_id on which an event has occurred
247 * @event: details of the event
248 *
249 * Called with @id's mutex held. Returns 1 if caller should
250 * destroy @id, otherwise 0.
251 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400252static int
Chuck Leverae382882018-10-01 14:25:47 -0400253rpcrdma_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400254{
Chuck Lever745b7342020-02-21 17:01:00 -0500255 struct sockaddr *sap = (struct sockaddr *)&id->route.addr.dst_addr;
Chuck Levere28ce902020-02-21 17:01:05 -0500256 struct rpcrdma_ep *ep = id->context;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400257
Chuck Leverae382882018-10-01 14:25:47 -0400258 might_sleep();
259
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400260 switch (event->event) {
261 case RDMA_CM_EVENT_ADDR_RESOLVED:
262 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500263 ep->re_async_rc = 0;
264 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400265 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400266 case RDMA_CM_EVENT_ADDR_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500267 ep->re_async_rc = -EPROTO;
268 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400269 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400270 case RDMA_CM_EVENT_ROUTE_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500271 ep->re_async_rc = -ENETUNREACH;
272 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400273 return 0;
Chuck Leverbebd0312017-04-11 13:23:10 -0400274 case RDMA_CM_EVENT_DEVICE_REMOVAL:
Chuck Lever745b7342020-02-21 17:01:00 -0500275 pr_info("rpcrdma: removing device %s for %pISpc\n",
276 ep->re_id->device->name, sap);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500277 fallthrough;
Chuck Levere28ce902020-02-21 17:01:05 -0500278 case RDMA_CM_EVENT_ADDR_CHANGE:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500279 ep->re_connect_status = -ENODEV;
Chuck Levere28ce902020-02-21 17:01:05 -0500280 goto disconnected;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400281 case RDMA_CM_EVENT_ESTABLISHED:
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400282 rpcrdma_ep_get(ep);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500283 ep->re_connect_status = 1;
Chuck Lever745b7342020-02-21 17:01:00 -0500284 rpcrdma_update_cm_private(ep, &event->param.conn);
285 trace_xprtrdma_inline_thresh(ep);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500286 wake_up_all(&ep->re_connect_wait);
Chuck Lever31e62d22018-10-01 14:26:08 -0400287 break;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400288 case RDMA_CM_EVENT_CONNECT_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500289 ep->re_connect_status = -ENOTCONN;
Chuck Leveraf667522020-06-27 12:35:20 -0400290 goto wake_connect_worker;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400291 case RDMA_CM_EVENT_UNREACHABLE:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500292 ep->re_connect_status = -ENETUNREACH;
Chuck Leveraf667522020-06-27 12:35:20 -0400293 goto wake_connect_worker;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400294 case RDMA_CM_EVENT_REJECTED:
Chuck Lever745b7342020-02-21 17:01:00 -0500295 dprintk("rpcrdma: connection to %pISpc rejected: %s\n",
296 sap, rdma_reject_msg(id, event->status));
Chuck Lever93aa8e02020-02-21 17:00:54 -0500297 ep->re_connect_status = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500298 if (event->status == IB_CM_REJ_STALE_CONN)
Chuck Lever4cf44be2020-06-27 12:35:09 -0400299 ep->re_connect_status = -ENOTCONN;
Chuck Leveraf667522020-06-27 12:35:20 -0400300wake_connect_worker:
301 wake_up_all(&ep->re_connect_wait);
302 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400303 case RDMA_CM_EVENT_DISCONNECTED:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500304 ep->re_connect_status = -ECONNABORTED;
Chuck Lever31e62d22018-10-01 14:26:08 -0400305disconnected:
Chuck Leverc487eb72020-06-15 09:21:07 -0400306 rpcrdma_force_disconnect(ep);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400307 return rpcrdma_ep_put(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400308 default:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400309 break;
310 }
311
Chuck Lever745b7342020-02-21 17:01:00 -0500312 dprintk("RPC: %s: %pISpc on %s/frwr: %s\n", __func__, sap,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500313 ep->re_id->device->name, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400314 return 0;
315}
316
Chuck Lever93aa8e02020-02-21 17:00:54 -0500317static struct rdma_cm_id *rpcrdma_create_id(struct rpcrdma_xprt *r_xprt,
318 struct rpcrdma_ep *ep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400319{
Chuck Lever109b88a2016-11-29 10:52:40 -0500320 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500321 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400322 struct rdma_cm_id *id;
323 int rc;
324
Chuck Lever93aa8e02020-02-21 17:00:54 -0500325 init_completion(&ep->re_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400326
Chuck Levere28ce902020-02-21 17:01:05 -0500327 id = rdma_create_id(xprt->xprt_net, rpcrdma_cm_event_handler, ep,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500328 RDMA_PS_TCP, IB_QPT_RC);
Chuck Leverddbb3472018-12-19 10:59:39 -0500329 if (IS_ERR(id))
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400330 return id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400331
Chuck Lever93aa8e02020-02-21 17:00:54 -0500332 ep->re_async_rc = -ETIMEDOUT;
333 rc = rdma_resolve_addr(id, NULL, (struct sockaddr *)&xprt->addr,
Chuck Leverdd229ce2017-12-14 20:56:58 -0500334 RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500335 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400336 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500337 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
Chuck Lever7b020f12019-10-23 10:01:58 -0400338 if (rc < 0)
Chuck Lever109b88a2016-11-29 10:52:40 -0500339 goto out;
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400340
Chuck Lever93aa8e02020-02-21 17:00:54 -0500341 rc = ep->re_async_rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400342 if (rc)
343 goto out;
344
Chuck Lever93aa8e02020-02-21 17:00:54 -0500345 ep->re_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400346 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500347 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400348 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500349 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
Chuck Lever7b020f12019-10-23 10:01:58 -0400350 if (rc < 0)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400351 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500352 rc = ep->re_async_rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400353 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400354 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400355
356 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400357
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400358out:
359 rdma_destroy_id(id);
360 return ERR_PTR(rc);
361}
362
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400363static void rpcrdma_ep_destroy(struct kref *kref)
Chuck Levere28ce902020-02-21 17:01:05 -0500364{
365 struct rpcrdma_ep *ep = container_of(kref, struct rpcrdma_ep, re_kref);
366
367 if (ep->re_id->qp) {
368 rdma_destroy_qp(ep->re_id);
369 ep->re_id->qp = NULL;
370 }
371
372 if (ep->re_attr.recv_cq)
373 ib_free_cq(ep->re_attr.recv_cq);
374 ep->re_attr.recv_cq = NULL;
375 if (ep->re_attr.send_cq)
376 ib_free_cq(ep->re_attr.send_cq);
377 ep->re_attr.send_cq = NULL;
378
379 if (ep->re_pd)
380 ib_dealloc_pd(ep->re_pd);
381 ep->re_pd = NULL;
382
383 kfree(ep);
384 module_put(THIS_MODULE);
385}
386
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400387static noinline void rpcrdma_ep_get(struct rpcrdma_ep *ep)
388{
389 kref_get(&ep->re_kref);
390}
391
Chuck Levere28ce902020-02-21 17:01:05 -0500392/* Returns:
393 * %0 if @ep still has a positive kref count, or
394 * %1 if @ep was destroyed successfully.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400395 */
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400396static noinline int rpcrdma_ep_put(struct rpcrdma_ep *ep)
Chuck Levere28ce902020-02-21 17:01:05 -0500397{
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400398 return kref_put(&ep->re_kref, rpcrdma_ep_destroy);
Chuck Levere28ce902020-02-21 17:01:05 -0500399}
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400400
Chuck Lever81fe0c52020-02-21 17:00:38 -0500401static int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400402{
Chuck Levere28ce902020-02-21 17:01:05 -0500403 struct rpcrdma_connect_private *pmsg;
404 struct ib_device *device;
Chuck Lever81fe0c52020-02-21 17:00:38 -0500405 struct rdma_cm_id *id;
Chuck Levere28ce902020-02-21 17:01:05 -0500406 struct rpcrdma_ep *ep;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500407 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400408
Chuck Levere28ce902020-02-21 17:01:05 -0500409 ep = kzalloc(sizeof(*ep), GFP_NOFS);
410 if (!ep)
Chuck Leverdda9a952020-06-27 12:35:15 -0400411 return -ENOTCONN;
Chuck Levere28ce902020-02-21 17:01:05 -0500412 ep->re_xprt = &r_xprt->rx_xprt;
413 kref_init(&ep->re_kref);
414
Chuck Lever93aa8e02020-02-21 17:00:54 -0500415 id = rpcrdma_create_id(r_xprt, ep);
Chuck Levere28ce902020-02-21 17:01:05 -0500416 if (IS_ERR(id)) {
Chuck Lever85bfd712020-06-27 12:35:04 -0400417 kfree(ep);
418 return PTR_ERR(id);
Chuck Levere28ce902020-02-21 17:01:05 -0500419 }
420 __module_get(THIS_MODULE);
421 device = id->device;
422 ep->re_id = id;
Chuck Lever15788d12021-04-19 14:02:09 -0400423 reinit_completion(&ep->re_done);
Chuck Lever81fe0c52020-02-21 17:00:38 -0500424
Chuck Lever93aa8e02020-02-21 17:00:54 -0500425 ep->re_max_requests = r_xprt->rx_xprt.max_reqs;
426 ep->re_inline_send = xprt_rdma_max_inline_write;
427 ep->re_inline_recv = xprt_rdma_max_inline_read;
Chuck Levere28ce902020-02-21 17:01:05 -0500428 rc = frwr_query_device(ep, device);
Chuck Lever914fcad2018-05-04 15:34:48 -0400429 if (rc)
Chuck Lever81fe0c52020-02-21 17:00:38 -0500430 goto out_destroy;
431
Chuck Lever93aa8e02020-02-21 17:00:54 -0500432 r_xprt->rx_buf.rb_max_requests = cpu_to_be32(ep->re_max_requests);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400433
Chuck Lever93aa8e02020-02-21 17:00:54 -0500434 ep->re_attr.event_handler = rpcrdma_qp_event_handler;
435 ep->re_attr.qp_context = ep;
436 ep->re_attr.srq = NULL;
437 ep->re_attr.cap.max_inline_data = 0;
438 ep->re_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
439 ep->re_attr.qp_type = IB_QPT_RC;
440 ep->re_attr.port_num = ~0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400441
442 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
443 "iovs: send %d recv %d\n",
444 __func__,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500445 ep->re_attr.cap.max_send_wr,
446 ep->re_attr.cap.max_recv_wr,
447 ep->re_attr.cap.max_send_sge,
448 ep->re_attr.cap.max_recv_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400449
Chuck Lever93aa8e02020-02-21 17:00:54 -0500450 ep->re_send_batch = ep->re_max_requests >> 3;
451 ep->re_send_count = ep->re_send_batch;
452 init_waitqueue_head(&ep->re_connect_wait);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400453
Chuck Levere28ce902020-02-21 17:01:05 -0500454 ep->re_attr.send_cq = ib_alloc_cq_any(device, r_xprt,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500455 ep->re_attr.cap.max_send_wr,
456 IB_POLL_WORKQUEUE);
457 if (IS_ERR(ep->re_attr.send_cq)) {
458 rc = PTR_ERR(ep->re_attr.send_cq);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500459 goto out_destroy;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400460 }
461
Chuck Levere28ce902020-02-21 17:01:05 -0500462 ep->re_attr.recv_cq = ib_alloc_cq_any(device, r_xprt,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500463 ep->re_attr.cap.max_recv_wr,
464 IB_POLL_WORKQUEUE);
465 if (IS_ERR(ep->re_attr.recv_cq)) {
466 rc = PTR_ERR(ep->re_attr.recv_cq);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500467 goto out_destroy;
Chuck Leverfc664482014-05-28 10:33:25 -0400468 }
Chuck Lever93aa8e02020-02-21 17:00:54 -0500469 ep->re_receive_count = 0;
Chuck Leverfc664482014-05-28 10:33:25 -0400470
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400471 /* Initialize cma parameters */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500472 memset(&ep->re_remote_cma, 0, sizeof(ep->re_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400473
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400474 /* Prepare RDMA-CM private message */
Chuck Levere28ce902020-02-21 17:01:05 -0500475 pmsg = &ep->re_cm_private;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400476 pmsg->cp_magic = rpcrdma_cmp_magic;
477 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Lever5f624122018-12-19 10:59:01 -0500478 pmsg->cp_flags |= RPCRDMA_CMP_F_SND_W_INV_OK;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500479 pmsg->cp_send_size = rpcrdma_encode_buffer_size(ep->re_inline_send);
480 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(ep->re_inline_recv);
481 ep->re_remote_cma.private_data = pmsg;
482 ep->re_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400483
484 /* Client offers RDMA Read but does not initiate */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500485 ep->re_remote_cma.initiator_depth = 0;
486 ep->re_remote_cma.responder_resources =
Chuck Levere28ce902020-02-21 17:01:05 -0500487 min_t(int, U8_MAX, device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400488
Chuck Leverb2dde942016-05-02 14:43:03 -0400489 /* Limit transport retries so client can detect server
490 * GID changes quickly. RPC layer handles re-establishing
491 * transport connection and retransmission.
492 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500493 ep->re_remote_cma.retry_count = 6;
Chuck Leverb2dde942016-05-02 14:43:03 -0400494
495 /* RPC-over-RDMA handles its own flow control. In addition,
496 * make all RNR NAKs visible so we know that RPC-over-RDMA
497 * flow control is working correctly (no NAKs should be seen).
498 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500499 ep->re_remote_cma.flow_control = 0;
500 ep->re_remote_cma.rnr_retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400501
Chuck Levere28ce902020-02-21 17:01:05 -0500502 ep->re_pd = ib_alloc_pd(device, 0);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500503 if (IS_ERR(ep->re_pd)) {
504 rc = PTR_ERR(ep->re_pd);
Chuck Lever9ba373e2020-02-21 17:00:33 -0500505 goto out_destroy;
506 }
507
Chuck Lever93aa8e02020-02-21 17:00:54 -0500508 rc = rdma_create_qp(id, ep->re_pd, &ep->re_attr);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500509 if (rc)
510 goto out_destroy;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500511
Chuck Levere28ce902020-02-21 17:01:05 -0500512 r_xprt->rx_ep = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400513 return 0;
514
Chuck Lever85cd8e22020-02-21 17:00:12 -0500515out_destroy:
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400516 rpcrdma_ep_put(ep);
Chuck Lever81fe0c52020-02-21 17:00:38 -0500517 rdma_destroy_id(id);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400518 return rc;
519}
520
Chuck Levere28ce902020-02-21 17:01:05 -0500521/**
522 * rpcrdma_xprt_connect - Connect an unconnected transport
523 * @r_xprt: controlling transport instance
524 *
525 * Returns 0 on success or a negative errno.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400526 */
Chuck Lever9144a802020-02-21 17:00:28 -0500527int rpcrdma_xprt_connect(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400528{
Chuck Lever31e62d22018-10-01 14:26:08 -0400529 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
Chuck Levere28ce902020-02-21 17:01:05 -0500530 struct rpcrdma_ep *ep;
Chuck Lever18908962017-04-11 13:23:18 -0400531 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400532
Chuck Lever81fe0c52020-02-21 17:00:38 -0500533 rc = rpcrdma_ep_create(r_xprt);
534 if (rc)
Chuck Levere28ce902020-02-21 17:01:05 -0500535 return rc;
536 ep = r_xprt->rx_ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400537
Chuck Lever31e62d22018-10-01 14:26:08 -0400538 xprt_clear_connected(xprt);
Chuck Levereea63ca2019-10-09 13:07:32 -0400539 rpcrdma_reset_cwnd(r_xprt);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400540
541 /* Bump the ep's reference count while there are
542 * outstanding Receives.
543 */
544 rpcrdma_ep_get(ep);
Chuck Lever8d4fb8f2018-07-28 10:46:47 -0400545 rpcrdma_post_recvs(r_xprt, true);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400546
Chuck Lever93aa8e02020-02-21 17:00:54 -0500547 rc = rdma_connect(ep->re_id, &ep->re_remote_cma);
Chuck Leverddbb3472018-12-19 10:59:39 -0500548 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400549 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400550
Chuck Leverf9e1afe2019-08-26 13:12:51 -0400551 if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
552 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500553 wait_event_interruptible(ep->re_connect_wait,
554 ep->re_connect_status != 0);
555 if (ep->re_connect_status <= 0) {
Chuck Lever93aa8e02020-02-21 17:00:54 -0500556 rc = ep->re_connect_status;
Chuck Lever0a904872017-02-08 17:00:35 -0500557 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400558 }
559
Chuck Leverdda9a952020-06-27 12:35:15 -0400560 rc = rpcrdma_sendctxs_create(r_xprt);
561 if (rc) {
562 rc = -ENOTCONN;
Chuck Leverb78de1d2020-01-03 11:56:53 -0500563 goto out;
Chuck Leverdda9a952020-06-27 12:35:15 -0400564 }
565
566 rc = rpcrdma_reqs_setup(r_xprt);
567 if (rc) {
568 rc = -ENOTCONN;
569 goto out;
570 }
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400571 rpcrdma_mrs_create(r_xprt);
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400572
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400573out:
Chuck Lever7b020f12019-10-23 10:01:58 -0400574 trace_xprtrdma_connect(r_xprt, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400575 return rc;
576}
577
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500578/**
Chuck Lever9144a802020-02-21 17:00:28 -0500579 * rpcrdma_xprt_disconnect - Disconnect underlying transport
580 * @r_xprt: controlling transport instance
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400581 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400582 * Caller serializes. Either the transport send lock is held,
583 * or we're being called to destroy the transport.
Chuck Levere28ce902020-02-21 17:01:05 -0500584 *
585 * On return, @r_xprt is completely divested of all hardware
586 * resources and prepared for the next ->connect operation.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400587 */
Chuck Lever9144a802020-02-21 17:00:28 -0500588void rpcrdma_xprt_disconnect(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400589{
Chuck Levere28ce902020-02-21 17:01:05 -0500590 struct rpcrdma_ep *ep = r_xprt->rx_ep;
591 struct rdma_cm_id *id;
592 int rc;
Chuck Lever897b7be2020-02-21 17:00:44 -0500593
Chuck Levere28ce902020-02-21 17:01:05 -0500594 if (!ep)
Chuck Lever897b7be2020-02-21 17:00:44 -0500595 return;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500596
Chuck Levere28ce902020-02-21 17:01:05 -0500597 id = ep->re_id;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500598 rc = rdma_disconnect(id);
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500599 trace_xprtrdma_disconnect(r_xprt, rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400600
Chuck Levere28ce902020-02-21 17:01:05 -0500601 rpcrdma_xprt_drain(r_xprt);
Chuck Lever897b7be2020-02-21 17:00:44 -0500602 rpcrdma_reps_unmap(r_xprt);
Chuck Levera31b2f92019-10-09 13:07:27 -0400603 rpcrdma_reqs_reset(r_xprt);
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400604 rpcrdma_mrs_destroy(r_xprt);
Chuck Levercb586de2020-01-03 11:56:32 -0500605 rpcrdma_sendctxs_destroy(r_xprt);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500606
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400607 if (rpcrdma_ep_put(ep))
Chuck Lever897b7be2020-02-21 17:00:44 -0500608 rdma_destroy_id(id);
Chuck Levere28ce902020-02-21 17:01:05 -0500609
610 r_xprt->rx_ep = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400611}
612
Chuck Leverae729502017-10-20 10:48:12 -0400613/* Fixed-size circular FIFO queue. This implementation is wait-free and
614 * lock-free.
615 *
616 * Consumer is the code path that posts Sends. This path dequeues a
617 * sendctx for use by a Send operation. Multiple consumer threads
618 * are serialized by the RPC transport lock, which allows only one
619 * ->send_request call at a time.
620 *
621 * Producer is the code path that handles Send completions. This path
622 * enqueues a sendctx that has been completed. Multiple producer
623 * threads are serialized by the ib_poll_cq() function.
624 */
625
626/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
Chuck Leverb8fe6772019-04-24 09:40:36 -0400627 * queue activity, and rpcrdma_xprt_drain has flushed all remaining
628 * Send requests.
Chuck Leverae729502017-10-20 10:48:12 -0400629 */
Chuck Levercb586de2020-01-03 11:56:32 -0500630static void rpcrdma_sendctxs_destroy(struct rpcrdma_xprt *r_xprt)
Chuck Leverae729502017-10-20 10:48:12 -0400631{
Chuck Levercb586de2020-01-03 11:56:32 -0500632 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400633 unsigned long i;
634
Chuck Levercb586de2020-01-03 11:56:32 -0500635 if (!buf->rb_sc_ctxs)
636 return;
Chuck Leverae729502017-10-20 10:48:12 -0400637 for (i = 0; i <= buf->rb_sc_last; i++)
638 kfree(buf->rb_sc_ctxs[i]);
639 kfree(buf->rb_sc_ctxs);
Chuck Levercb586de2020-01-03 11:56:32 -0500640 buf->rb_sc_ctxs = NULL;
Chuck Leverae729502017-10-20 10:48:12 -0400641}
642
Chuck Lever2e870362020-01-03 11:56:27 -0500643static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ep *ep)
Chuck Leverae729502017-10-20 10:48:12 -0400644{
645 struct rpcrdma_sendctx *sc;
646
Chuck Lever93aa8e02020-02-21 17:00:54 -0500647 sc = kzalloc(struct_size(sc, sc_sges, ep->re_attr.cap.max_send_sge),
Chuck Leverae729502017-10-20 10:48:12 -0400648 GFP_KERNEL);
649 if (!sc)
650 return NULL;
651
Chuck Leverae729502017-10-20 10:48:12 -0400652 sc->sc_cqe.done = rpcrdma_wc_send;
Chuck Leverb2e74672020-11-09 14:39:26 -0500653 sc->sc_cid.ci_queue_id = ep->re_attr.send_cq->res.id;
654 sc->sc_cid.ci_completion_id =
655 atomic_inc_return(&ep->re_completion_ids);
Chuck Leverae729502017-10-20 10:48:12 -0400656 return sc;
657}
658
659static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
660{
661 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
662 struct rpcrdma_sendctx *sc;
663 unsigned long i;
664
665 /* Maximum number of concurrent outstanding Send WRs. Capping
666 * the circular queue size stops Send Queue overflow by causing
667 * the ->send_request call to fail temporarily before too many
668 * Sends are posted.
669 */
Chuck Levere28ce902020-02-21 17:01:05 -0500670 i = r_xprt->rx_ep->re_max_requests + RPCRDMA_MAX_BC_REQUESTS;
Chuck Leverae729502017-10-20 10:48:12 -0400671 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
672 if (!buf->rb_sc_ctxs)
673 return -ENOMEM;
674
675 buf->rb_sc_last = i - 1;
676 for (i = 0; i <= buf->rb_sc_last; i++) {
Chuck Levere28ce902020-02-21 17:01:05 -0500677 sc = rpcrdma_sendctx_create(r_xprt->rx_ep);
Chuck Leverae729502017-10-20 10:48:12 -0400678 if (!sc)
Dan Carpenter6e17f582019-01-05 16:06:48 +0300679 return -ENOMEM;
Chuck Leverae729502017-10-20 10:48:12 -0400680
Chuck Leverae729502017-10-20 10:48:12 -0400681 buf->rb_sc_ctxs[i] = sc;
682 }
683
Chuck Levercb586de2020-01-03 11:56:32 -0500684 buf->rb_sc_head = 0;
685 buf->rb_sc_tail = 0;
Chuck Leverae729502017-10-20 10:48:12 -0400686 return 0;
Chuck Leverae729502017-10-20 10:48:12 -0400687}
688
689/* The sendctx queue is not guaranteed to have a size that is a
690 * power of two, thus the helpers in circ_buf.h cannot be used.
691 * The other option is to use modulus (%), which can be expensive.
692 */
693static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
694 unsigned long item)
695{
696 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
697}
698
699/**
700 * rpcrdma_sendctx_get_locked - Acquire a send context
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400701 * @r_xprt: controlling transport instance
Chuck Leverae729502017-10-20 10:48:12 -0400702 *
703 * Returns pointer to a free send completion context; or NULL if
704 * the queue is empty.
705 *
706 * Usage: Called to acquire an SGE array before preparing a Send WR.
707 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400708 * The caller serializes calls to this function (per transport), and
709 * provides an effective memory barrier that flushes the new value
Chuck Leverae729502017-10-20 10:48:12 -0400710 * of rb_sc_head.
711 */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400712struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_xprt *r_xprt)
Chuck Leverae729502017-10-20 10:48:12 -0400713{
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400714 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400715 struct rpcrdma_sendctx *sc;
716 unsigned long next_head;
717
718 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
719
720 if (next_head == READ_ONCE(buf->rb_sc_tail))
721 goto out_emptyq;
722
723 /* ORDER: item must be accessed _before_ head is updated */
724 sc = buf->rb_sc_ctxs[next_head];
725
726 /* Releasing the lock in the caller acts as a memory
727 * barrier that flushes rb_sc_head.
728 */
729 buf->rb_sc_head = next_head;
730
731 return sc;
732
733out_emptyq:
734 /* The queue is "empty" if there have not been enough Send
735 * completions recently. This is a sign the Send Queue is
736 * backing up. Cause the caller to pause and try again.
737 */
Chuck Lever05eb06d2019-06-19 10:32:48 -0400738 xprt_wait_for_buffer_space(&r_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400739 r_xprt->rx_stats.empty_sendctx_q++;
740 return NULL;
741}
742
743/**
744 * rpcrdma_sendctx_put_locked - Release a send context
Chuck Leverf9958792019-10-17 14:31:18 -0400745 * @r_xprt: controlling transport instance
Chuck Leverae729502017-10-20 10:48:12 -0400746 * @sc: send context to release
747 *
748 * Usage: Called from Send completion to return a sendctxt
749 * to the queue.
750 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400751 * The caller serializes calls to this function (per transport).
Chuck Leverae729502017-10-20 10:48:12 -0400752 */
Chuck Leverf9958792019-10-17 14:31:18 -0400753static void rpcrdma_sendctx_put_locked(struct rpcrdma_xprt *r_xprt,
754 struct rpcrdma_sendctx *sc)
Chuck Leverae729502017-10-20 10:48:12 -0400755{
Chuck Leverf9958792019-10-17 14:31:18 -0400756 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400757 unsigned long next_tail;
758
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400759 /* Unmap SGEs of previously completed but unsignaled
Chuck Leverae729502017-10-20 10:48:12 -0400760 * Sends by walking up the queue until @sc is found.
761 */
762 next_tail = buf->rb_sc_tail;
763 do {
764 next_tail = rpcrdma_sendctx_next(buf, next_tail);
765
766 /* ORDER: item must be accessed _before_ tail is updated */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400767 rpcrdma_sendctx_unmap(buf->rb_sc_ctxs[next_tail]);
Chuck Leverae729502017-10-20 10:48:12 -0400768
769 } while (buf->rb_sc_ctxs[next_tail] != sc);
770
771 /* Paired with READ_ONCE */
772 smp_store_release(&buf->rb_sc_tail, next_tail);
Chuck Lever2fad6592018-05-04 15:35:57 -0400773
Chuck Leverf9958792019-10-17 14:31:18 -0400774 xprt_write_space(&r_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400775}
776
Chuck Lever505bbe62016-06-29 13:52:54 -0400777static void
Chuck Lever96cedde2017-12-14 20:57:55 -0500778rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -0400779{
780 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -0500781 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Levere2ac2362016-06-29 13:54:00 -0400782 unsigned int count;
Chuck Levere2ac2362016-06-29 13:54:00 -0400783
Chuck Lever93aa8e02020-02-21 17:00:54 -0500784 for (count = 0; count < ep->re_max_rdma_segs; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500785 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -0400786 int rc;
787
Chuck Lever805a1f62019-08-19 18:46:24 -0400788 mr = kzalloc(sizeof(*mr), GFP_NOFS);
Chuck Lever96cedde2017-12-14 20:57:55 -0500789 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -0400790 break;
791
Chuck Lever253a5162020-02-21 17:00:17 -0500792 rc = frwr_mr_init(r_xprt, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400793 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500794 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400795 break;
796 }
797
Chuck Lever4d6b8892019-08-19 18:47:57 -0400798 spin_lock(&buf->rb_lock);
Chuck Leverc3700782019-10-09 13:07:43 -0400799 rpcrdma_mr_push(mr, &buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -0400800 list_add(&mr->mr_all, &buf->rb_all_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -0400801 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -0400802 }
803
Chuck Levere2ac2362016-06-29 13:54:00 -0400804 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever1c443eff2017-12-20 16:31:21 -0500805 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Levere2ac2362016-06-29 13:54:00 -0400806}
807
808static void
809rpcrdma_mr_refresh_worker(struct work_struct *work)
810{
811 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
Chuck Lever3b39f522019-08-19 18:45:37 -0400812 rb_refresh_worker);
Chuck Levere2ac2362016-06-29 13:54:00 -0400813 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
814 rx_buf);
815
Chuck Lever96cedde2017-12-14 20:57:55 -0500816 rpcrdma_mrs_create(r_xprt);
Chuck Lever05eb06d2019-06-19 10:32:48 -0400817 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -0400818}
819
Chuck Lever1769e6a2019-04-24 09:39:05 -0400820/**
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400821 * rpcrdma_mrs_refresh - Wake the MR refresh worker
822 * @r_xprt: controlling transport instance
823 *
824 */
825void rpcrdma_mrs_refresh(struct rpcrdma_xprt *r_xprt)
826{
827 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -0500828 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400829
Chuck Lever897b7be2020-02-21 17:00:44 -0500830 /* If there is no underlying connection, it's no use
831 * to wake the refresh worker.
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400832 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500833 if (ep->re_connect_status == 1) {
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400834 /* The work is scheduled on a WQ_MEM_RECLAIM
835 * workqueue in order to prevent MR allocation
836 * from recursing into NFS during direct reclaim.
837 */
838 queue_work(xprtiod_workqueue, &buf->rb_refresh_worker);
839 }
840}
841
842/**
Chuck Lever1769e6a2019-04-24 09:39:05 -0400843 * rpcrdma_req_create - Allocate an rpcrdma_req object
844 * @r_xprt: controlling r_xprt
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400845 * @size: initial size, in bytes, of send and receive buffers
Chuck Lever1769e6a2019-04-24 09:39:05 -0400846 * @flags: GFP flags passed to memory allocators
847 *
848 * Returns an allocated and fully initialized rpcrdma_req or NULL.
849 */
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400850struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt, size_t size,
851 gfp_t flags)
Chuck Lever13924022015-01-21 11:03:52 -0500852{
Chuck Leverf531a5d2015-10-24 17:27:43 -0400853 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500854 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500855
Chuck Lever1769e6a2019-04-24 09:39:05 -0400856 req = kzalloc(sizeof(*req), flags);
Chuck Lever13924022015-01-21 11:03:52 -0500857 if (req == NULL)
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400858 goto out1;
Chuck Lever13924022015-01-21 11:03:52 -0500859
Chuck Leverd2832af2019-04-24 09:39:32 -0400860 req->rl_sendbuf = rpcrdma_regbuf_alloc(size, DMA_TO_DEVICE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400861 if (!req->rl_sendbuf)
Chuck Leverb78de1d2020-01-03 11:56:53 -0500862 goto out2;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400863
Chuck Leverd2832af2019-04-24 09:39:32 -0400864 req->rl_recvbuf = rpcrdma_regbuf_alloc(size, DMA_NONE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400865 if (!req->rl_recvbuf)
Chuck Leverb78de1d2020-01-03 11:56:53 -0500866 goto out3;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400867
Chuck Lever6dc6ec92019-08-19 18:47:10 -0400868 INIT_LIST_HEAD(&req->rl_free_mrs);
Chuck Lever2dd4a012018-02-28 15:31:05 -0500869 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever92f44332018-12-19 10:59:33 -0500870 spin_lock(&buffer->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400871 list_add(&req->rl_all, &buffer->rb_allreqs);
Chuck Lever92f44332018-12-19 10:59:33 -0500872 spin_unlock(&buffer->rb_lock);
Chuck Lever13924022015-01-21 11:03:52 -0500873 return req;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400874
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400875out3:
Chuck Leverb78de1d2020-01-03 11:56:53 -0500876 kfree(req->rl_sendbuf);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400877out2:
878 kfree(req);
879out1:
880 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -0500881}
882
Chuck Levera31b2f92019-10-09 13:07:27 -0400883/**
Chuck Leverb78de1d2020-01-03 11:56:53 -0500884 * rpcrdma_req_setup - Per-connection instance setup of an rpcrdma_req object
Chuck Levera31b2f92019-10-09 13:07:27 -0400885 * @r_xprt: controlling transport instance
Chuck Leverb78de1d2020-01-03 11:56:53 -0500886 * @req: rpcrdma_req object to set up
Chuck Levera31b2f92019-10-09 13:07:27 -0400887 *
Chuck Leverb78de1d2020-01-03 11:56:53 -0500888 * Returns zero on success, and a negative errno on failure.
889 */
890int rpcrdma_req_setup(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
891{
892 struct rpcrdma_regbuf *rb;
893 size_t maxhdrsize;
894
895 /* Compute maximum header buffer size in bytes */
896 maxhdrsize = rpcrdma_fixed_maxsz + 3 +
Chuck Levere28ce902020-02-21 17:01:05 -0500897 r_xprt->rx_ep->re_max_rdma_segs * rpcrdma_readchunk_maxsz;
Chuck Leverb78de1d2020-01-03 11:56:53 -0500898 maxhdrsize *= sizeof(__be32);
899 rb = rpcrdma_regbuf_alloc(__roundup_pow_of_two(maxhdrsize),
900 DMA_TO_DEVICE, GFP_KERNEL);
901 if (!rb)
902 goto out;
903
904 if (!__rpcrdma_regbuf_dma_map(r_xprt, rb))
905 goto out_free;
906
907 req->rl_rdmabuf = rb;
908 xdr_buf_init(&req->rl_hdrbuf, rdmab_data(rb), rdmab_length(rb));
909 return 0;
910
911out_free:
912 rpcrdma_regbuf_free(rb);
913out:
914 return -ENOMEM;
915}
916
917/* ASSUMPTION: the rb_allreqs list is stable for the duration,
918 * and thus can be walked without holding rb_lock. Eg. the
919 * caller is holding the transport send lock to exclude
920 * device removal or disconnection.
921 */
922static int rpcrdma_reqs_setup(struct rpcrdma_xprt *r_xprt)
923{
924 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
925 struct rpcrdma_req *req;
926 int rc;
927
928 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
929 rc = rpcrdma_req_setup(r_xprt, req);
930 if (rc)
931 return rc;
932 }
933 return 0;
934}
935
936static void rpcrdma_req_reset(struct rpcrdma_req *req)
937{
938 /* Credits are valid for only one connection */
939 req->rl_slot.rq_cong = 0;
940
941 rpcrdma_regbuf_free(req->rl_rdmabuf);
942 req->rl_rdmabuf = NULL;
943
944 rpcrdma_regbuf_dma_unmap(req->rl_sendbuf);
945 rpcrdma_regbuf_dma_unmap(req->rl_recvbuf);
Chuck Lever5de55ce2020-08-17 11:19:26 -0400946
947 frwr_reset(req);
Chuck Leverb78de1d2020-01-03 11:56:53 -0500948}
949
950/* ASSUMPTION: the rb_allreqs list is stable for the duration,
Chuck Levera31b2f92019-10-09 13:07:27 -0400951 * and thus can be walked without holding rb_lock. Eg. the
952 * caller is holding the transport send lock to exclude
953 * device removal or disconnection.
954 */
955static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt)
956{
957 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
958 struct rpcrdma_req *req;
959
Chuck Leverb78de1d2020-01-03 11:56:53 -0500960 list_for_each_entry(req, &buf->rb_allreqs, rl_all)
961 rpcrdma_req_reset(req);
Chuck Levera31b2f92019-10-09 13:07:27 -0400962}
963
Chuck Lever85810382020-01-03 11:56:58 -0500964/* No locking needed here. This function is called only by the
965 * Receive completion handler.
966 */
Chuck Levere515dd92020-01-03 11:57:09 -0500967static noinline
968struct rpcrdma_rep *rpcrdma_rep_create(struct rpcrdma_xprt *r_xprt,
969 bool temp)
Chuck Lever13924022015-01-21 11:03:52 -0500970{
Chuck Lever13924022015-01-21 11:03:52 -0500971 struct rpcrdma_rep *rep;
Chuck Lever13924022015-01-21 11:03:52 -0500972
Chuck Lever6b1184c2015-01-21 11:04:25 -0500973 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500974 if (rep == NULL)
975 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500976
Chuck Levere28ce902020-02-21 17:01:05 -0500977 rep->rr_rdmabuf = rpcrdma_regbuf_alloc(r_xprt->rx_ep->re_inline_recv,
Chuck Lever99ef4db2016-09-15 10:56:10 -0400978 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever8cec3db2019-04-24 09:39:16 -0400979 if (!rep->rr_rdmabuf)
Chuck Lever13924022015-01-21 11:03:52 -0500980 goto out_free;
Chuck Lever379d1bc2019-06-19 10:33:20 -0400981
Chuck Levere515dd92020-01-03 11:57:09 -0500982 if (!rpcrdma_regbuf_dma_map(r_xprt, rep->rr_rdmabuf))
983 goto out_free_regbuf;
984
Chuck Leveraf5865d2020-11-09 14:39:21 -0500985 rep->rr_cid.ci_completion_id =
986 atomic_inc_return(&r_xprt->rx_ep->re_completion_ids);
987
Chuck Lever8cec3db2019-04-24 09:39:16 -0400988 xdr_buf_init(&rep->rr_hdrbuf, rdmab_data(rep->rr_rdmabuf),
Chuck Lever96f87782017-08-03 14:30:03 -0400989 rdmab_length(rep->rr_rdmabuf));
Chuck Lever1519e962016-09-15 10:57:49 -0400990 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -0400991 rep->rr_rxprt = r_xprt;
Chuck Lever6ea8e712016-09-15 10:56:51 -0400992 rep->rr_recv_wr.next = NULL;
993 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
994 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
995 rep->rr_recv_wr.num_sge = 1;
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400996 rep->rr_temp = temp;
Chuck Lever671c4502020-01-03 11:52:22 -0500997 list_add(&rep->rr_all, &r_xprt->rx_buf.rb_all_reps);
Chuck Lever379d1bc2019-06-19 10:33:20 -0400998 return rep;
Chuck Lever13924022015-01-21 11:03:52 -0500999
Chuck Levere515dd92020-01-03 11:57:09 -05001000out_free_regbuf:
1001 rpcrdma_regbuf_free(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001002out_free:
1003 kfree(rep);
1004out:
Chuck Lever379d1bc2019-06-19 10:33:20 -04001005 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -05001006}
1007
Chuck Lever85810382020-01-03 11:56:58 -05001008/* No locking needed here. This function is invoked only by the
1009 * Receive completion handler, or during transport shutdown.
1010 */
Chuck Leverb0b227f2019-08-19 18:48:43 -04001011static void rpcrdma_rep_destroy(struct rpcrdma_rep *rep)
1012{
Chuck Lever671c4502020-01-03 11:52:22 -05001013 list_del(&rep->rr_all);
Chuck Leverb0b227f2019-08-19 18:48:43 -04001014 rpcrdma_regbuf_free(rep->rr_rdmabuf);
1015 kfree(rep);
1016}
1017
1018static struct rpcrdma_rep *rpcrdma_rep_get_locked(struct rpcrdma_buffer *buf)
1019{
1020 struct llist_node *node;
1021
1022 /* Calls to llist_del_first are required to be serialized */
1023 node = llist_del_first(&buf->rb_free_reps);
1024 if (!node)
1025 return NULL;
1026 return llist_entry(node, struct rpcrdma_rep, rr_node);
1027}
1028
1029static void rpcrdma_rep_put(struct rpcrdma_buffer *buf,
1030 struct rpcrdma_rep *rep)
1031{
Chuck Lever671c4502020-01-03 11:52:22 -05001032 llist_add(&rep->rr_node, &buf->rb_free_reps);
1033}
1034
1035static void rpcrdma_reps_unmap(struct rpcrdma_xprt *r_xprt)
1036{
1037 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1038 struct rpcrdma_rep *rep;
1039
Chuck Leverb7ff0182020-01-03 11:57:04 -05001040 list_for_each_entry(rep, &buf->rb_all_reps, rr_all) {
Chuck Lever671c4502020-01-03 11:52:22 -05001041 rpcrdma_regbuf_dma_unmap(rep->rr_rdmabuf);
Chuck Leverb7ff0182020-01-03 11:57:04 -05001042 rep->rr_temp = true;
1043 }
Chuck Leverb0b227f2019-08-19 18:48:43 -04001044}
1045
1046static void rpcrdma_reps_destroy(struct rpcrdma_buffer *buf)
1047{
1048 struct rpcrdma_rep *rep;
1049
1050 while ((rep = rpcrdma_rep_get_locked(buf)) != NULL)
1051 rpcrdma_rep_destroy(rep);
1052}
1053
Chuck Lever86c4ccd2019-04-24 09:40:25 -04001054/**
1055 * rpcrdma_buffer_create - Create initial set of req/rep objects
1056 * @r_xprt: transport instance to (re)initialize
1057 *
1058 * Returns zero on success, otherwise a negative errno.
1059 */
1060int rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001061{
Chuck Leverac920d02015-01-21 11:03:44 -05001062 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001063 int i, rc;
1064
Chuck Leverf531a5d2015-10-24 17:27:43 -04001065 buf->rb_bc_srv_max_requests = 0;
Chuck Lever505bbe62016-06-29 13:52:54 -04001066 spin_lock_init(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001067 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -04001068 INIT_LIST_HEAD(&buf->rb_all_mrs);
Chuck Lever3b39f522019-08-19 18:45:37 -04001069 INIT_WORK(&buf->rb_refresh_worker, rpcrdma_mr_refresh_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001070
Chuck Lever1e465fd2015-10-24 17:27:02 -04001071 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001072 INIT_LIST_HEAD(&buf->rb_allreqs);
Chuck Lever671c4502020-01-03 11:52:22 -05001073 INIT_LIST_HEAD(&buf->rb_all_reps);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001074
1075 rc = -ENOMEM;
Chuck Lever7581d902020-01-03 11:56:37 -05001076 for (i = 0; i < r_xprt->rx_xprt.max_reqs; i++) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001077 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001078
Chuck Lever614f3c92019-10-17 14:31:53 -04001079 req = rpcrdma_req_create(r_xprt, RPCRDMA_V1_DEF_INLINE_SIZE * 2,
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001080 GFP_KERNEL);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001081 if (!req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001082 goto out;
Chuck Levera80d66c2017-06-08 11:52:12 -04001083 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001084 }
1085
Chuck Leverb0b227f2019-08-19 18:48:43 -04001086 init_llist_head(&buf->rb_free_reps);
Chuck Lever13924022015-01-21 11:03:52 -05001087
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001088 return 0;
1089out:
1090 rpcrdma_buffer_destroy(buf);
1091 return rc;
1092}
1093
Chuck Lever92f44332018-12-19 10:59:33 -05001094/**
1095 * rpcrdma_req_destroy - Destroy an rpcrdma_req object
1096 * @req: unused object to be destroyed
1097 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001098 * Relies on caller holding the transport send lock to protect
1099 * removing req->rl_all from buf->rb_all_reqs safely.
Chuck Lever92f44332018-12-19 10:59:33 -05001100 */
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001101void rpcrdma_req_destroy(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001102{
Chuck Leverc3700782019-10-09 13:07:43 -04001103 struct rpcrdma_mr *mr;
1104
Chuck Lever92f44332018-12-19 10:59:33 -05001105 list_del(&req->rl_all);
1106
Chuck Leverc3700782019-10-09 13:07:43 -04001107 while ((mr = rpcrdma_mr_pop(&req->rl_free_mrs))) {
1108 struct rpcrdma_buffer *buf = &mr->mr_xprt->rx_buf;
1109
1110 spin_lock(&buf->rb_lock);
1111 list_del(&mr->mr_all);
1112 spin_unlock(&buf->rb_lock);
1113
1114 frwr_release_mr(mr);
1115 }
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001116
Chuck Leverd2832af2019-04-24 09:39:32 -04001117 rpcrdma_regbuf_free(req->rl_recvbuf);
1118 rpcrdma_regbuf_free(req->rl_sendbuf);
1119 rpcrdma_regbuf_free(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001120 kfree(req);
1121}
1122
Chuck Leverc3700782019-10-09 13:07:43 -04001123/**
1124 * rpcrdma_mrs_destroy - Release all of a transport's MRs
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001125 * @r_xprt: controlling transport instance
Chuck Leverc3700782019-10-09 13:07:43 -04001126 *
1127 * Relies on caller holding the transport send lock to protect
1128 * removing mr->mr_list from req->rl_free_mrs safely.
1129 */
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001130static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001131{
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001132 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001133 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001134
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001135 cancel_work_sync(&buf->rb_refresh_worker);
1136
Chuck Lever4d6b8892019-08-19 18:47:57 -04001137 spin_lock(&buf->rb_lock);
Chuck Levereed48a92019-08-19 18:42:31 -04001138 while ((mr = list_first_entry_or_null(&buf->rb_all_mrs,
1139 struct rpcrdma_mr,
1140 mr_all)) != NULL) {
Chuck Leverc3700782019-10-09 13:07:43 -04001141 list_del(&mr->mr_list);
Chuck Lever96cedde2017-12-14 20:57:55 -05001142 list_del(&mr->mr_all);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001143 spin_unlock(&buf->rb_lock);
Chuck Lever054f1552018-05-01 11:37:14 -04001144
Chuck Lever5f624122018-12-19 10:59:01 -05001145 frwr_release_mr(mr);
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001146
Chuck Lever4d6b8892019-08-19 18:47:57 -04001147 spin_lock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001148 }
Chuck Lever4d6b8892019-08-19 18:47:57 -04001149 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001150}
1151
Chuck Leveraf65ed42018-12-19 11:00:37 -05001152/**
1153 * rpcrdma_buffer_destroy - Release all hw resources
1154 * @buf: root control block for resources
1155 *
Chuck Leverb8fe6772019-04-24 09:40:36 -04001156 * ORDERING: relies on a prior rpcrdma_xprt_drain :
Chuck Leveraf65ed42018-12-19 11:00:37 -05001157 * - No more Send or Receive completions can occur
1158 * - All MRs, reps, and reqs are returned to their free lists
1159 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001160void
1161rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1162{
Chuck Leverb0b227f2019-08-19 18:48:43 -04001163 rpcrdma_reps_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001164
Chuck Lever92f44332018-12-19 10:59:33 -05001165 while (!list_empty(&buf->rb_send_bufs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001166 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001167
Chuck Lever92f44332018-12-19 10:59:33 -05001168 req = list_first_entry(&buf->rb_send_bufs,
1169 struct rpcrdma_req, rl_list);
1170 list_del(&req->rl_list);
1171 rpcrdma_req_destroy(req);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001172 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001173}
1174
Chuck Lever96cedde2017-12-14 20:57:55 -05001175/**
1176 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1177 * @r_xprt: controlling transport
1178 *
1179 * Returns an initialized rpcrdma_mr or NULL if no free
1180 * rpcrdma_mr objects are available.
1181 */
1182struct rpcrdma_mr *
1183rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001184{
Chuck Lever346aa662015-05-26 11:52:06 -04001185 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever265a38d2019-08-19 18:44:04 -04001186 struct rpcrdma_mr *mr;
Chuck Lever346aa662015-05-26 11:52:06 -04001187
Chuck Lever4d6b8892019-08-19 18:47:57 -04001188 spin_lock(&buf->rb_lock);
Chuck Lever265a38d2019-08-19 18:44:04 -04001189 mr = rpcrdma_mr_pop(&buf->rb_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001190 spin_unlock(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001191 return mr;
Chuck Leverec12e472017-12-14 20:58:04 -05001192}
1193
Chuck Lever96cedde2017-12-14 20:57:55 -05001194/**
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001195 * rpcrdma_buffer_get - Get a request buffer
1196 * @buffers: Buffer pool from which to obtain a buffer
Chuck Lever78d506e2016-09-06 11:22:49 -04001197 *
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001198 * Returns a fresh rpcrdma_req, or NULL if none are available.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001199 */
1200struct rpcrdma_req *
1201rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1202{
1203 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001204
Chuck Levera5b027e2015-10-24 17:27:27 -04001205 spin_lock(&buffers->rb_lock);
Chuck Levere68699c2018-05-04 15:35:31 -04001206 req = list_first_entry_or_null(&buffers->rb_send_bufs,
1207 struct rpcrdma_req, rl_list);
1208 if (req)
1209 list_del_init(&req->rl_list);
Chuck Levera5b027e2015-10-24 17:27:27 -04001210 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001211 return req;
1212}
1213
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001214/**
1215 * rpcrdma_buffer_put - Put request/reply buffers back into pool
Chuck Lever5828ceb2019-06-19 10:33:36 -04001216 * @buffers: buffer pool
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001217 * @req: object to return
1218 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001219 */
Chuck Lever5828ceb2019-06-19 10:33:36 -04001220void rpcrdma_buffer_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001221{
Chuck Leverb0b227f2019-08-19 18:48:43 -04001222 if (req->rl_reply)
1223 rpcrdma_rep_put(buffers, req->rl_reply);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001224 req->rl_reply = NULL;
1225
Chuck Levera5b027e2015-10-24 17:27:27 -04001226 spin_lock(&buffers->rb_lock);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001227 list_add(&req->rl_list, &buffers->rb_send_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001228 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001229}
1230
Chuck Leverb0b227f2019-08-19 18:48:43 -04001231/**
1232 * rpcrdma_recv_buffer_put - Release rpcrdma_rep back to free list
1233 * @rep: rep to release
1234 *
1235 * Used after error conditions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001236 */
Chuck Leverb0b227f2019-08-19 18:48:43 -04001237void rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001238{
Chuck Leverb0b227f2019-08-19 18:48:43 -04001239 rpcrdma_rep_put(&rep->rr_rxprt->rx_buf, rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001240}
1241
Chuck Leverd2832af2019-04-24 09:39:32 -04001242/* Returns a pointer to a rpcrdma_regbuf object, or NULL.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001243 *
1244 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001245 * receiving the payload of RDMA RECV operations. During Long Calls
Chuck Lever5f624122018-12-19 10:59:01 -05001246 * or Replies they may be registered externally via frwr_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001247 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001248static struct rpcrdma_regbuf *
1249rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
Chuck Lever13650c22016-09-15 10:56:26 -04001250 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001251{
1252 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001253
Chuck Lever8cec3db2019-04-24 09:39:16 -04001254 rb = kmalloc(sizeof(*rb), flags);
1255 if (!rb)
1256 return NULL;
1257 rb->rg_data = kmalloc(size, flags);
1258 if (!rb->rg_data) {
1259 kfree(rb);
1260 return NULL;
1261 }
Chuck Lever9128c3e2015-01-21 11:04:00 -05001262
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001263 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001264 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001265 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001266 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001267}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001268
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001269/**
Chuck Lever0f665ce2019-04-24 09:39:27 -04001270 * rpcrdma_regbuf_realloc - re-allocate a SEND/RECV buffer
1271 * @rb: regbuf to reallocate
1272 * @size: size of buffer to be allocated, in bytes
1273 * @flags: GFP flags
1274 *
1275 * Returns true if reallocation was successful. If false is
1276 * returned, @rb is left untouched.
1277 */
1278bool rpcrdma_regbuf_realloc(struct rpcrdma_regbuf *rb, size_t size, gfp_t flags)
1279{
1280 void *buf;
1281
1282 buf = kmalloc(size, flags);
1283 if (!buf)
1284 return false;
1285
Chuck Leverd2832af2019-04-24 09:39:32 -04001286 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever0f665ce2019-04-24 09:39:27 -04001287 kfree(rb->rg_data);
1288
1289 rb->rg_data = buf;
1290 rb->rg_iov.length = size;
1291 return true;
1292}
1293
1294/**
Chuck Leverd2832af2019-04-24 09:39:32 -04001295 * __rpcrdma_regbuf_dma_map - DMA-map a regbuf
1296 * @r_xprt: controlling transport instance
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001297 * @rb: regbuf to be mapped
Chuck Leverd2832af2019-04-24 09:39:32 -04001298 *
1299 * Returns true if the buffer is now DMA mapped to @r_xprt's device
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001300 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001301bool __rpcrdma_regbuf_dma_map(struct rpcrdma_xprt *r_xprt,
1302 struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001303{
Chuck Levere28ce902020-02-21 17:01:05 -05001304 struct ib_device *device = r_xprt->rx_ep->re_id->device;
Chuck Lever91a10c52017-04-11 13:23:02 -04001305
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001306 if (rb->rg_direction == DMA_NONE)
1307 return false;
1308
Chuck Leverd2832af2019-04-24 09:39:32 -04001309 rb->rg_iov.addr = ib_dma_map_single(device, rdmab_data(rb),
1310 rdmab_length(rb), rb->rg_direction);
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001311 if (ib_dma_mapping_error(device, rdmab_addr(rb))) {
1312 trace_xprtrdma_dma_maperr(rdmab_addr(rb));
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001313 return false;
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001314 }
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001315
Chuck Lever91a10c52017-04-11 13:23:02 -04001316 rb->rg_device = device;
Chuck Levere28ce902020-02-21 17:01:05 -05001317 rb->rg_iov.lkey = r_xprt->rx_ep->re_pd->local_dma_lkey;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001318 return true;
1319}
1320
Chuck Leverd2832af2019-04-24 09:39:32 -04001321static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001322{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001323 if (!rb)
1324 return;
1325
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001326 if (!rpcrdma_regbuf_is_mapped(rb))
1327 return;
1328
Chuck Leverd2832af2019-04-24 09:39:32 -04001329 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb), rdmab_length(rb),
1330 rb->rg_direction);
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001331 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001332}
1333
Chuck Leverd2832af2019-04-24 09:39:32 -04001334static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001335{
Chuck Leverd2832af2019-04-24 09:39:32 -04001336 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever8cec3db2019-04-24 09:39:16 -04001337 if (rb)
1338 kfree(rb->rg_data);
Chuck Levere531dca2015-08-03 13:03:20 -04001339 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001340}
1341
Chuck Lever995d3122018-12-19 11:00:32 -05001342/**
Chuck Lever97d0de82020-02-21 17:00:23 -05001343 * rpcrdma_post_sends - Post WRs to a transport's Send Queue
1344 * @r_xprt: controlling transport instance
Chuck Lever995d3122018-12-19 11:00:32 -05001345 * @req: rpcrdma_req containing the Send WR to post
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001346 *
Chuck Lever995d3122018-12-19 11:00:32 -05001347 * Returns 0 if the post was successful, otherwise -ENOTCONN
1348 * is returned.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001349 */
Chuck Lever97d0de82020-02-21 17:00:23 -05001350int rpcrdma_post_sends(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001351{
Chuck Leverdc15c3d2019-10-17 14:31:35 -04001352 struct ib_send_wr *send_wr = &req->rl_wr;
Chuck Levere28ce902020-02-21 17:01:05 -05001353 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Lever655fec62016-09-15 10:57:24 -04001354 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001355
Chuck Lever93aa8e02020-02-21 17:00:54 -05001356 if (!ep->re_send_count || kref_read(&req->rl_kref) > 1) {
Chuck Leverae729502017-10-20 10:48:12 -04001357 send_wr->send_flags |= IB_SEND_SIGNALED;
Chuck Lever93aa8e02020-02-21 17:00:54 -05001358 ep->re_send_count = ep->re_send_batch;
Chuck Leverae729502017-10-20 10:48:12 -04001359 } else {
1360 send_wr->send_flags &= ~IB_SEND_SIGNALED;
Chuck Lever93aa8e02020-02-21 17:00:54 -05001361 --ep->re_send_count;
Chuck Leverae729502017-10-20 10:48:12 -04001362 }
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001363
Chuck Leverbdb2ce82020-04-19 20:03:05 -04001364 trace_xprtrdma_post_send(req);
Chuck Lever97d0de82020-02-21 17:00:23 -05001365 rc = frwr_send(r_xprt, req);
Chuck Leverab03eff2017-12-20 16:30:40 -05001366 if (rc)
1367 return -ENOTCONN;
1368 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001369}
1370
Chuck Lever2ae50ad2019-10-09 13:07:38 -04001371/**
1372 * rpcrdma_post_recvs - Refill the Receive Queue
1373 * @r_xprt: controlling transport instance
1374 * @temp: mark Receive buffers to be deleted after use
1375 *
1376 */
1377void rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, bool temp)
Chuck Leverf531a5d2015-10-24 17:27:43 -04001378{
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001379 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -05001380 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Levere515dd92020-01-03 11:57:09 -05001381 struct ib_recv_wr *wr, *bad_wr;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001382 struct rpcrdma_rep *rep;
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001383 int needed, count, rc;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001384
Chuck Lever61c208a2018-10-01 14:26:35 -04001385 rc = 0;
1386 count = 0;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001387
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001388 needed = buf->rb_credits + (buf->rb_bc_srv_max_requests << 1);
Chuck Lever93aa8e02020-02-21 17:00:54 -05001389 if (likely(ep->re_receive_count > needed))
Chuck Lever61c208a2018-10-01 14:26:35 -04001390 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -05001391 needed -= ep->re_receive_count;
Chuck Levere340c2d2019-02-11 11:23:54 -05001392 if (!temp)
1393 needed += RPCRDMA_MAX_RECV_BATCH;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001394
Chuck Lever15788d12021-04-19 14:02:09 -04001395 if (atomic_inc_return(&ep->re_receiving) > 1)
1396 goto out;
1397
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001398 /* fast path: all needed reps can be found on the free list */
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001399 wr = NULL;
1400 while (needed) {
Chuck Leverb0b227f2019-08-19 18:48:43 -04001401 rep = rpcrdma_rep_get_locked(buf);
Chuck Lever671c4502020-01-03 11:52:22 -05001402 if (rep && rep->rr_temp) {
1403 rpcrdma_rep_destroy(rep);
1404 continue;
1405 }
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001406 if (!rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -04001407 rep = rpcrdma_rep_create(r_xprt, temp);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001408 if (!rep)
1409 break;
1410
Chuck Leveraf5865d2020-11-09 14:39:21 -05001411 rep->rr_cid.ci_queue_id = ep->re_attr.recv_cq->res.id;
Chuck Levere515dd92020-01-03 11:57:09 -05001412 trace_xprtrdma_post_recv(rep);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001413 rep->rr_recv_wr.next = wr;
1414 wr = &rep->rr_recv_wr;
1415 --needed;
Chuck Levere515dd92020-01-03 11:57:09 -05001416 ++count;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001417 }
1418 if (!wr)
Chuck Lever61c208a2018-10-01 14:26:35 -04001419 goto out;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001420
Chuck Levere28ce902020-02-21 17:01:05 -05001421 rc = ib_post_recv(ep->re_id->qp, wr,
Bart Van Assched34ac5c2018-07-18 09:25:32 -07001422 (const struct ib_recv_wr **)&bad_wr);
Chuck Lever15788d12021-04-19 14:02:09 -04001423 if (atomic_dec_return(&ep->re_receiving) > 0)
1424 complete(&ep->re_done);
1425
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001426out:
1427 trace_xprtrdma_post_recvs(r_xprt, count, rc);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001428 if (rc) {
Chuck Lever2d0abe32019-06-19 10:32:38 -04001429 for (wr = bad_wr; wr;) {
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001430 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001431
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001432 rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
Chuck Lever2d0abe32019-06-19 10:32:38 -04001433 wr = wr->next;
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001434 rpcrdma_recv_buffer_put(rep);
1435 --count;
1436 }
1437 }
Chuck Lever93aa8e02020-02-21 17:00:54 -05001438 ep->re_receive_count += count;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001439 return;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001440}