blob: c3784b7b685540ac2e345eb880723beac093db90 [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 Leverc487eb72020-06-15 09:21:07 -0400123/* Ensure xprt_force_disconnect() is invoked exactly once when a
124 * connection is closed or lost. (The important thing is it needs
125 * to be invoked "at least" once).
126 */
Chuck Lever11431292021-08-02 14:44:17 -0400127void rpcrdma_force_disconnect(struct rpcrdma_ep *ep)
Chuck Leverc487eb72020-06-15 09:21:07 -0400128{
129 if (atomic_add_unless(&ep->re_force_disconnect, 1, 1))
130 xprt_force_disconnect(ep->re_xprt);
131}
132
Chuck Lever2fa8f882016-03-04 11:28:53 -0500133/**
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500134 * rpcrdma_flush_disconnect - Disconnect on flushed completion
Chuck Leverf423f752020-06-15 09:21:02 -0400135 * @r_xprt: transport to disconnect
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500136 * @wc: work completion entry
137 *
138 * Must be called in process context.
139 */
Chuck Leverf423f752020-06-15 09:21:02 -0400140void rpcrdma_flush_disconnect(struct rpcrdma_xprt *r_xprt, struct ib_wc *wc)
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500141{
Chuck Leverc487eb72020-06-15 09:21:07 -0400142 if (wc->status != IB_WC_SUCCESS)
143 rpcrdma_force_disconnect(r_xprt->rx_ep);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500144}
145
146/**
Chuck Lever2fa8f882016-03-04 11:28:53 -0500147 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
Chuck Leverf9958792019-10-17 14:31:18 -0400148 * @cq: completion queue
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500149 * @wc: WCE for a completed Send WR
Chuck Lever2fa8f882016-03-04 11:28:53 -0500150 *
Chuck Lever4220a072015-10-24 17:26:45 -0400151 */
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500152static void rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400153{
Chuck Leverae729502017-10-20 10:48:12 -0400154 struct ib_cqe *cqe = wc->wr_cqe;
155 struct rpcrdma_sendctx *sc =
156 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
Chuck Leverf423f752020-06-15 09:21:02 -0400157 struct rpcrdma_xprt *r_xprt = cq->cq_context;
Chuck Leverae729502017-10-20 10:48:12 -0400158
Chuck Lever2fa8f882016-03-04 11:28:53 -0500159 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leverb2e74672020-11-09 14:39:26 -0500160 trace_xprtrdma_wc_send(wc, &sc->sc_cid);
Chuck Leverf423f752020-06-15 09:21:02 -0400161 rpcrdma_sendctx_put_locked(r_xprt, sc);
162 rpcrdma_flush_disconnect(r_xprt, wc);
Chuck Leverfc664482014-05-28 10:33:25 -0400163}
164
Chuck Lever552bf222016-03-04 11:28:36 -0500165/**
Chuck Lever1519e962016-09-15 10:57:49 -0400166 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500167 * @cq: completion queue
168 * @wc: WCE for a completed Receive WR
Chuck Lever552bf222016-03-04 11:28:36 -0500169 *
170 */
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500171static void rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400172{
Chuck Lever552bf222016-03-04 11:28:36 -0500173 struct ib_cqe *cqe = wc->wr_cqe;
174 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
175 rr_cqe);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500176 struct rpcrdma_xprt *r_xprt = cq->cq_context;
Chuck Leverfc664482014-05-28 10:33:25 -0400177
Chuck Lever6ceea362018-12-19 10:58:24 -0500178 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leveraf5865d2020-11-09 14:39:21 -0500179 trace_xprtrdma_wc_receive(wc, &rep->rr_cid);
Chuck Levere28ce902020-02-21 17:01:05 -0500180 --r_xprt->rx_ep->re_receive_count;
Chuck Lever85024272015-01-21 11:02:04 -0500181 if (wc->status != IB_WC_SUCCESS)
Chuck Lever6ceea362018-12-19 10:58:24 -0500182 goto out_flushed;
Chuck Leverfc664482014-05-28 10:33:25 -0400183
Chuck Lever85024272015-01-21 11:02:04 -0500184 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever96f87782017-08-03 14:30:03 -0400185 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400186 rep->rr_wc_flags = wc->wc_flags;
187 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
188
Chuck Lever91a10c52017-04-11 13:23:02 -0400189 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500190 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400191 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500192
Chuck Leverd8f532d2017-10-16 15:01:30 -0400193 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500194 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400195
Chuck Lever6ceea362018-12-19 10:58:24 -0500196out_flushed:
Chuck Leverf423f752020-06-15 09:21:02 -0400197 rpcrdma_flush_disconnect(r_xprt, wc);
Chuck Lever5030c9a2021-04-19 14:02:16 -0400198 rpcrdma_rep_put(&r_xprt->rx_buf, rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400199}
200
Chuck Lever745b7342020-02-21 17:01:00 -0500201static void rpcrdma_update_cm_private(struct rpcrdma_ep *ep,
Chuck Leverf54c8702019-10-23 10:02:09 -0400202 struct rdma_conn_param *param)
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400203{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400204 const struct rpcrdma_connect_private *pmsg = param->private_data;
205 unsigned int rsize, wsize;
206
Chuck Leverc8b920b2016-09-15 10:57:16 -0400207 /* Default settings for RPC-over-RDMA Version One */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500208 ep->re_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400209 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
210 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
211
212 if (pmsg &&
213 pmsg->cp_magic == rpcrdma_cmp_magic &&
214 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Lever93aa8e02020-02-21 17:00:54 -0500215 ep->re_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400216 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
217 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
218 }
219
Chuck Lever93aa8e02020-02-21 17:00:54 -0500220 if (rsize < ep->re_inline_recv)
221 ep->re_inline_recv = rsize;
222 if (wsize < ep->re_inline_send)
223 ep->re_inline_send = wsize;
Chuck Leverf54c8702019-10-23 10:02:09 -0400224
Chuck Lever93aa8e02020-02-21 17:00:54 -0500225 rpcrdma_set_max_header_sizes(ep);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400226}
227
Chuck Leverae382882018-10-01 14:25:47 -0400228/**
229 * rpcrdma_cm_event_handler - Handle RDMA CM events
230 * @id: rdma_cm_id on which an event has occurred
231 * @event: details of the event
232 *
233 * Called with @id's mutex held. Returns 1 if caller should
234 * destroy @id, otherwise 0.
235 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400236static int
Chuck Leverae382882018-10-01 14:25:47 -0400237rpcrdma_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400238{
Chuck Lever745b7342020-02-21 17:01:00 -0500239 struct sockaddr *sap = (struct sockaddr *)&id->route.addr.dst_addr;
Chuck Levere28ce902020-02-21 17:01:05 -0500240 struct rpcrdma_ep *ep = id->context;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400241
Chuck Leverae382882018-10-01 14:25:47 -0400242 might_sleep();
243
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400244 switch (event->event) {
245 case RDMA_CM_EVENT_ADDR_RESOLVED:
246 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500247 ep->re_async_rc = 0;
248 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400249 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400250 case RDMA_CM_EVENT_ADDR_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500251 ep->re_async_rc = -EPROTO;
252 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400253 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400254 case RDMA_CM_EVENT_ROUTE_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500255 ep->re_async_rc = -ENETUNREACH;
256 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400257 return 0;
Chuck Leverbebd0312017-04-11 13:23:10 -0400258 case RDMA_CM_EVENT_DEVICE_REMOVAL:
Chuck Lever745b7342020-02-21 17:01:00 -0500259 pr_info("rpcrdma: removing device %s for %pISpc\n",
260 ep->re_id->device->name, sap);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500261 fallthrough;
Chuck Levere28ce902020-02-21 17:01:05 -0500262 case RDMA_CM_EVENT_ADDR_CHANGE:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500263 ep->re_connect_status = -ENODEV;
Chuck Levere28ce902020-02-21 17:01:05 -0500264 goto disconnected;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400265 case RDMA_CM_EVENT_ESTABLISHED:
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400266 rpcrdma_ep_get(ep);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500267 ep->re_connect_status = 1;
Chuck Lever745b7342020-02-21 17:01:00 -0500268 rpcrdma_update_cm_private(ep, &event->param.conn);
269 trace_xprtrdma_inline_thresh(ep);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500270 wake_up_all(&ep->re_connect_wait);
Chuck Lever31e62d22018-10-01 14:26:08 -0400271 break;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400272 case RDMA_CM_EVENT_CONNECT_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500273 ep->re_connect_status = -ENOTCONN;
Chuck Leveraf667522020-06-27 12:35:20 -0400274 goto wake_connect_worker;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400275 case RDMA_CM_EVENT_UNREACHABLE:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500276 ep->re_connect_status = -ENETUNREACH;
Chuck Leveraf667522020-06-27 12:35:20 -0400277 goto wake_connect_worker;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400278 case RDMA_CM_EVENT_REJECTED:
Chuck Lever745b7342020-02-21 17:01:00 -0500279 dprintk("rpcrdma: connection to %pISpc rejected: %s\n",
280 sap, rdma_reject_msg(id, event->status));
Chuck Lever93aa8e02020-02-21 17:00:54 -0500281 ep->re_connect_status = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500282 if (event->status == IB_CM_REJ_STALE_CONN)
Chuck Lever4cf44be2020-06-27 12:35:09 -0400283 ep->re_connect_status = -ENOTCONN;
Chuck Leveraf667522020-06-27 12:35:20 -0400284wake_connect_worker:
285 wake_up_all(&ep->re_connect_wait);
286 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400287 case RDMA_CM_EVENT_DISCONNECTED:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500288 ep->re_connect_status = -ECONNABORTED;
Chuck Lever31e62d22018-10-01 14:26:08 -0400289disconnected:
Chuck Leverc487eb72020-06-15 09:21:07 -0400290 rpcrdma_force_disconnect(ep);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400291 return rpcrdma_ep_put(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400292 default:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400293 break;
294 }
295
Chuck Lever745b7342020-02-21 17:01:00 -0500296 dprintk("RPC: %s: %pISpc on %s/frwr: %s\n", __func__, sap,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500297 ep->re_id->device->name, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400298 return 0;
299}
300
Chuck Lever93aa8e02020-02-21 17:00:54 -0500301static struct rdma_cm_id *rpcrdma_create_id(struct rpcrdma_xprt *r_xprt,
302 struct rpcrdma_ep *ep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400303{
Chuck Lever109b88a2016-11-29 10:52:40 -0500304 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500305 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400306 struct rdma_cm_id *id;
307 int rc;
308
Chuck Lever93aa8e02020-02-21 17:00:54 -0500309 init_completion(&ep->re_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400310
Chuck Levere28ce902020-02-21 17:01:05 -0500311 id = rdma_create_id(xprt->xprt_net, rpcrdma_cm_event_handler, ep,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500312 RDMA_PS_TCP, IB_QPT_RC);
Chuck Leverddbb3472018-12-19 10:59:39 -0500313 if (IS_ERR(id))
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400314 return id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400315
Chuck Lever93aa8e02020-02-21 17:00:54 -0500316 ep->re_async_rc = -ETIMEDOUT;
317 rc = rdma_resolve_addr(id, NULL, (struct sockaddr *)&xprt->addr,
Chuck Leverdd229ce2017-12-14 20:56:58 -0500318 RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500319 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400320 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500321 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
Chuck Lever7b020f12019-10-23 10:01:58 -0400322 if (rc < 0)
Chuck Lever109b88a2016-11-29 10:52:40 -0500323 goto out;
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400324
Chuck Lever93aa8e02020-02-21 17:00:54 -0500325 rc = ep->re_async_rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400326 if (rc)
327 goto out;
328
Chuck Lever93aa8e02020-02-21 17:00:54 -0500329 ep->re_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400330 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500331 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400332 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500333 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
Chuck Lever7b020f12019-10-23 10:01:58 -0400334 if (rc < 0)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400335 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500336 rc = ep->re_async_rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400337 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400338 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400339
340 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400341
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400342out:
343 rdma_destroy_id(id);
344 return ERR_PTR(rc);
345}
346
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400347static void rpcrdma_ep_destroy(struct kref *kref)
Chuck Levere28ce902020-02-21 17:01:05 -0500348{
349 struct rpcrdma_ep *ep = container_of(kref, struct rpcrdma_ep, re_kref);
350
351 if (ep->re_id->qp) {
352 rdma_destroy_qp(ep->re_id);
353 ep->re_id->qp = NULL;
354 }
355
356 if (ep->re_attr.recv_cq)
357 ib_free_cq(ep->re_attr.recv_cq);
358 ep->re_attr.recv_cq = NULL;
359 if (ep->re_attr.send_cq)
360 ib_free_cq(ep->re_attr.send_cq);
361 ep->re_attr.send_cq = NULL;
362
363 if (ep->re_pd)
364 ib_dealloc_pd(ep->re_pd);
365 ep->re_pd = NULL;
366
367 kfree(ep);
368 module_put(THIS_MODULE);
369}
370
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400371static noinline void rpcrdma_ep_get(struct rpcrdma_ep *ep)
372{
373 kref_get(&ep->re_kref);
374}
375
Chuck Levere28ce902020-02-21 17:01:05 -0500376/* Returns:
377 * %0 if @ep still has a positive kref count, or
378 * %1 if @ep was destroyed successfully.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400379 */
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400380static noinline int rpcrdma_ep_put(struct rpcrdma_ep *ep)
Chuck Levere28ce902020-02-21 17:01:05 -0500381{
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400382 return kref_put(&ep->re_kref, rpcrdma_ep_destroy);
Chuck Levere28ce902020-02-21 17:01:05 -0500383}
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400384
Chuck Lever81fe0c52020-02-21 17:00:38 -0500385static int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400386{
Chuck Levere28ce902020-02-21 17:01:05 -0500387 struct rpcrdma_connect_private *pmsg;
388 struct ib_device *device;
Chuck Lever81fe0c52020-02-21 17:00:38 -0500389 struct rdma_cm_id *id;
Chuck Levere28ce902020-02-21 17:01:05 -0500390 struct rpcrdma_ep *ep;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500391 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400392
Chuck Levere28ce902020-02-21 17:01:05 -0500393 ep = kzalloc(sizeof(*ep), GFP_NOFS);
394 if (!ep)
Chuck Leverdda9a952020-06-27 12:35:15 -0400395 return -ENOTCONN;
Chuck Levere28ce902020-02-21 17:01:05 -0500396 ep->re_xprt = &r_xprt->rx_xprt;
397 kref_init(&ep->re_kref);
398
Chuck Lever93aa8e02020-02-21 17:00:54 -0500399 id = rpcrdma_create_id(r_xprt, ep);
Chuck Levere28ce902020-02-21 17:01:05 -0500400 if (IS_ERR(id)) {
Chuck Lever85bfd712020-06-27 12:35:04 -0400401 kfree(ep);
402 return PTR_ERR(id);
Chuck Levere28ce902020-02-21 17:01:05 -0500403 }
404 __module_get(THIS_MODULE);
405 device = id->device;
406 ep->re_id = id;
Chuck Lever15788d12021-04-19 14:02:09 -0400407 reinit_completion(&ep->re_done);
Chuck Lever81fe0c52020-02-21 17:00:38 -0500408
Chuck Lever93aa8e02020-02-21 17:00:54 -0500409 ep->re_max_requests = r_xprt->rx_xprt.max_reqs;
410 ep->re_inline_send = xprt_rdma_max_inline_write;
411 ep->re_inline_recv = xprt_rdma_max_inline_read;
Chuck Levere28ce902020-02-21 17:01:05 -0500412 rc = frwr_query_device(ep, device);
Chuck Lever914fcad2018-05-04 15:34:48 -0400413 if (rc)
Chuck Lever81fe0c52020-02-21 17:00:38 -0500414 goto out_destroy;
415
Chuck Lever93aa8e02020-02-21 17:00:54 -0500416 r_xprt->rx_buf.rb_max_requests = cpu_to_be32(ep->re_max_requests);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400417
Chuck Lever93aa8e02020-02-21 17:00:54 -0500418 ep->re_attr.srq = NULL;
419 ep->re_attr.cap.max_inline_data = 0;
420 ep->re_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
421 ep->re_attr.qp_type = IB_QPT_RC;
422 ep->re_attr.port_num = ~0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400423
424 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
425 "iovs: send %d recv %d\n",
426 __func__,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500427 ep->re_attr.cap.max_send_wr,
428 ep->re_attr.cap.max_recv_wr,
429 ep->re_attr.cap.max_send_sge,
430 ep->re_attr.cap.max_recv_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400431
Chuck Lever93aa8e02020-02-21 17:00:54 -0500432 ep->re_send_batch = ep->re_max_requests >> 3;
433 ep->re_send_count = ep->re_send_batch;
434 init_waitqueue_head(&ep->re_connect_wait);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400435
Chuck Levere28ce902020-02-21 17:01:05 -0500436 ep->re_attr.send_cq = ib_alloc_cq_any(device, r_xprt,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500437 ep->re_attr.cap.max_send_wr,
438 IB_POLL_WORKQUEUE);
439 if (IS_ERR(ep->re_attr.send_cq)) {
440 rc = PTR_ERR(ep->re_attr.send_cq);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500441 goto out_destroy;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400442 }
443
Chuck Levere28ce902020-02-21 17:01:05 -0500444 ep->re_attr.recv_cq = ib_alloc_cq_any(device, r_xprt,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500445 ep->re_attr.cap.max_recv_wr,
446 IB_POLL_WORKQUEUE);
447 if (IS_ERR(ep->re_attr.recv_cq)) {
448 rc = PTR_ERR(ep->re_attr.recv_cq);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500449 goto out_destroy;
Chuck Leverfc664482014-05-28 10:33:25 -0400450 }
Chuck Lever93aa8e02020-02-21 17:00:54 -0500451 ep->re_receive_count = 0;
Chuck Leverfc664482014-05-28 10:33:25 -0400452
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400453 /* Initialize cma parameters */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500454 memset(&ep->re_remote_cma, 0, sizeof(ep->re_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400455
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400456 /* Prepare RDMA-CM private message */
Chuck Levere28ce902020-02-21 17:01:05 -0500457 pmsg = &ep->re_cm_private;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400458 pmsg->cp_magic = rpcrdma_cmp_magic;
459 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Lever5f624122018-12-19 10:59:01 -0500460 pmsg->cp_flags |= RPCRDMA_CMP_F_SND_W_INV_OK;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500461 pmsg->cp_send_size = rpcrdma_encode_buffer_size(ep->re_inline_send);
462 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(ep->re_inline_recv);
463 ep->re_remote_cma.private_data = pmsg;
464 ep->re_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400465
466 /* Client offers RDMA Read but does not initiate */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500467 ep->re_remote_cma.initiator_depth = 0;
468 ep->re_remote_cma.responder_resources =
Chuck Levere28ce902020-02-21 17:01:05 -0500469 min_t(int, U8_MAX, device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400470
Chuck Leverb2dde942016-05-02 14:43:03 -0400471 /* Limit transport retries so client can detect server
472 * GID changes quickly. RPC layer handles re-establishing
473 * transport connection and retransmission.
474 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500475 ep->re_remote_cma.retry_count = 6;
Chuck Leverb2dde942016-05-02 14:43:03 -0400476
477 /* RPC-over-RDMA handles its own flow control. In addition,
478 * make all RNR NAKs visible so we know that RPC-over-RDMA
479 * flow control is working correctly (no NAKs should be seen).
480 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500481 ep->re_remote_cma.flow_control = 0;
482 ep->re_remote_cma.rnr_retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400483
Chuck Levere28ce902020-02-21 17:01:05 -0500484 ep->re_pd = ib_alloc_pd(device, 0);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500485 if (IS_ERR(ep->re_pd)) {
486 rc = PTR_ERR(ep->re_pd);
Chuck Lever9ba373e2020-02-21 17:00:33 -0500487 goto out_destroy;
488 }
489
Chuck Lever93aa8e02020-02-21 17:00:54 -0500490 rc = rdma_create_qp(id, ep->re_pd, &ep->re_attr);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500491 if (rc)
492 goto out_destroy;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500493
Chuck Levere28ce902020-02-21 17:01:05 -0500494 r_xprt->rx_ep = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400495 return 0;
496
Chuck Lever85cd8e22020-02-21 17:00:12 -0500497out_destroy:
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400498 rpcrdma_ep_put(ep);
Chuck Lever81fe0c52020-02-21 17:00:38 -0500499 rdma_destroy_id(id);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400500 return rc;
501}
502
Chuck Levere28ce902020-02-21 17:01:05 -0500503/**
504 * rpcrdma_xprt_connect - Connect an unconnected transport
505 * @r_xprt: controlling transport instance
506 *
507 * Returns 0 on success or a negative errno.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400508 */
Chuck Lever9144a802020-02-21 17:00:28 -0500509int rpcrdma_xprt_connect(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400510{
Chuck Lever31e62d22018-10-01 14:26:08 -0400511 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
Chuck Levere28ce902020-02-21 17:01:05 -0500512 struct rpcrdma_ep *ep;
Chuck Lever18908962017-04-11 13:23:18 -0400513 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400514
Chuck Lever81fe0c52020-02-21 17:00:38 -0500515 rc = rpcrdma_ep_create(r_xprt);
516 if (rc)
Chuck Levere28ce902020-02-21 17:01:05 -0500517 return rc;
518 ep = r_xprt->rx_ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400519
Chuck Lever31e62d22018-10-01 14:26:08 -0400520 xprt_clear_connected(xprt);
Chuck Levereea63ca2019-10-09 13:07:32 -0400521 rpcrdma_reset_cwnd(r_xprt);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400522
523 /* Bump the ep's reference count while there are
524 * outstanding Receives.
525 */
526 rpcrdma_ep_get(ep);
Chuck Lever35d8b102021-04-19 14:02:41 -0400527 rpcrdma_post_recvs(r_xprt, 1, true);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400528
Chuck Lever93aa8e02020-02-21 17:00:54 -0500529 rc = rdma_connect(ep->re_id, &ep->re_remote_cma);
Chuck Leverddbb3472018-12-19 10:59:39 -0500530 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400531 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400532
Chuck Leverf9e1afe2019-08-26 13:12:51 -0400533 if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
534 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500535 wait_event_interruptible(ep->re_connect_wait,
536 ep->re_connect_status != 0);
537 if (ep->re_connect_status <= 0) {
Chuck Lever93aa8e02020-02-21 17:00:54 -0500538 rc = ep->re_connect_status;
Chuck Lever0a904872017-02-08 17:00:35 -0500539 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400540 }
541
Chuck Leverdda9a952020-06-27 12:35:15 -0400542 rc = rpcrdma_sendctxs_create(r_xprt);
543 if (rc) {
544 rc = -ENOTCONN;
Chuck Leverb78de1d2020-01-03 11:56:53 -0500545 goto out;
Chuck Leverdda9a952020-06-27 12:35:15 -0400546 }
547
548 rc = rpcrdma_reqs_setup(r_xprt);
549 if (rc) {
550 rc = -ENOTCONN;
551 goto out;
552 }
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400553 rpcrdma_mrs_create(r_xprt);
Chuck Lever21037b82021-10-05 10:17:59 -0400554 frwr_wp_create(r_xprt);
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400555
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400556out:
Chuck Lever7b020f12019-10-23 10:01:58 -0400557 trace_xprtrdma_connect(r_xprt, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400558 return rc;
559}
560
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500561/**
Chuck Lever9144a802020-02-21 17:00:28 -0500562 * rpcrdma_xprt_disconnect - Disconnect underlying transport
563 * @r_xprt: controlling transport instance
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400564 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400565 * Caller serializes. Either the transport send lock is held,
566 * or we're being called to destroy the transport.
Chuck Levere28ce902020-02-21 17:01:05 -0500567 *
568 * On return, @r_xprt is completely divested of all hardware
569 * resources and prepared for the next ->connect operation.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400570 */
Chuck Lever9144a802020-02-21 17:00:28 -0500571void rpcrdma_xprt_disconnect(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400572{
Chuck Levere28ce902020-02-21 17:01:05 -0500573 struct rpcrdma_ep *ep = r_xprt->rx_ep;
574 struct rdma_cm_id *id;
575 int rc;
Chuck Lever897b7be2020-02-21 17:00:44 -0500576
Chuck Levere28ce902020-02-21 17:01:05 -0500577 if (!ep)
Chuck Lever897b7be2020-02-21 17:00:44 -0500578 return;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500579
Chuck Levere28ce902020-02-21 17:01:05 -0500580 id = ep->re_id;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500581 rc = rdma_disconnect(id);
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500582 trace_xprtrdma_disconnect(r_xprt, rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400583
Chuck Levere28ce902020-02-21 17:01:05 -0500584 rpcrdma_xprt_drain(r_xprt);
Chuck Lever897b7be2020-02-21 17:00:44 -0500585 rpcrdma_reps_unmap(r_xprt);
Chuck Levera31b2f92019-10-09 13:07:27 -0400586 rpcrdma_reqs_reset(r_xprt);
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400587 rpcrdma_mrs_destroy(r_xprt);
Chuck Levercb586de2020-01-03 11:56:32 -0500588 rpcrdma_sendctxs_destroy(r_xprt);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500589
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400590 if (rpcrdma_ep_put(ep))
Chuck Lever897b7be2020-02-21 17:00:44 -0500591 rdma_destroy_id(id);
Chuck Levere28ce902020-02-21 17:01:05 -0500592
593 r_xprt->rx_ep = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400594}
595
Chuck Leverae729502017-10-20 10:48:12 -0400596/* Fixed-size circular FIFO queue. This implementation is wait-free and
597 * lock-free.
598 *
599 * Consumer is the code path that posts Sends. This path dequeues a
600 * sendctx for use by a Send operation. Multiple consumer threads
601 * are serialized by the RPC transport lock, which allows only one
602 * ->send_request call at a time.
603 *
604 * Producer is the code path that handles Send completions. This path
605 * enqueues a sendctx that has been completed. Multiple producer
606 * threads are serialized by the ib_poll_cq() function.
607 */
608
609/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
Chuck Leverb8fe6772019-04-24 09:40:36 -0400610 * queue activity, and rpcrdma_xprt_drain has flushed all remaining
611 * Send requests.
Chuck Leverae729502017-10-20 10:48:12 -0400612 */
Chuck Levercb586de2020-01-03 11:56:32 -0500613static void rpcrdma_sendctxs_destroy(struct rpcrdma_xprt *r_xprt)
Chuck Leverae729502017-10-20 10:48:12 -0400614{
Chuck Levercb586de2020-01-03 11:56:32 -0500615 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400616 unsigned long i;
617
Chuck Levercb586de2020-01-03 11:56:32 -0500618 if (!buf->rb_sc_ctxs)
619 return;
Chuck Leverae729502017-10-20 10:48:12 -0400620 for (i = 0; i <= buf->rb_sc_last; i++)
621 kfree(buf->rb_sc_ctxs[i]);
622 kfree(buf->rb_sc_ctxs);
Chuck Levercb586de2020-01-03 11:56:32 -0500623 buf->rb_sc_ctxs = NULL;
Chuck Leverae729502017-10-20 10:48:12 -0400624}
625
Chuck Lever2e870362020-01-03 11:56:27 -0500626static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ep *ep)
Chuck Leverae729502017-10-20 10:48:12 -0400627{
628 struct rpcrdma_sendctx *sc;
629
Chuck Lever93aa8e02020-02-21 17:00:54 -0500630 sc = kzalloc(struct_size(sc, sc_sges, ep->re_attr.cap.max_send_sge),
Chuck Leverae729502017-10-20 10:48:12 -0400631 GFP_KERNEL);
632 if (!sc)
633 return NULL;
634
Chuck Leverae729502017-10-20 10:48:12 -0400635 sc->sc_cqe.done = rpcrdma_wc_send;
Chuck Leverb2e74672020-11-09 14:39:26 -0500636 sc->sc_cid.ci_queue_id = ep->re_attr.send_cq->res.id;
637 sc->sc_cid.ci_completion_id =
638 atomic_inc_return(&ep->re_completion_ids);
Chuck Leverae729502017-10-20 10:48:12 -0400639 return sc;
640}
641
642static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
643{
644 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
645 struct rpcrdma_sendctx *sc;
646 unsigned long i;
647
648 /* Maximum number of concurrent outstanding Send WRs. Capping
649 * the circular queue size stops Send Queue overflow by causing
650 * the ->send_request call to fail temporarily before too many
651 * Sends are posted.
652 */
Chuck Levere28ce902020-02-21 17:01:05 -0500653 i = r_xprt->rx_ep->re_max_requests + RPCRDMA_MAX_BC_REQUESTS;
Chuck Leverae729502017-10-20 10:48:12 -0400654 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
655 if (!buf->rb_sc_ctxs)
656 return -ENOMEM;
657
658 buf->rb_sc_last = i - 1;
659 for (i = 0; i <= buf->rb_sc_last; i++) {
Chuck Levere28ce902020-02-21 17:01:05 -0500660 sc = rpcrdma_sendctx_create(r_xprt->rx_ep);
Chuck Leverae729502017-10-20 10:48:12 -0400661 if (!sc)
Dan Carpenter6e17f582019-01-05 16:06:48 +0300662 return -ENOMEM;
Chuck Leverae729502017-10-20 10:48:12 -0400663
Chuck Leverae729502017-10-20 10:48:12 -0400664 buf->rb_sc_ctxs[i] = sc;
665 }
666
Chuck Levercb586de2020-01-03 11:56:32 -0500667 buf->rb_sc_head = 0;
668 buf->rb_sc_tail = 0;
Chuck Leverae729502017-10-20 10:48:12 -0400669 return 0;
Chuck Leverae729502017-10-20 10:48:12 -0400670}
671
672/* The sendctx queue is not guaranteed to have a size that is a
673 * power of two, thus the helpers in circ_buf.h cannot be used.
674 * The other option is to use modulus (%), which can be expensive.
675 */
676static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
677 unsigned long item)
678{
679 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
680}
681
682/**
683 * rpcrdma_sendctx_get_locked - Acquire a send context
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400684 * @r_xprt: controlling transport instance
Chuck Leverae729502017-10-20 10:48:12 -0400685 *
686 * Returns pointer to a free send completion context; or NULL if
687 * the queue is empty.
688 *
689 * Usage: Called to acquire an SGE array before preparing a Send WR.
690 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400691 * The caller serializes calls to this function (per transport), and
692 * provides an effective memory barrier that flushes the new value
Chuck Leverae729502017-10-20 10:48:12 -0400693 * of rb_sc_head.
694 */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400695struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_xprt *r_xprt)
Chuck Leverae729502017-10-20 10:48:12 -0400696{
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400697 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400698 struct rpcrdma_sendctx *sc;
699 unsigned long next_head;
700
701 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
702
703 if (next_head == READ_ONCE(buf->rb_sc_tail))
704 goto out_emptyq;
705
706 /* ORDER: item must be accessed _before_ head is updated */
707 sc = buf->rb_sc_ctxs[next_head];
708
709 /* Releasing the lock in the caller acts as a memory
710 * barrier that flushes rb_sc_head.
711 */
712 buf->rb_sc_head = next_head;
713
714 return sc;
715
716out_emptyq:
717 /* The queue is "empty" if there have not been enough Send
718 * completions recently. This is a sign the Send Queue is
719 * backing up. Cause the caller to pause and try again.
720 */
Chuck Lever05eb06d2019-06-19 10:32:48 -0400721 xprt_wait_for_buffer_space(&r_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400722 r_xprt->rx_stats.empty_sendctx_q++;
723 return NULL;
724}
725
726/**
727 * rpcrdma_sendctx_put_locked - Release a send context
Chuck Leverf9958792019-10-17 14:31:18 -0400728 * @r_xprt: controlling transport instance
Chuck Leverae729502017-10-20 10:48:12 -0400729 * @sc: send context to release
730 *
731 * Usage: Called from Send completion to return a sendctxt
732 * to the queue.
733 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400734 * The caller serializes calls to this function (per transport).
Chuck Leverae729502017-10-20 10:48:12 -0400735 */
Chuck Leverf9958792019-10-17 14:31:18 -0400736static void rpcrdma_sendctx_put_locked(struct rpcrdma_xprt *r_xprt,
737 struct rpcrdma_sendctx *sc)
Chuck Leverae729502017-10-20 10:48:12 -0400738{
Chuck Leverf9958792019-10-17 14:31:18 -0400739 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400740 unsigned long next_tail;
741
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400742 /* Unmap SGEs of previously completed but unsignaled
Chuck Leverae729502017-10-20 10:48:12 -0400743 * Sends by walking up the queue until @sc is found.
744 */
745 next_tail = buf->rb_sc_tail;
746 do {
747 next_tail = rpcrdma_sendctx_next(buf, next_tail);
748
749 /* ORDER: item must be accessed _before_ tail is updated */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400750 rpcrdma_sendctx_unmap(buf->rb_sc_ctxs[next_tail]);
Chuck Leverae729502017-10-20 10:48:12 -0400751
752 } while (buf->rb_sc_ctxs[next_tail] != sc);
753
754 /* Paired with READ_ONCE */
755 smp_store_release(&buf->rb_sc_tail, next_tail);
Chuck Lever2fad6592018-05-04 15:35:57 -0400756
Chuck Leverf9958792019-10-17 14:31:18 -0400757 xprt_write_space(&r_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400758}
759
Chuck Lever505bbe62016-06-29 13:52:54 -0400760static void
Chuck Lever96cedde2017-12-14 20:57:55 -0500761rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -0400762{
763 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -0500764 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Levere2ac2362016-06-29 13:54:00 -0400765 unsigned int count;
Chuck Levere2ac2362016-06-29 13:54:00 -0400766
Chuck Lever93aa8e02020-02-21 17:00:54 -0500767 for (count = 0; count < ep->re_max_rdma_segs; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500768 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -0400769 int rc;
770
Chuck Lever805a1f62019-08-19 18:46:24 -0400771 mr = kzalloc(sizeof(*mr), GFP_NOFS);
Chuck Lever96cedde2017-12-14 20:57:55 -0500772 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -0400773 break;
774
Chuck Lever253a5162020-02-21 17:00:17 -0500775 rc = frwr_mr_init(r_xprt, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400776 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500777 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400778 break;
779 }
780
Chuck Lever4d6b8892019-08-19 18:47:57 -0400781 spin_lock(&buf->rb_lock);
Chuck Leverc3700782019-10-09 13:07:43 -0400782 rpcrdma_mr_push(mr, &buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -0400783 list_add(&mr->mr_all, &buf->rb_all_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -0400784 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -0400785 }
786
Chuck Levere2ac2362016-06-29 13:54:00 -0400787 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever1c443eff2017-12-20 16:31:21 -0500788 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Levere2ac2362016-06-29 13:54:00 -0400789}
790
791static void
792rpcrdma_mr_refresh_worker(struct work_struct *work)
793{
794 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
Chuck Lever3b39f522019-08-19 18:45:37 -0400795 rb_refresh_worker);
Chuck Levere2ac2362016-06-29 13:54:00 -0400796 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
797 rx_buf);
798
Chuck Lever96cedde2017-12-14 20:57:55 -0500799 rpcrdma_mrs_create(r_xprt);
Chuck Lever05eb06d2019-06-19 10:32:48 -0400800 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -0400801}
802
Chuck Lever1769e6a2019-04-24 09:39:05 -0400803/**
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400804 * rpcrdma_mrs_refresh - Wake the MR refresh worker
805 * @r_xprt: controlling transport instance
806 *
807 */
808void rpcrdma_mrs_refresh(struct rpcrdma_xprt *r_xprt)
809{
810 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -0500811 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400812
Chuck Lever897b7be2020-02-21 17:00:44 -0500813 /* If there is no underlying connection, it's no use
814 * to wake the refresh worker.
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400815 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500816 if (ep->re_connect_status == 1) {
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400817 /* The work is scheduled on a WQ_MEM_RECLAIM
818 * workqueue in order to prevent MR allocation
819 * from recursing into NFS during direct reclaim.
820 */
821 queue_work(xprtiod_workqueue, &buf->rb_refresh_worker);
822 }
823}
824
825/**
Chuck Lever1769e6a2019-04-24 09:39:05 -0400826 * rpcrdma_req_create - Allocate an rpcrdma_req object
827 * @r_xprt: controlling r_xprt
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400828 * @size: initial size, in bytes, of send and receive buffers
Chuck Lever1769e6a2019-04-24 09:39:05 -0400829 * @flags: GFP flags passed to memory allocators
830 *
831 * Returns an allocated and fully initialized rpcrdma_req or NULL.
832 */
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400833struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt, size_t size,
834 gfp_t flags)
Chuck Lever13924022015-01-21 11:03:52 -0500835{
Chuck Leverf531a5d2015-10-24 17:27:43 -0400836 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500837 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500838
Chuck Lever1769e6a2019-04-24 09:39:05 -0400839 req = kzalloc(sizeof(*req), flags);
Chuck Lever13924022015-01-21 11:03:52 -0500840 if (req == NULL)
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400841 goto out1;
Chuck Lever13924022015-01-21 11:03:52 -0500842
Chuck Leverd2832af2019-04-24 09:39:32 -0400843 req->rl_sendbuf = rpcrdma_regbuf_alloc(size, DMA_TO_DEVICE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400844 if (!req->rl_sendbuf)
Chuck Leverb78de1d2020-01-03 11:56:53 -0500845 goto out2;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400846
Chuck Leverd2832af2019-04-24 09:39:32 -0400847 req->rl_recvbuf = rpcrdma_regbuf_alloc(size, DMA_NONE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400848 if (!req->rl_recvbuf)
Chuck Leverb78de1d2020-01-03 11:56:53 -0500849 goto out3;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400850
Chuck Lever6dc6ec92019-08-19 18:47:10 -0400851 INIT_LIST_HEAD(&req->rl_free_mrs);
Chuck Lever2dd4a012018-02-28 15:31:05 -0500852 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever92f44332018-12-19 10:59:33 -0500853 spin_lock(&buffer->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400854 list_add(&req->rl_all, &buffer->rb_allreqs);
Chuck Lever92f44332018-12-19 10:59:33 -0500855 spin_unlock(&buffer->rb_lock);
Chuck Lever13924022015-01-21 11:03:52 -0500856 return req;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400857
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400858out3:
Chuck Leverb78de1d2020-01-03 11:56:53 -0500859 kfree(req->rl_sendbuf);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400860out2:
861 kfree(req);
862out1:
863 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -0500864}
865
Chuck Levera31b2f92019-10-09 13:07:27 -0400866/**
Chuck Leverb78de1d2020-01-03 11:56:53 -0500867 * rpcrdma_req_setup - Per-connection instance setup of an rpcrdma_req object
Chuck Levera31b2f92019-10-09 13:07:27 -0400868 * @r_xprt: controlling transport instance
Chuck Leverb78de1d2020-01-03 11:56:53 -0500869 * @req: rpcrdma_req object to set up
Chuck Levera31b2f92019-10-09 13:07:27 -0400870 *
Chuck Leverb78de1d2020-01-03 11:56:53 -0500871 * Returns zero on success, and a negative errno on failure.
872 */
873int rpcrdma_req_setup(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
874{
875 struct rpcrdma_regbuf *rb;
876 size_t maxhdrsize;
877
878 /* Compute maximum header buffer size in bytes */
879 maxhdrsize = rpcrdma_fixed_maxsz + 3 +
Chuck Levere28ce902020-02-21 17:01:05 -0500880 r_xprt->rx_ep->re_max_rdma_segs * rpcrdma_readchunk_maxsz;
Chuck Leverb78de1d2020-01-03 11:56:53 -0500881 maxhdrsize *= sizeof(__be32);
882 rb = rpcrdma_regbuf_alloc(__roundup_pow_of_two(maxhdrsize),
883 DMA_TO_DEVICE, GFP_KERNEL);
884 if (!rb)
885 goto out;
886
887 if (!__rpcrdma_regbuf_dma_map(r_xprt, rb))
888 goto out_free;
889
890 req->rl_rdmabuf = rb;
891 xdr_buf_init(&req->rl_hdrbuf, rdmab_data(rb), rdmab_length(rb));
892 return 0;
893
894out_free:
895 rpcrdma_regbuf_free(rb);
896out:
897 return -ENOMEM;
898}
899
900/* ASSUMPTION: the rb_allreqs list is stable for the duration,
901 * and thus can be walked without holding rb_lock. Eg. the
902 * caller is holding the transport send lock to exclude
903 * device removal or disconnection.
904 */
905static int rpcrdma_reqs_setup(struct rpcrdma_xprt *r_xprt)
906{
907 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
908 struct rpcrdma_req *req;
909 int rc;
910
911 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
912 rc = rpcrdma_req_setup(r_xprt, req);
913 if (rc)
914 return rc;
915 }
916 return 0;
917}
918
919static void rpcrdma_req_reset(struct rpcrdma_req *req)
920{
921 /* Credits are valid for only one connection */
922 req->rl_slot.rq_cong = 0;
923
924 rpcrdma_regbuf_free(req->rl_rdmabuf);
925 req->rl_rdmabuf = NULL;
926
927 rpcrdma_regbuf_dma_unmap(req->rl_sendbuf);
928 rpcrdma_regbuf_dma_unmap(req->rl_recvbuf);
Chuck Lever5de55ce2020-08-17 11:19:26 -0400929
930 frwr_reset(req);
Chuck Leverb78de1d2020-01-03 11:56:53 -0500931}
932
933/* ASSUMPTION: the rb_allreqs list is stable for the duration,
Chuck Levera31b2f92019-10-09 13:07:27 -0400934 * and thus can be walked without holding rb_lock. Eg. the
935 * caller is holding the transport send lock to exclude
936 * device removal or disconnection.
937 */
938static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt)
939{
940 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
941 struct rpcrdma_req *req;
942
Chuck Leverb78de1d2020-01-03 11:56:53 -0500943 list_for_each_entry(req, &buf->rb_allreqs, rl_all)
944 rpcrdma_req_reset(req);
Chuck Levera31b2f92019-10-09 13:07:27 -0400945}
946
Chuck Levere515dd92020-01-03 11:57:09 -0500947static noinline
948struct rpcrdma_rep *rpcrdma_rep_create(struct rpcrdma_xprt *r_xprt,
949 bool temp)
Chuck Lever13924022015-01-21 11:03:52 -0500950{
Chuck Lever9e3ca332021-04-19 14:02:35 -0400951 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500952 struct rpcrdma_rep *rep;
Chuck Lever13924022015-01-21 11:03:52 -0500953
Chuck Lever6b1184c2015-01-21 11:04:25 -0500954 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500955 if (rep == NULL)
956 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500957
Chuck Levere28ce902020-02-21 17:01:05 -0500958 rep->rr_rdmabuf = rpcrdma_regbuf_alloc(r_xprt->rx_ep->re_inline_recv,
Chuck Lever99ef4db2016-09-15 10:56:10 -0400959 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever8cec3db2019-04-24 09:39:16 -0400960 if (!rep->rr_rdmabuf)
Chuck Lever13924022015-01-21 11:03:52 -0500961 goto out_free;
Chuck Lever379d1bc2019-06-19 10:33:20 -0400962
Chuck Levere515dd92020-01-03 11:57:09 -0500963 if (!rpcrdma_regbuf_dma_map(r_xprt, rep->rr_rdmabuf))
964 goto out_free_regbuf;
965
Chuck Leveraf5865d2020-11-09 14:39:21 -0500966 rep->rr_cid.ci_completion_id =
967 atomic_inc_return(&r_xprt->rx_ep->re_completion_ids);
968
Chuck Lever8cec3db2019-04-24 09:39:16 -0400969 xdr_buf_init(&rep->rr_hdrbuf, rdmab_data(rep->rr_rdmabuf),
Chuck Lever96f87782017-08-03 14:30:03 -0400970 rdmab_length(rep->rr_rdmabuf));
Chuck Lever1519e962016-09-15 10:57:49 -0400971 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -0400972 rep->rr_rxprt = r_xprt;
Chuck Lever6ea8e712016-09-15 10:56:51 -0400973 rep->rr_recv_wr.next = NULL;
974 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
975 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
976 rep->rr_recv_wr.num_sge = 1;
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400977 rep->rr_temp = temp;
Chuck Lever9e3ca332021-04-19 14:02:35 -0400978
979 spin_lock(&buf->rb_lock);
980 list_add(&rep->rr_all, &buf->rb_all_reps);
981 spin_unlock(&buf->rb_lock);
Chuck Lever379d1bc2019-06-19 10:33:20 -0400982 return rep;
Chuck Lever13924022015-01-21 11:03:52 -0500983
Chuck Levere515dd92020-01-03 11:57:09 -0500984out_free_regbuf:
985 rpcrdma_regbuf_free(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500986out_free:
987 kfree(rep);
988out:
Chuck Lever379d1bc2019-06-19 10:33:20 -0400989 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -0500990}
991
Chuck Levereaf86e82021-04-24 15:02:28 -0400992static void rpcrdma_rep_free(struct rpcrdma_rep *rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -0400993{
994 rpcrdma_regbuf_free(rep->rr_rdmabuf);
995 kfree(rep);
996}
997
Chuck Levereaf86e82021-04-24 15:02:28 -0400998static void rpcrdma_rep_destroy(struct rpcrdma_rep *rep)
999{
1000 struct rpcrdma_buffer *buf = &rep->rr_rxprt->rx_buf;
1001
1002 spin_lock(&buf->rb_lock);
1003 list_del(&rep->rr_all);
1004 spin_unlock(&buf->rb_lock);
1005
1006 rpcrdma_rep_free(rep);
1007}
1008
Chuck Leverb0b227f2019-08-19 18:48:43 -04001009static struct rpcrdma_rep *rpcrdma_rep_get_locked(struct rpcrdma_buffer *buf)
1010{
1011 struct llist_node *node;
1012
1013 /* Calls to llist_del_first are required to be serialized */
1014 node = llist_del_first(&buf->rb_free_reps);
1015 if (!node)
1016 return NULL;
1017 return llist_entry(node, struct rpcrdma_rep, rr_node);
1018}
1019
Chuck Leverc35ca602021-04-19 14:02:47 -04001020/**
1021 * rpcrdma_rep_put - Release rpcrdma_rep back to free list
1022 * @buf: buffer pool
1023 * @rep: rep to release
1024 *
1025 */
1026void rpcrdma_rep_put(struct rpcrdma_buffer *buf, struct rpcrdma_rep *rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -04001027{
Chuck Lever671c4502020-01-03 11:52:22 -05001028 llist_add(&rep->rr_node, &buf->rb_free_reps);
1029}
1030
Chuck Lever8b5292be2021-04-19 14:02:28 -04001031/* Caller must ensure the QP is quiescent (RQ is drained) before
1032 * invoking this function, to guarantee rb_all_reps is not
1033 * changing.
1034 */
Chuck Lever671c4502020-01-03 11:52:22 -05001035static 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 Lever8b5292be2021-04-19 14:02:28 -04001042 rep->rr_temp = true; /* Mark this rep for destruction */
Chuck Leverb7ff0182020-01-03 11:57:04 -05001043 }
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
Chuck Levereaf86e82021-04-24 15:02:28 -04001050 spin_lock(&buf->rb_lock);
1051 while ((rep = list_first_entry_or_null(&buf->rb_all_reps,
1052 struct rpcrdma_rep,
1053 rr_all)) != NULL) {
1054 list_del(&rep->rr_all);
1055 spin_unlock(&buf->rb_lock);
1056
1057 rpcrdma_rep_free(rep);
1058
1059 spin_lock(&buf->rb_lock);
1060 }
1061 spin_unlock(&buf->rb_lock);
Chuck Leverb0b227f2019-08-19 18:48:43 -04001062}
1063
Chuck Lever86c4ccd2019-04-24 09:40:25 -04001064/**
1065 * rpcrdma_buffer_create - Create initial set of req/rep objects
1066 * @r_xprt: transport instance to (re)initialize
1067 *
1068 * Returns zero on success, otherwise a negative errno.
1069 */
1070int rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001071{
Chuck Leverac920d02015-01-21 11:03:44 -05001072 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001073 int i, rc;
1074
Chuck Leverf531a5d2015-10-24 17:27:43 -04001075 buf->rb_bc_srv_max_requests = 0;
Chuck Lever505bbe62016-06-29 13:52:54 -04001076 spin_lock_init(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001077 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -04001078 INIT_LIST_HEAD(&buf->rb_all_mrs);
Chuck Lever3b39f522019-08-19 18:45:37 -04001079 INIT_WORK(&buf->rb_refresh_worker, rpcrdma_mr_refresh_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001080
Chuck Lever1e465fd2015-10-24 17:27:02 -04001081 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001082 INIT_LIST_HEAD(&buf->rb_allreqs);
Chuck Lever671c4502020-01-03 11:52:22 -05001083 INIT_LIST_HEAD(&buf->rb_all_reps);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001084
1085 rc = -ENOMEM;
Chuck Lever7581d902020-01-03 11:56:37 -05001086 for (i = 0; i < r_xprt->rx_xprt.max_reqs; i++) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001087 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001088
Chuck Lever614f3c92019-10-17 14:31:53 -04001089 req = rpcrdma_req_create(r_xprt, RPCRDMA_V1_DEF_INLINE_SIZE * 2,
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001090 GFP_KERNEL);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001091 if (!req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001092 goto out;
Chuck Levera80d66c2017-06-08 11:52:12 -04001093 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001094 }
1095
Chuck Leverb0b227f2019-08-19 18:48:43 -04001096 init_llist_head(&buf->rb_free_reps);
Chuck Lever13924022015-01-21 11:03:52 -05001097
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001098 return 0;
1099out:
1100 rpcrdma_buffer_destroy(buf);
1101 return rc;
1102}
1103
Chuck Lever92f44332018-12-19 10:59:33 -05001104/**
1105 * rpcrdma_req_destroy - Destroy an rpcrdma_req object
1106 * @req: unused object to be destroyed
1107 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001108 * Relies on caller holding the transport send lock to protect
1109 * removing req->rl_all from buf->rb_all_reqs safely.
Chuck Lever92f44332018-12-19 10:59:33 -05001110 */
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001111void rpcrdma_req_destroy(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001112{
Chuck Leverc3700782019-10-09 13:07:43 -04001113 struct rpcrdma_mr *mr;
1114
Chuck Lever92f44332018-12-19 10:59:33 -05001115 list_del(&req->rl_all);
1116
Chuck Leverc3700782019-10-09 13:07:43 -04001117 while ((mr = rpcrdma_mr_pop(&req->rl_free_mrs))) {
1118 struct rpcrdma_buffer *buf = &mr->mr_xprt->rx_buf;
1119
1120 spin_lock(&buf->rb_lock);
1121 list_del(&mr->mr_all);
1122 spin_unlock(&buf->rb_lock);
1123
Chuck Leverf912af72021-04-19 14:03:00 -04001124 frwr_mr_release(mr);
Chuck Leverc3700782019-10-09 13:07:43 -04001125 }
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001126
Chuck Leverd2832af2019-04-24 09:39:32 -04001127 rpcrdma_regbuf_free(req->rl_recvbuf);
1128 rpcrdma_regbuf_free(req->rl_sendbuf);
1129 rpcrdma_regbuf_free(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001130 kfree(req);
1131}
1132
Chuck Leverc3700782019-10-09 13:07:43 -04001133/**
1134 * rpcrdma_mrs_destroy - Release all of a transport's MRs
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001135 * @r_xprt: controlling transport instance
Chuck Leverc3700782019-10-09 13:07:43 -04001136 *
1137 * Relies on caller holding the transport send lock to protect
1138 * removing mr->mr_list from req->rl_free_mrs safely.
1139 */
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001140static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001141{
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001142 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001143 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001144
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001145 cancel_work_sync(&buf->rb_refresh_worker);
1146
Chuck Lever4d6b8892019-08-19 18:47:57 -04001147 spin_lock(&buf->rb_lock);
Chuck Levereed48a92019-08-19 18:42:31 -04001148 while ((mr = list_first_entry_or_null(&buf->rb_all_mrs,
1149 struct rpcrdma_mr,
1150 mr_all)) != NULL) {
Chuck Leverc3700782019-10-09 13:07:43 -04001151 list_del(&mr->mr_list);
Chuck Lever96cedde2017-12-14 20:57:55 -05001152 list_del(&mr->mr_all);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001153 spin_unlock(&buf->rb_lock);
Chuck Lever054f1552018-05-01 11:37:14 -04001154
Chuck Leverf912af72021-04-19 14:03:00 -04001155 frwr_mr_release(mr);
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001156
Chuck Lever4d6b8892019-08-19 18:47:57 -04001157 spin_lock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001158 }
Chuck Lever4d6b8892019-08-19 18:47:57 -04001159 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001160}
1161
Chuck Leveraf65ed42018-12-19 11:00:37 -05001162/**
1163 * rpcrdma_buffer_destroy - Release all hw resources
1164 * @buf: root control block for resources
1165 *
Chuck Leverb8fe6772019-04-24 09:40:36 -04001166 * ORDERING: relies on a prior rpcrdma_xprt_drain :
Chuck Leveraf65ed42018-12-19 11:00:37 -05001167 * - No more Send or Receive completions can occur
1168 * - All MRs, reps, and reqs are returned to their free lists
1169 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001170void
1171rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1172{
Chuck Leverb0b227f2019-08-19 18:48:43 -04001173 rpcrdma_reps_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001174
Chuck Lever92f44332018-12-19 10:59:33 -05001175 while (!list_empty(&buf->rb_send_bufs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001176 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001177
Chuck Lever92f44332018-12-19 10:59:33 -05001178 req = list_first_entry(&buf->rb_send_bufs,
1179 struct rpcrdma_req, rl_list);
1180 list_del(&req->rl_list);
1181 rpcrdma_req_destroy(req);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001182 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001183}
1184
Chuck Lever96cedde2017-12-14 20:57:55 -05001185/**
1186 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1187 * @r_xprt: controlling transport
1188 *
1189 * Returns an initialized rpcrdma_mr or NULL if no free
1190 * rpcrdma_mr objects are available.
1191 */
1192struct rpcrdma_mr *
1193rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001194{
Chuck Lever346aa662015-05-26 11:52:06 -04001195 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever265a38d2019-08-19 18:44:04 -04001196 struct rpcrdma_mr *mr;
Chuck Lever346aa662015-05-26 11:52:06 -04001197
Chuck Lever4d6b8892019-08-19 18:47:57 -04001198 spin_lock(&buf->rb_lock);
Chuck Lever265a38d2019-08-19 18:44:04 -04001199 mr = rpcrdma_mr_pop(&buf->rb_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001200 spin_unlock(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001201 return mr;
Chuck Leverec12e472017-12-14 20:58:04 -05001202}
1203
Chuck Lever96cedde2017-12-14 20:57:55 -05001204/**
Trond Myklebuste86be3a2021-05-25 18:43:38 -04001205 * rpcrdma_reply_put - Put reply buffers back into pool
1206 * @buffers: buffer pool
1207 * @req: object to return
1208 *
1209 */
1210void rpcrdma_reply_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
1211{
1212 if (req->rl_reply) {
1213 rpcrdma_rep_put(buffers, req->rl_reply);
1214 req->rl_reply = NULL;
1215 }
1216}
1217
1218/**
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001219 * rpcrdma_buffer_get - Get a request buffer
1220 * @buffers: Buffer pool from which to obtain a buffer
Chuck Lever78d506e2016-09-06 11:22:49 -04001221 *
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001222 * Returns a fresh rpcrdma_req, or NULL if none are available.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001223 */
1224struct rpcrdma_req *
1225rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1226{
1227 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001228
Chuck Levera5b027e2015-10-24 17:27:27 -04001229 spin_lock(&buffers->rb_lock);
Chuck Levere68699c2018-05-04 15:35:31 -04001230 req = list_first_entry_or_null(&buffers->rb_send_bufs,
1231 struct rpcrdma_req, rl_list);
1232 if (req)
1233 list_del_init(&req->rl_list);
Chuck Levera5b027e2015-10-24 17:27:27 -04001234 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001235 return req;
1236}
1237
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001238/**
1239 * rpcrdma_buffer_put - Put request/reply buffers back into pool
Chuck Lever5828ceb2019-06-19 10:33:36 -04001240 * @buffers: buffer pool
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001241 * @req: object to return
1242 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001243 */
Chuck Lever5828ceb2019-06-19 10:33:36 -04001244void rpcrdma_buffer_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001245{
Trond Myklebuste86be3a2021-05-25 18:43:38 -04001246 rpcrdma_reply_put(buffers, req);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001247
Chuck Levera5b027e2015-10-24 17:27:27 -04001248 spin_lock(&buffers->rb_lock);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001249 list_add(&req->rl_list, &buffers->rb_send_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001250 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001251}
1252
Chuck Leverd2832af2019-04-24 09:39:32 -04001253/* Returns a pointer to a rpcrdma_regbuf object, or NULL.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001254 *
1255 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001256 * receiving the payload of RDMA RECV operations. During Long Calls
Chuck Lever5f624122018-12-19 10:59:01 -05001257 * or Replies they may be registered externally via frwr_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001258 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001259static struct rpcrdma_regbuf *
1260rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
Chuck Lever13650c22016-09-15 10:56:26 -04001261 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001262{
1263 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001264
Chuck Lever8cec3db2019-04-24 09:39:16 -04001265 rb = kmalloc(sizeof(*rb), flags);
1266 if (!rb)
1267 return NULL;
1268 rb->rg_data = kmalloc(size, flags);
1269 if (!rb->rg_data) {
1270 kfree(rb);
1271 return NULL;
1272 }
Chuck Lever9128c3e2015-01-21 11:04:00 -05001273
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001274 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001275 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001276 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001277 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001278}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001279
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001280/**
Chuck Lever0f665ce2019-04-24 09:39:27 -04001281 * rpcrdma_regbuf_realloc - re-allocate a SEND/RECV buffer
1282 * @rb: regbuf to reallocate
1283 * @size: size of buffer to be allocated, in bytes
1284 * @flags: GFP flags
1285 *
1286 * Returns true if reallocation was successful. If false is
1287 * returned, @rb is left untouched.
1288 */
1289bool rpcrdma_regbuf_realloc(struct rpcrdma_regbuf *rb, size_t size, gfp_t flags)
1290{
1291 void *buf;
1292
1293 buf = kmalloc(size, flags);
1294 if (!buf)
1295 return false;
1296
Chuck Leverd2832af2019-04-24 09:39:32 -04001297 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever0f665ce2019-04-24 09:39:27 -04001298 kfree(rb->rg_data);
1299
1300 rb->rg_data = buf;
1301 rb->rg_iov.length = size;
1302 return true;
1303}
1304
1305/**
Chuck Leverd2832af2019-04-24 09:39:32 -04001306 * __rpcrdma_regbuf_dma_map - DMA-map a regbuf
1307 * @r_xprt: controlling transport instance
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001308 * @rb: regbuf to be mapped
Chuck Leverd2832af2019-04-24 09:39:32 -04001309 *
1310 * Returns true if the buffer is now DMA mapped to @r_xprt's device
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001311 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001312bool __rpcrdma_regbuf_dma_map(struct rpcrdma_xprt *r_xprt,
1313 struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001314{
Chuck Levere28ce902020-02-21 17:01:05 -05001315 struct ib_device *device = r_xprt->rx_ep->re_id->device;
Chuck Lever91a10c52017-04-11 13:23:02 -04001316
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001317 if (rb->rg_direction == DMA_NONE)
1318 return false;
1319
Chuck Leverd2832af2019-04-24 09:39:32 -04001320 rb->rg_iov.addr = ib_dma_map_single(device, rdmab_data(rb),
1321 rdmab_length(rb), rb->rg_direction);
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001322 if (ib_dma_mapping_error(device, rdmab_addr(rb))) {
1323 trace_xprtrdma_dma_maperr(rdmab_addr(rb));
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001324 return false;
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001325 }
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001326
Chuck Lever91a10c52017-04-11 13:23:02 -04001327 rb->rg_device = device;
Chuck Levere28ce902020-02-21 17:01:05 -05001328 rb->rg_iov.lkey = r_xprt->rx_ep->re_pd->local_dma_lkey;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001329 return true;
1330}
1331
Chuck Leverd2832af2019-04-24 09:39:32 -04001332static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001333{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001334 if (!rb)
1335 return;
1336
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001337 if (!rpcrdma_regbuf_is_mapped(rb))
1338 return;
1339
Chuck Leverd2832af2019-04-24 09:39:32 -04001340 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb), rdmab_length(rb),
1341 rb->rg_direction);
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001342 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001343}
1344
Chuck Leverd2832af2019-04-24 09:39:32 -04001345static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001346{
Chuck Leverd2832af2019-04-24 09:39:32 -04001347 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever8cec3db2019-04-24 09:39:16 -04001348 if (rb)
1349 kfree(rb->rg_data);
Chuck Levere531dca2015-08-03 13:03:20 -04001350 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001351}
1352
Chuck Lever995d3122018-12-19 11:00:32 -05001353/**
Chuck Lever2ae50ad2019-10-09 13:07:38 -04001354 * rpcrdma_post_recvs - Refill the Receive Queue
1355 * @r_xprt: controlling transport instance
Chuck Lever35d8b102021-04-19 14:02:41 -04001356 * @needed: current credit grant
1357 * @temp: mark Receive buffers to be deleted after one use
Chuck Lever2ae50ad2019-10-09 13:07:38 -04001358 *
1359 */
Chuck Lever35d8b102021-04-19 14:02:41 -04001360void rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, int needed, bool temp)
Chuck Leverf531a5d2015-10-24 17:27:43 -04001361{
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001362 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -05001363 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Levere515dd92020-01-03 11:57:09 -05001364 struct ib_recv_wr *wr, *bad_wr;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001365 struct rpcrdma_rep *rep;
Chuck Lever35d8b102021-04-19 14:02:41 -04001366 int count, rc;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001367
Chuck Lever61c208a2018-10-01 14:26:35 -04001368 rc = 0;
1369 count = 0;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001370
Chuck Lever93aa8e02020-02-21 17:00:54 -05001371 if (likely(ep->re_receive_count > needed))
Chuck Lever61c208a2018-10-01 14:26:35 -04001372 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -05001373 needed -= ep->re_receive_count;
Chuck Levere340c2d2019-02-11 11:23:54 -05001374 if (!temp)
1375 needed += RPCRDMA_MAX_RECV_BATCH;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001376
Chuck Lever15788d12021-04-19 14:02:09 -04001377 if (atomic_inc_return(&ep->re_receiving) > 1)
1378 goto out;
1379
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001380 /* fast path: all needed reps can be found on the free list */
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001381 wr = NULL;
1382 while (needed) {
Chuck Leverb0b227f2019-08-19 18:48:43 -04001383 rep = rpcrdma_rep_get_locked(buf);
Chuck Lever671c4502020-01-03 11:52:22 -05001384 if (rep && rep->rr_temp) {
1385 rpcrdma_rep_destroy(rep);
1386 continue;
1387 }
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001388 if (!rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -04001389 rep = rpcrdma_rep_create(r_xprt, temp);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001390 if (!rep)
1391 break;
1392
Chuck Leveraf5865d2020-11-09 14:39:21 -05001393 rep->rr_cid.ci_queue_id = ep->re_attr.recv_cq->res.id;
Chuck Levere515dd92020-01-03 11:57:09 -05001394 trace_xprtrdma_post_recv(rep);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001395 rep->rr_recv_wr.next = wr;
1396 wr = &rep->rr_recv_wr;
1397 --needed;
Chuck Levere515dd92020-01-03 11:57:09 -05001398 ++count;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001399 }
1400 if (!wr)
Chuck Lever61c208a2018-10-01 14:26:35 -04001401 goto out;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001402
Chuck Levere28ce902020-02-21 17:01:05 -05001403 rc = ib_post_recv(ep->re_id->qp, wr,
Bart Van Assched34ac5c2018-07-18 09:25:32 -07001404 (const struct ib_recv_wr **)&bad_wr);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001405 if (rc) {
Chuck Lever683f31c2021-08-02 14:44:30 -04001406 trace_xprtrdma_post_recvs_err(r_xprt, rc);
Chuck Lever2d0abe32019-06-19 10:32:38 -04001407 for (wr = bad_wr; wr;) {
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001408 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001409
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001410 rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
Chuck Lever2d0abe32019-06-19 10:32:38 -04001411 wr = wr->next;
Chuck Leverc35ca602021-04-19 14:02:47 -04001412 rpcrdma_rep_put(buf, rep);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001413 --count;
1414 }
1415 }
Chuck Lever97480ca2021-08-02 14:44:24 -04001416 if (atomic_dec_return(&ep->re_receiving) > 0)
1417 complete(&ep->re_done);
1418
1419out:
Chuck Lever683f31c2021-08-02 14:44:30 -04001420 trace_xprtrdma_post_recvs(r_xprt, count);
Chuck Lever93aa8e02020-02-21 17:00:54 -05001421 ep->re_receive_count += count;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001422 return;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001423}