blob: 7b5fce2faa10b40e6726aa62d0e06a85203113aa [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
Chuck Levercb586de2020-01-03 11:56:32 -050066static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt);
67static void rpcrdma_sendctxs_destroy(struct rpcrdma_xprt *r_xprt);
Chuck Leverf9958792019-10-17 14:31:18 -040068static void rpcrdma_sendctx_put_locked(struct rpcrdma_xprt *r_xprt,
69 struct rpcrdma_sendctx *sc);
Chuck Leverb78de1d2020-01-03 11:56:53 -050070static int rpcrdma_reqs_setup(struct rpcrdma_xprt *r_xprt);
Chuck Levera31b2f92019-10-09 13:07:27 -040071static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt);
Chuck Lever85810382020-01-03 11:56:58 -050072static void rpcrdma_rep_destroy(struct rpcrdma_rep *rep);
Chuck Lever671c4502020-01-03 11:52:22 -050073static void rpcrdma_reps_unmap(struct rpcrdma_xprt *r_xprt);
Chuck Lever96cedde2017-12-14 20:57:55 -050074static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
Chuck Lever9d2da4f2019-10-09 13:07:48 -040075static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt);
Chuck Lever2acc5ca2020-06-15 09:20:52 -040076static void rpcrdma_ep_get(struct rpcrdma_ep *ep);
77static int rpcrdma_ep_put(struct rpcrdma_ep *ep);
Chuck Leverd2832af2019-04-24 09:39:32 -040078static struct rpcrdma_regbuf *
79rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
80 gfp_t flags);
81static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb);
82static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040083
Chuck Leverb8fe6772019-04-24 09:40:36 -040084/* Wait for outstanding transport work to finish. ib_drain_qp
85 * handles the drains in the wrong order for us, so open code
86 * them here.
Chuck Lever6d2d0ee2018-12-19 10:58:29 -050087 */
88static void rpcrdma_xprt_drain(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040089{
Chuck Lever2acc5ca2020-06-15 09:20:52 -040090 struct rpcrdma_ep *ep = r_xprt->rx_ep;
91 struct rdma_cm_id *id = ep->re_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040092
Chuck Lever15788d12021-04-19 14:02:09 -040093 /* Wait for rpcrdma_post_recvs() to leave its critical
94 * section.
95 */
96 if (atomic_inc_return(&ep->re_receiving) > 1)
97 wait_for_completion(&ep->re_done);
98
Chuck Lever6d2d0ee2018-12-19 10:58:29 -050099 /* Flush Receives, then wait for deferred Reply work
100 * to complete.
101 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500102 ib_drain_rq(id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400103
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500104 /* Deferred Reply processing might have scheduled
105 * local invalidations.
106 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500107 ib_drain_sq(id->qp);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400108
109 rpcrdma_ep_put(ep);
Chuck Leverf1a03b72014-11-08 20:14:37 -0500110}
111
Chuck Leverc487eb72020-06-15 09:21:07 -0400112/* Ensure xprt_force_disconnect() is invoked exactly once when a
113 * connection is closed or lost. (The important thing is it needs
114 * to be invoked "at least" once).
115 */
Chuck Lever11431292021-08-02 14:44:17 -0400116void rpcrdma_force_disconnect(struct rpcrdma_ep *ep)
Chuck Leverc487eb72020-06-15 09:21:07 -0400117{
118 if (atomic_add_unless(&ep->re_force_disconnect, 1, 1))
119 xprt_force_disconnect(ep->re_xprt);
120}
121
Chuck Lever2fa8f882016-03-04 11:28:53 -0500122/**
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500123 * rpcrdma_flush_disconnect - Disconnect on flushed completion
Chuck Leverf423f752020-06-15 09:21:02 -0400124 * @r_xprt: transport to disconnect
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500125 * @wc: work completion entry
126 *
127 * Must be called in process context.
128 */
Chuck Leverf423f752020-06-15 09:21:02 -0400129void rpcrdma_flush_disconnect(struct rpcrdma_xprt *r_xprt, struct ib_wc *wc)
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500130{
Chuck Leverc487eb72020-06-15 09:21:07 -0400131 if (wc->status != IB_WC_SUCCESS)
132 rpcrdma_force_disconnect(r_xprt->rx_ep);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500133}
134
135/**
Chuck Lever2fa8f882016-03-04 11:28:53 -0500136 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
Chuck Leverf9958792019-10-17 14:31:18 -0400137 * @cq: completion queue
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500138 * @wc: WCE for a completed Send WR
Chuck Lever2fa8f882016-03-04 11:28:53 -0500139 *
Chuck Lever4220a072015-10-24 17:26:45 -0400140 */
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500141static void rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400142{
Chuck Leverae729502017-10-20 10:48:12 -0400143 struct ib_cqe *cqe = wc->wr_cqe;
144 struct rpcrdma_sendctx *sc =
145 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
Chuck Leverf423f752020-06-15 09:21:02 -0400146 struct rpcrdma_xprt *r_xprt = cq->cq_context;
Chuck Leverae729502017-10-20 10:48:12 -0400147
Chuck Lever2fa8f882016-03-04 11:28:53 -0500148 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leverb2e74672020-11-09 14:39:26 -0500149 trace_xprtrdma_wc_send(wc, &sc->sc_cid);
Chuck Leverf423f752020-06-15 09:21:02 -0400150 rpcrdma_sendctx_put_locked(r_xprt, sc);
151 rpcrdma_flush_disconnect(r_xprt, wc);
Chuck Leverfc664482014-05-28 10:33:25 -0400152}
153
Chuck Lever552bf222016-03-04 11:28:36 -0500154/**
Chuck Lever1519e962016-09-15 10:57:49 -0400155 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500156 * @cq: completion queue
157 * @wc: WCE for a completed Receive WR
Chuck Lever552bf222016-03-04 11:28:36 -0500158 *
159 */
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500160static void rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400161{
Chuck Lever552bf222016-03-04 11:28:36 -0500162 struct ib_cqe *cqe = wc->wr_cqe;
163 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
164 rr_cqe);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500165 struct rpcrdma_xprt *r_xprt = cq->cq_context;
Chuck Leverfc664482014-05-28 10:33:25 -0400166
Chuck Lever6ceea362018-12-19 10:58:24 -0500167 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leveraf5865d2020-11-09 14:39:21 -0500168 trace_xprtrdma_wc_receive(wc, &rep->rr_cid);
Chuck Levere28ce902020-02-21 17:01:05 -0500169 --r_xprt->rx_ep->re_receive_count;
Chuck Lever85024272015-01-21 11:02:04 -0500170 if (wc->status != IB_WC_SUCCESS)
Chuck Lever6ceea362018-12-19 10:58:24 -0500171 goto out_flushed;
Chuck Leverfc664482014-05-28 10:33:25 -0400172
Chuck Lever85024272015-01-21 11:02:04 -0500173 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever96f87782017-08-03 14:30:03 -0400174 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400175 rep->rr_wc_flags = wc->wc_flags;
176 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
177
Chuck Lever91a10c52017-04-11 13:23:02 -0400178 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500179 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400180 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500181
Chuck Leverd8f532d2017-10-16 15:01:30 -0400182 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500183 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400184
Chuck Lever6ceea362018-12-19 10:58:24 -0500185out_flushed:
Chuck Leverf423f752020-06-15 09:21:02 -0400186 rpcrdma_flush_disconnect(r_xprt, wc);
Chuck Lever5030c9a2021-04-19 14:02:16 -0400187 rpcrdma_rep_put(&r_xprt->rx_buf, rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400188}
189
Chuck Lever745b7342020-02-21 17:01:00 -0500190static void rpcrdma_update_cm_private(struct rpcrdma_ep *ep,
Chuck Leverf54c8702019-10-23 10:02:09 -0400191 struct rdma_conn_param *param)
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400192{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400193 const struct rpcrdma_connect_private *pmsg = param->private_data;
194 unsigned int rsize, wsize;
195
Chuck Leverc8b920b2016-09-15 10:57:16 -0400196 /* Default settings for RPC-over-RDMA Version One */
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400197 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
198 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
199
200 if (pmsg &&
201 pmsg->cp_magic == rpcrdma_cmp_magic &&
202 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
203 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
204 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
205 }
206
Chuck Lever93aa8e02020-02-21 17:00:54 -0500207 if (rsize < ep->re_inline_recv)
208 ep->re_inline_recv = rsize;
209 if (wsize < ep->re_inline_send)
210 ep->re_inline_send = wsize;
Chuck Leverf54c8702019-10-23 10:02:09 -0400211
Chuck Lever93aa8e02020-02-21 17:00:54 -0500212 rpcrdma_set_max_header_sizes(ep);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400213}
214
Chuck Leverae382882018-10-01 14:25:47 -0400215/**
216 * rpcrdma_cm_event_handler - Handle RDMA CM events
217 * @id: rdma_cm_id on which an event has occurred
218 * @event: details of the event
219 *
220 * Called with @id's mutex held. Returns 1 if caller should
221 * destroy @id, otherwise 0.
222 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400223static int
Chuck Leverae382882018-10-01 14:25:47 -0400224rpcrdma_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400225{
Chuck Lever745b7342020-02-21 17:01:00 -0500226 struct sockaddr *sap = (struct sockaddr *)&id->route.addr.dst_addr;
Chuck Levere28ce902020-02-21 17:01:05 -0500227 struct rpcrdma_ep *ep = id->context;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400228
Chuck Leverae382882018-10-01 14:25:47 -0400229 might_sleep();
230
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400231 switch (event->event) {
232 case RDMA_CM_EVENT_ADDR_RESOLVED:
233 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500234 ep->re_async_rc = 0;
235 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400236 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400237 case RDMA_CM_EVENT_ADDR_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500238 ep->re_async_rc = -EPROTO;
239 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400240 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400241 case RDMA_CM_EVENT_ROUTE_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500242 ep->re_async_rc = -ENETUNREACH;
243 complete(&ep->re_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400244 return 0;
Chuck Leverbebd0312017-04-11 13:23:10 -0400245 case RDMA_CM_EVENT_DEVICE_REMOVAL:
Chuck Lever745b7342020-02-21 17:01:00 -0500246 pr_info("rpcrdma: removing device %s for %pISpc\n",
247 ep->re_id->device->name, sap);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500248 fallthrough;
Chuck Levere28ce902020-02-21 17:01:05 -0500249 case RDMA_CM_EVENT_ADDR_CHANGE:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500250 ep->re_connect_status = -ENODEV;
Chuck Levere28ce902020-02-21 17:01:05 -0500251 goto disconnected;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400252 case RDMA_CM_EVENT_ESTABLISHED:
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400253 rpcrdma_ep_get(ep);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500254 ep->re_connect_status = 1;
Chuck Lever745b7342020-02-21 17:01:00 -0500255 rpcrdma_update_cm_private(ep, &event->param.conn);
256 trace_xprtrdma_inline_thresh(ep);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500257 wake_up_all(&ep->re_connect_wait);
Chuck Lever31e62d22018-10-01 14:26:08 -0400258 break;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400259 case RDMA_CM_EVENT_CONNECT_ERROR:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500260 ep->re_connect_status = -ENOTCONN;
Chuck Leveraf667522020-06-27 12:35:20 -0400261 goto wake_connect_worker;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400262 case RDMA_CM_EVENT_UNREACHABLE:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500263 ep->re_connect_status = -ENETUNREACH;
Chuck Leveraf667522020-06-27 12:35:20 -0400264 goto wake_connect_worker;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400265 case RDMA_CM_EVENT_REJECTED:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500266 ep->re_connect_status = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500267 if (event->status == IB_CM_REJ_STALE_CONN)
Chuck Lever4cf44be2020-06-27 12:35:09 -0400268 ep->re_connect_status = -ENOTCONN;
Chuck Leveraf667522020-06-27 12:35:20 -0400269wake_connect_worker:
270 wake_up_all(&ep->re_connect_wait);
271 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400272 case RDMA_CM_EVENT_DISCONNECTED:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500273 ep->re_connect_status = -ECONNABORTED;
Chuck Lever31e62d22018-10-01 14:26:08 -0400274disconnected:
Chuck Leverc487eb72020-06-15 09:21:07 -0400275 rpcrdma_force_disconnect(ep);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400276 return rpcrdma_ep_put(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400277 default:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400278 break;
279 }
280
281 return 0;
282}
283
Chuck Lever93aa8e02020-02-21 17:00:54 -0500284static struct rdma_cm_id *rpcrdma_create_id(struct rpcrdma_xprt *r_xprt,
285 struct rpcrdma_ep *ep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400286{
Chuck Lever109b88a2016-11-29 10:52:40 -0500287 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500288 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400289 struct rdma_cm_id *id;
290 int rc;
291
Chuck Lever93aa8e02020-02-21 17:00:54 -0500292 init_completion(&ep->re_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400293
Chuck Levere28ce902020-02-21 17:01:05 -0500294 id = rdma_create_id(xprt->xprt_net, rpcrdma_cm_event_handler, ep,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500295 RDMA_PS_TCP, IB_QPT_RC);
Chuck Leverddbb3472018-12-19 10:59:39 -0500296 if (IS_ERR(id))
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400297 return id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400298
Chuck Lever93aa8e02020-02-21 17:00:54 -0500299 ep->re_async_rc = -ETIMEDOUT;
300 rc = rdma_resolve_addr(id, NULL, (struct sockaddr *)&xprt->addr,
Chuck Leverdd229ce2017-12-14 20:56:58 -0500301 RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500302 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400303 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500304 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
Chuck Lever7b020f12019-10-23 10:01:58 -0400305 if (rc < 0)
Chuck Lever109b88a2016-11-29 10:52:40 -0500306 goto out;
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400307
Chuck Lever93aa8e02020-02-21 17:00:54 -0500308 rc = ep->re_async_rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400309 if (rc)
310 goto out;
311
Chuck Lever93aa8e02020-02-21 17:00:54 -0500312 ep->re_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400313 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500314 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400315 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500316 rc = wait_for_completion_interruptible_timeout(&ep->re_done, wtimeout);
Chuck Lever7b020f12019-10-23 10:01:58 -0400317 if (rc < 0)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400318 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500319 rc = ep->re_async_rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400320 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400321 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400322
323 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400324
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400325out:
326 rdma_destroy_id(id);
327 return ERR_PTR(rc);
328}
329
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400330static void rpcrdma_ep_destroy(struct kref *kref)
Chuck Levere28ce902020-02-21 17:01:05 -0500331{
332 struct rpcrdma_ep *ep = container_of(kref, struct rpcrdma_ep, re_kref);
333
334 if (ep->re_id->qp) {
335 rdma_destroy_qp(ep->re_id);
336 ep->re_id->qp = NULL;
337 }
338
339 if (ep->re_attr.recv_cq)
340 ib_free_cq(ep->re_attr.recv_cq);
341 ep->re_attr.recv_cq = NULL;
342 if (ep->re_attr.send_cq)
343 ib_free_cq(ep->re_attr.send_cq);
344 ep->re_attr.send_cq = NULL;
345
346 if (ep->re_pd)
347 ib_dealloc_pd(ep->re_pd);
348 ep->re_pd = NULL;
349
350 kfree(ep);
351 module_put(THIS_MODULE);
352}
353
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400354static noinline void rpcrdma_ep_get(struct rpcrdma_ep *ep)
355{
356 kref_get(&ep->re_kref);
357}
358
Chuck Levere28ce902020-02-21 17:01:05 -0500359/* Returns:
360 * %0 if @ep still has a positive kref count, or
361 * %1 if @ep was destroyed successfully.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400362 */
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400363static noinline int rpcrdma_ep_put(struct rpcrdma_ep *ep)
Chuck Levere28ce902020-02-21 17:01:05 -0500364{
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400365 return kref_put(&ep->re_kref, rpcrdma_ep_destroy);
Chuck Levere28ce902020-02-21 17:01:05 -0500366}
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400367
Chuck Lever81fe0c52020-02-21 17:00:38 -0500368static int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400369{
Chuck Levere28ce902020-02-21 17:01:05 -0500370 struct rpcrdma_connect_private *pmsg;
371 struct ib_device *device;
Chuck Lever81fe0c52020-02-21 17:00:38 -0500372 struct rdma_cm_id *id;
Chuck Levere28ce902020-02-21 17:01:05 -0500373 struct rpcrdma_ep *ep;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500374 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400375
Chuck Levere28ce902020-02-21 17:01:05 -0500376 ep = kzalloc(sizeof(*ep), GFP_NOFS);
377 if (!ep)
Chuck Leverdda9a952020-06-27 12:35:15 -0400378 return -ENOTCONN;
Chuck Levere28ce902020-02-21 17:01:05 -0500379 ep->re_xprt = &r_xprt->rx_xprt;
380 kref_init(&ep->re_kref);
381
Chuck Lever93aa8e02020-02-21 17:00:54 -0500382 id = rpcrdma_create_id(r_xprt, ep);
Chuck Levere28ce902020-02-21 17:01:05 -0500383 if (IS_ERR(id)) {
Chuck Lever85bfd712020-06-27 12:35:04 -0400384 kfree(ep);
385 return PTR_ERR(id);
Chuck Levere28ce902020-02-21 17:01:05 -0500386 }
387 __module_get(THIS_MODULE);
388 device = id->device;
389 ep->re_id = id;
Chuck Lever15788d12021-04-19 14:02:09 -0400390 reinit_completion(&ep->re_done);
Chuck Lever81fe0c52020-02-21 17:00:38 -0500391
Chuck Lever93aa8e02020-02-21 17:00:54 -0500392 ep->re_max_requests = r_xprt->rx_xprt.max_reqs;
393 ep->re_inline_send = xprt_rdma_max_inline_write;
394 ep->re_inline_recv = xprt_rdma_max_inline_read;
Chuck Levere28ce902020-02-21 17:01:05 -0500395 rc = frwr_query_device(ep, device);
Chuck Lever914fcad2018-05-04 15:34:48 -0400396 if (rc)
Chuck Lever81fe0c52020-02-21 17:00:38 -0500397 goto out_destroy;
398
Chuck Lever93aa8e02020-02-21 17:00:54 -0500399 r_xprt->rx_buf.rb_max_requests = cpu_to_be32(ep->re_max_requests);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400400
Chuck Lever93aa8e02020-02-21 17:00:54 -0500401 ep->re_attr.srq = NULL;
402 ep->re_attr.cap.max_inline_data = 0;
403 ep->re_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
404 ep->re_attr.qp_type = IB_QPT_RC;
405 ep->re_attr.port_num = ~0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400406
Chuck Lever93aa8e02020-02-21 17:00:54 -0500407 ep->re_send_batch = ep->re_max_requests >> 3;
408 ep->re_send_count = ep->re_send_batch;
409 init_waitqueue_head(&ep->re_connect_wait);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400410
Chuck Levere28ce902020-02-21 17:01:05 -0500411 ep->re_attr.send_cq = ib_alloc_cq_any(device, r_xprt,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500412 ep->re_attr.cap.max_send_wr,
413 IB_POLL_WORKQUEUE);
414 if (IS_ERR(ep->re_attr.send_cq)) {
415 rc = PTR_ERR(ep->re_attr.send_cq);
Dan Alonia9c10b52022-01-25 22:06:46 +0200416 ep->re_attr.send_cq = NULL;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500417 goto out_destroy;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400418 }
419
Chuck Levere28ce902020-02-21 17:01:05 -0500420 ep->re_attr.recv_cq = ib_alloc_cq_any(device, r_xprt,
Chuck Lever93aa8e02020-02-21 17:00:54 -0500421 ep->re_attr.cap.max_recv_wr,
422 IB_POLL_WORKQUEUE);
423 if (IS_ERR(ep->re_attr.recv_cq)) {
424 rc = PTR_ERR(ep->re_attr.recv_cq);
Dan Alonia9c10b52022-01-25 22:06:46 +0200425 ep->re_attr.recv_cq = NULL;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500426 goto out_destroy;
Chuck Leverfc664482014-05-28 10:33:25 -0400427 }
Chuck Lever93aa8e02020-02-21 17:00:54 -0500428 ep->re_receive_count = 0;
Chuck Leverfc664482014-05-28 10:33:25 -0400429
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400430 /* Initialize cma parameters */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500431 memset(&ep->re_remote_cma, 0, sizeof(ep->re_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400432
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400433 /* Prepare RDMA-CM private message */
Chuck Levere28ce902020-02-21 17:01:05 -0500434 pmsg = &ep->re_cm_private;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400435 pmsg->cp_magic = rpcrdma_cmp_magic;
436 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Lever5f624122018-12-19 10:59:01 -0500437 pmsg->cp_flags |= RPCRDMA_CMP_F_SND_W_INV_OK;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500438 pmsg->cp_send_size = rpcrdma_encode_buffer_size(ep->re_inline_send);
439 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(ep->re_inline_recv);
440 ep->re_remote_cma.private_data = pmsg;
441 ep->re_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400442
443 /* Client offers RDMA Read but does not initiate */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500444 ep->re_remote_cma.initiator_depth = 0;
445 ep->re_remote_cma.responder_resources =
Chuck Levere28ce902020-02-21 17:01:05 -0500446 min_t(int, U8_MAX, device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400447
Chuck Leverb2dde942016-05-02 14:43:03 -0400448 /* Limit transport retries so client can detect server
449 * GID changes quickly. RPC layer handles re-establishing
450 * transport connection and retransmission.
451 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500452 ep->re_remote_cma.retry_count = 6;
Chuck Leverb2dde942016-05-02 14:43:03 -0400453
454 /* RPC-over-RDMA handles its own flow control. In addition,
455 * make all RNR NAKs visible so we know that RPC-over-RDMA
456 * flow control is working correctly (no NAKs should be seen).
457 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500458 ep->re_remote_cma.flow_control = 0;
459 ep->re_remote_cma.rnr_retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400460
Chuck Levere28ce902020-02-21 17:01:05 -0500461 ep->re_pd = ib_alloc_pd(device, 0);
Chuck Lever93aa8e02020-02-21 17:00:54 -0500462 if (IS_ERR(ep->re_pd)) {
463 rc = PTR_ERR(ep->re_pd);
Dan Alonia9c10b52022-01-25 22:06:46 +0200464 ep->re_pd = NULL;
Chuck Lever9ba373e2020-02-21 17:00:33 -0500465 goto out_destroy;
466 }
467
Chuck Lever93aa8e02020-02-21 17:00:54 -0500468 rc = rdma_create_qp(id, ep->re_pd, &ep->re_attr);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500469 if (rc)
470 goto out_destroy;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500471
Chuck Levere28ce902020-02-21 17:01:05 -0500472 r_xprt->rx_ep = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400473 return 0;
474
Chuck Lever85cd8e22020-02-21 17:00:12 -0500475out_destroy:
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400476 rpcrdma_ep_put(ep);
Chuck Lever81fe0c52020-02-21 17:00:38 -0500477 rdma_destroy_id(id);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400478 return rc;
479}
480
Chuck Levere28ce902020-02-21 17:01:05 -0500481/**
482 * rpcrdma_xprt_connect - Connect an unconnected transport
483 * @r_xprt: controlling transport instance
484 *
485 * Returns 0 on success or a negative errno.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400486 */
Chuck Lever9144a802020-02-21 17:00:28 -0500487int rpcrdma_xprt_connect(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400488{
Chuck Lever31e62d22018-10-01 14:26:08 -0400489 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
Chuck Levere28ce902020-02-21 17:01:05 -0500490 struct rpcrdma_ep *ep;
Chuck Lever18908962017-04-11 13:23:18 -0400491 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400492
Chuck Lever81fe0c52020-02-21 17:00:38 -0500493 rc = rpcrdma_ep_create(r_xprt);
494 if (rc)
Chuck Levere28ce902020-02-21 17:01:05 -0500495 return rc;
496 ep = r_xprt->rx_ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400497
Chuck Lever31e62d22018-10-01 14:26:08 -0400498 xprt_clear_connected(xprt);
Chuck Levereea63ca2019-10-09 13:07:32 -0400499 rpcrdma_reset_cwnd(r_xprt);
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400500
501 /* Bump the ep's reference count while there are
502 * outstanding Receives.
503 */
504 rpcrdma_ep_get(ep);
Chuck Lever35d8b102021-04-19 14:02:41 -0400505 rpcrdma_post_recvs(r_xprt, 1, true);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400506
Chuck Lever93aa8e02020-02-21 17:00:54 -0500507 rc = rdma_connect(ep->re_id, &ep->re_remote_cma);
Chuck Leverddbb3472018-12-19 10:59:39 -0500508 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400509 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400510
Chuck Leverf9e1afe2019-08-26 13:12:51 -0400511 if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
512 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500513 wait_event_interruptible(ep->re_connect_wait,
514 ep->re_connect_status != 0);
515 if (ep->re_connect_status <= 0) {
Chuck Lever93aa8e02020-02-21 17:00:54 -0500516 rc = ep->re_connect_status;
Chuck Lever0a904872017-02-08 17:00:35 -0500517 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400518 }
519
Chuck Leverdda9a952020-06-27 12:35:15 -0400520 rc = rpcrdma_sendctxs_create(r_xprt);
521 if (rc) {
522 rc = -ENOTCONN;
Chuck Leverb78de1d2020-01-03 11:56:53 -0500523 goto out;
Chuck Leverdda9a952020-06-27 12:35:15 -0400524 }
525
526 rc = rpcrdma_reqs_setup(r_xprt);
527 if (rc) {
528 rc = -ENOTCONN;
529 goto out;
530 }
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400531 rpcrdma_mrs_create(r_xprt);
Chuck Lever21037b82021-10-05 10:17:59 -0400532 frwr_wp_create(r_xprt);
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400533
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400534out:
Chuck Lever7b020f12019-10-23 10:01:58 -0400535 trace_xprtrdma_connect(r_xprt, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400536 return rc;
537}
538
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500539/**
Chuck Lever9144a802020-02-21 17:00:28 -0500540 * rpcrdma_xprt_disconnect - Disconnect underlying transport
541 * @r_xprt: controlling transport instance
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400542 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400543 * Caller serializes. Either the transport send lock is held,
544 * or we're being called to destroy the transport.
Chuck Levere28ce902020-02-21 17:01:05 -0500545 *
546 * On return, @r_xprt is completely divested of all hardware
547 * resources and prepared for the next ->connect operation.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400548 */
Chuck Lever9144a802020-02-21 17:00:28 -0500549void rpcrdma_xprt_disconnect(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400550{
Chuck Levere28ce902020-02-21 17:01:05 -0500551 struct rpcrdma_ep *ep = r_xprt->rx_ep;
552 struct rdma_cm_id *id;
553 int rc;
Chuck Lever897b7be2020-02-21 17:00:44 -0500554
Chuck Levere28ce902020-02-21 17:01:05 -0500555 if (!ep)
Chuck Lever897b7be2020-02-21 17:00:44 -0500556 return;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500557
Chuck Levere28ce902020-02-21 17:01:05 -0500558 id = ep->re_id;
Chuck Lever85cd8e22020-02-21 17:00:12 -0500559 rc = rdma_disconnect(id);
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500560 trace_xprtrdma_disconnect(r_xprt, rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400561
Chuck Levere28ce902020-02-21 17:01:05 -0500562 rpcrdma_xprt_drain(r_xprt);
Chuck Lever897b7be2020-02-21 17:00:44 -0500563 rpcrdma_reps_unmap(r_xprt);
Chuck Levera31b2f92019-10-09 13:07:27 -0400564 rpcrdma_reqs_reset(r_xprt);
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400565 rpcrdma_mrs_destroy(r_xprt);
Chuck Levercb586de2020-01-03 11:56:32 -0500566 rpcrdma_sendctxs_destroy(r_xprt);
Chuck Lever85cd8e22020-02-21 17:00:12 -0500567
Chuck Lever2acc5ca2020-06-15 09:20:52 -0400568 if (rpcrdma_ep_put(ep))
Chuck Lever897b7be2020-02-21 17:00:44 -0500569 rdma_destroy_id(id);
Chuck Levere28ce902020-02-21 17:01:05 -0500570
571 r_xprt->rx_ep = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400572}
573
Chuck Leverae729502017-10-20 10:48:12 -0400574/* Fixed-size circular FIFO queue. This implementation is wait-free and
575 * lock-free.
576 *
577 * Consumer is the code path that posts Sends. This path dequeues a
578 * sendctx for use by a Send operation. Multiple consumer threads
579 * are serialized by the RPC transport lock, which allows only one
580 * ->send_request call at a time.
581 *
582 * Producer is the code path that handles Send completions. This path
583 * enqueues a sendctx that has been completed. Multiple producer
584 * threads are serialized by the ib_poll_cq() function.
585 */
586
587/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
Chuck Leverb8fe6772019-04-24 09:40:36 -0400588 * queue activity, and rpcrdma_xprt_drain has flushed all remaining
589 * Send requests.
Chuck Leverae729502017-10-20 10:48:12 -0400590 */
Chuck Levercb586de2020-01-03 11:56:32 -0500591static void rpcrdma_sendctxs_destroy(struct rpcrdma_xprt *r_xprt)
Chuck Leverae729502017-10-20 10:48:12 -0400592{
Chuck Levercb586de2020-01-03 11:56:32 -0500593 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400594 unsigned long i;
595
Chuck Levercb586de2020-01-03 11:56:32 -0500596 if (!buf->rb_sc_ctxs)
597 return;
Chuck Leverae729502017-10-20 10:48:12 -0400598 for (i = 0; i <= buf->rb_sc_last; i++)
599 kfree(buf->rb_sc_ctxs[i]);
600 kfree(buf->rb_sc_ctxs);
Chuck Levercb586de2020-01-03 11:56:32 -0500601 buf->rb_sc_ctxs = NULL;
Chuck Leverae729502017-10-20 10:48:12 -0400602}
603
Chuck Lever2e870362020-01-03 11:56:27 -0500604static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ep *ep)
Chuck Leverae729502017-10-20 10:48:12 -0400605{
606 struct rpcrdma_sendctx *sc;
607
Chuck Lever93aa8e02020-02-21 17:00:54 -0500608 sc = kzalloc(struct_size(sc, sc_sges, ep->re_attr.cap.max_send_sge),
Chuck Leverae729502017-10-20 10:48:12 -0400609 GFP_KERNEL);
610 if (!sc)
611 return NULL;
612
Chuck Leverae729502017-10-20 10:48:12 -0400613 sc->sc_cqe.done = rpcrdma_wc_send;
Chuck Leverb2e74672020-11-09 14:39:26 -0500614 sc->sc_cid.ci_queue_id = ep->re_attr.send_cq->res.id;
615 sc->sc_cid.ci_completion_id =
616 atomic_inc_return(&ep->re_completion_ids);
Chuck Leverae729502017-10-20 10:48:12 -0400617 return sc;
618}
619
620static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
621{
622 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
623 struct rpcrdma_sendctx *sc;
624 unsigned long i;
625
626 /* Maximum number of concurrent outstanding Send WRs. Capping
627 * the circular queue size stops Send Queue overflow by causing
628 * the ->send_request call to fail temporarily before too many
629 * Sends are posted.
630 */
Chuck Levere28ce902020-02-21 17:01:05 -0500631 i = r_xprt->rx_ep->re_max_requests + RPCRDMA_MAX_BC_REQUESTS;
Chuck Leverae729502017-10-20 10:48:12 -0400632 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
633 if (!buf->rb_sc_ctxs)
634 return -ENOMEM;
635
636 buf->rb_sc_last = i - 1;
637 for (i = 0; i <= buf->rb_sc_last; i++) {
Chuck Levere28ce902020-02-21 17:01:05 -0500638 sc = rpcrdma_sendctx_create(r_xprt->rx_ep);
Chuck Leverae729502017-10-20 10:48:12 -0400639 if (!sc)
Dan Carpenter6e17f582019-01-05 16:06:48 +0300640 return -ENOMEM;
Chuck Leverae729502017-10-20 10:48:12 -0400641
Chuck Leverae729502017-10-20 10:48:12 -0400642 buf->rb_sc_ctxs[i] = sc;
643 }
644
Chuck Levercb586de2020-01-03 11:56:32 -0500645 buf->rb_sc_head = 0;
646 buf->rb_sc_tail = 0;
Chuck Leverae729502017-10-20 10:48:12 -0400647 return 0;
Chuck Leverae729502017-10-20 10:48:12 -0400648}
649
650/* The sendctx queue is not guaranteed to have a size that is a
651 * power of two, thus the helpers in circ_buf.h cannot be used.
652 * The other option is to use modulus (%), which can be expensive.
653 */
654static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
655 unsigned long item)
656{
657 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
658}
659
660/**
661 * rpcrdma_sendctx_get_locked - Acquire a send context
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400662 * @r_xprt: controlling transport instance
Chuck Leverae729502017-10-20 10:48:12 -0400663 *
664 * Returns pointer to a free send completion context; or NULL if
665 * the queue is empty.
666 *
667 * Usage: Called to acquire an SGE array before preparing a Send WR.
668 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400669 * The caller serializes calls to this function (per transport), and
670 * provides an effective memory barrier that flushes the new value
Chuck Leverae729502017-10-20 10:48:12 -0400671 * of rb_sc_head.
672 */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400673struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_xprt *r_xprt)
Chuck Leverae729502017-10-20 10:48:12 -0400674{
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400675 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400676 struct rpcrdma_sendctx *sc;
677 unsigned long next_head;
678
679 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
680
681 if (next_head == READ_ONCE(buf->rb_sc_tail))
682 goto out_emptyq;
683
684 /* ORDER: item must be accessed _before_ head is updated */
685 sc = buf->rb_sc_ctxs[next_head];
686
687 /* Releasing the lock in the caller acts as a memory
688 * barrier that flushes rb_sc_head.
689 */
690 buf->rb_sc_head = next_head;
691
692 return sc;
693
694out_emptyq:
695 /* The queue is "empty" if there have not been enough Send
696 * completions recently. This is a sign the Send Queue is
697 * backing up. Cause the caller to pause and try again.
698 */
Chuck Lever05eb06d2019-06-19 10:32:48 -0400699 xprt_wait_for_buffer_space(&r_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400700 r_xprt->rx_stats.empty_sendctx_q++;
701 return NULL;
702}
703
704/**
705 * rpcrdma_sendctx_put_locked - Release a send context
Chuck Leverf9958792019-10-17 14:31:18 -0400706 * @r_xprt: controlling transport instance
Chuck Leverae729502017-10-20 10:48:12 -0400707 * @sc: send context to release
708 *
709 * Usage: Called from Send completion to return a sendctxt
710 * to the queue.
711 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400712 * The caller serializes calls to this function (per transport).
Chuck Leverae729502017-10-20 10:48:12 -0400713 */
Chuck Leverf9958792019-10-17 14:31:18 -0400714static void rpcrdma_sendctx_put_locked(struct rpcrdma_xprt *r_xprt,
715 struct rpcrdma_sendctx *sc)
Chuck Leverae729502017-10-20 10:48:12 -0400716{
Chuck Leverf9958792019-10-17 14:31:18 -0400717 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400718 unsigned long next_tail;
719
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400720 /* Unmap SGEs of previously completed but unsignaled
Chuck Leverae729502017-10-20 10:48:12 -0400721 * Sends by walking up the queue until @sc is found.
722 */
723 next_tail = buf->rb_sc_tail;
724 do {
725 next_tail = rpcrdma_sendctx_next(buf, next_tail);
726
727 /* ORDER: item must be accessed _before_ tail is updated */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400728 rpcrdma_sendctx_unmap(buf->rb_sc_ctxs[next_tail]);
Chuck Leverae729502017-10-20 10:48:12 -0400729
730 } while (buf->rb_sc_ctxs[next_tail] != sc);
731
732 /* Paired with READ_ONCE */
733 smp_store_release(&buf->rb_sc_tail, next_tail);
Chuck Lever2fad6592018-05-04 15:35:57 -0400734
Chuck Leverf9958792019-10-17 14:31:18 -0400735 xprt_write_space(&r_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400736}
737
Chuck Lever505bbe62016-06-29 13:52:54 -0400738static void
Chuck Lever96cedde2017-12-14 20:57:55 -0500739rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -0400740{
741 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -0500742 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Levere2ac2362016-06-29 13:54:00 -0400743 unsigned int count;
Chuck Levere2ac2362016-06-29 13:54:00 -0400744
Chuck Lever93aa8e02020-02-21 17:00:54 -0500745 for (count = 0; count < ep->re_max_rdma_segs; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500746 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -0400747 int rc;
748
Chuck Lever805a1f62019-08-19 18:46:24 -0400749 mr = kzalloc(sizeof(*mr), GFP_NOFS);
Chuck Lever96cedde2017-12-14 20:57:55 -0500750 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -0400751 break;
752
Chuck Lever253a5162020-02-21 17:00:17 -0500753 rc = frwr_mr_init(r_xprt, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400754 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500755 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400756 break;
757 }
758
Chuck Lever4d6b8892019-08-19 18:47:57 -0400759 spin_lock(&buf->rb_lock);
Chuck Leverc3700782019-10-09 13:07:43 -0400760 rpcrdma_mr_push(mr, &buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -0400761 list_add(&mr->mr_all, &buf->rb_all_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -0400762 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -0400763 }
764
Chuck Levere2ac2362016-06-29 13:54:00 -0400765 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever1c443eff2017-12-20 16:31:21 -0500766 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Levere2ac2362016-06-29 13:54:00 -0400767}
768
769static void
770rpcrdma_mr_refresh_worker(struct work_struct *work)
771{
772 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
Chuck Lever3b39f522019-08-19 18:45:37 -0400773 rb_refresh_worker);
Chuck Levere2ac2362016-06-29 13:54:00 -0400774 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
775 rx_buf);
776
Chuck Lever96cedde2017-12-14 20:57:55 -0500777 rpcrdma_mrs_create(r_xprt);
Chuck Lever05eb06d2019-06-19 10:32:48 -0400778 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -0400779}
780
Chuck Lever1769e6a2019-04-24 09:39:05 -0400781/**
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400782 * rpcrdma_mrs_refresh - Wake the MR refresh worker
783 * @r_xprt: controlling transport instance
784 *
785 */
786void rpcrdma_mrs_refresh(struct rpcrdma_xprt *r_xprt)
787{
788 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -0500789 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400790
Chuck Lever897b7be2020-02-21 17:00:44 -0500791 /* If there is no underlying connection, it's no use
792 * to wake the refresh worker.
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400793 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500794 if (ep->re_connect_status == 1) {
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400795 /* The work is scheduled on a WQ_MEM_RECLAIM
796 * workqueue in order to prevent MR allocation
797 * from recursing into NFS during direct reclaim.
798 */
799 queue_work(xprtiod_workqueue, &buf->rb_refresh_worker);
800 }
801}
802
803/**
Chuck Lever1769e6a2019-04-24 09:39:05 -0400804 * rpcrdma_req_create - Allocate an rpcrdma_req object
805 * @r_xprt: controlling r_xprt
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400806 * @size: initial size, in bytes, of send and receive buffers
Chuck Lever1769e6a2019-04-24 09:39:05 -0400807 * @flags: GFP flags passed to memory allocators
808 *
809 * Returns an allocated and fully initialized rpcrdma_req or NULL.
810 */
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400811struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt, size_t size,
812 gfp_t flags)
Chuck Lever13924022015-01-21 11:03:52 -0500813{
Chuck Leverf531a5d2015-10-24 17:27:43 -0400814 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500815 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500816
Chuck Lever1769e6a2019-04-24 09:39:05 -0400817 req = kzalloc(sizeof(*req), flags);
Chuck Lever13924022015-01-21 11:03:52 -0500818 if (req == NULL)
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400819 goto out1;
Chuck Lever13924022015-01-21 11:03:52 -0500820
Chuck Leverd2832af2019-04-24 09:39:32 -0400821 req->rl_sendbuf = rpcrdma_regbuf_alloc(size, DMA_TO_DEVICE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400822 if (!req->rl_sendbuf)
Chuck Leverb78de1d2020-01-03 11:56:53 -0500823 goto out2;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400824
Chuck Leverd2832af2019-04-24 09:39:32 -0400825 req->rl_recvbuf = rpcrdma_regbuf_alloc(size, DMA_NONE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400826 if (!req->rl_recvbuf)
Chuck Leverb78de1d2020-01-03 11:56:53 -0500827 goto out3;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400828
Chuck Lever6dc6ec92019-08-19 18:47:10 -0400829 INIT_LIST_HEAD(&req->rl_free_mrs);
Chuck Lever2dd4a012018-02-28 15:31:05 -0500830 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever92f44332018-12-19 10:59:33 -0500831 spin_lock(&buffer->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400832 list_add(&req->rl_all, &buffer->rb_allreqs);
Chuck Lever92f44332018-12-19 10:59:33 -0500833 spin_unlock(&buffer->rb_lock);
Chuck Lever13924022015-01-21 11:03:52 -0500834 return req;
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400835
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400836out3:
Chuck Leverb78de1d2020-01-03 11:56:53 -0500837 kfree(req->rl_sendbuf);
Chuck Leverbb93a1a2019-04-24 09:39:21 -0400838out2:
839 kfree(req);
840out1:
841 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -0500842}
843
Chuck Levera31b2f92019-10-09 13:07:27 -0400844/**
Chuck Leverb78de1d2020-01-03 11:56:53 -0500845 * rpcrdma_req_setup - Per-connection instance setup of an rpcrdma_req object
Chuck Levera31b2f92019-10-09 13:07:27 -0400846 * @r_xprt: controlling transport instance
Chuck Leverb78de1d2020-01-03 11:56:53 -0500847 * @req: rpcrdma_req object to set up
Chuck Levera31b2f92019-10-09 13:07:27 -0400848 *
Chuck Leverb78de1d2020-01-03 11:56:53 -0500849 * Returns zero on success, and a negative errno on failure.
850 */
851int rpcrdma_req_setup(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
852{
853 struct rpcrdma_regbuf *rb;
854 size_t maxhdrsize;
855
856 /* Compute maximum header buffer size in bytes */
857 maxhdrsize = rpcrdma_fixed_maxsz + 3 +
Chuck Levere28ce902020-02-21 17:01:05 -0500858 r_xprt->rx_ep->re_max_rdma_segs * rpcrdma_readchunk_maxsz;
Chuck Leverb78de1d2020-01-03 11:56:53 -0500859 maxhdrsize *= sizeof(__be32);
860 rb = rpcrdma_regbuf_alloc(__roundup_pow_of_two(maxhdrsize),
861 DMA_TO_DEVICE, GFP_KERNEL);
862 if (!rb)
863 goto out;
864
865 if (!__rpcrdma_regbuf_dma_map(r_xprt, rb))
866 goto out_free;
867
868 req->rl_rdmabuf = rb;
869 xdr_buf_init(&req->rl_hdrbuf, rdmab_data(rb), rdmab_length(rb));
870 return 0;
871
872out_free:
873 rpcrdma_regbuf_free(rb);
874out:
875 return -ENOMEM;
876}
877
878/* ASSUMPTION: the rb_allreqs list is stable for the duration,
879 * and thus can be walked without holding rb_lock. Eg. the
880 * caller is holding the transport send lock to exclude
881 * device removal or disconnection.
882 */
883static int rpcrdma_reqs_setup(struct rpcrdma_xprt *r_xprt)
884{
885 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
886 struct rpcrdma_req *req;
887 int rc;
888
889 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
890 rc = rpcrdma_req_setup(r_xprt, req);
891 if (rc)
892 return rc;
893 }
894 return 0;
895}
896
897static void rpcrdma_req_reset(struct rpcrdma_req *req)
898{
899 /* Credits are valid for only one connection */
900 req->rl_slot.rq_cong = 0;
901
902 rpcrdma_regbuf_free(req->rl_rdmabuf);
903 req->rl_rdmabuf = NULL;
904
905 rpcrdma_regbuf_dma_unmap(req->rl_sendbuf);
906 rpcrdma_regbuf_dma_unmap(req->rl_recvbuf);
Chuck Lever5de55ce2020-08-17 11:19:26 -0400907
908 frwr_reset(req);
Chuck Leverb78de1d2020-01-03 11:56:53 -0500909}
910
911/* ASSUMPTION: the rb_allreqs list is stable for the duration,
Chuck Levera31b2f92019-10-09 13:07:27 -0400912 * and thus can be walked without holding rb_lock. Eg. the
913 * caller is holding the transport send lock to exclude
914 * device removal or disconnection.
915 */
916static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt)
917{
918 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
919 struct rpcrdma_req *req;
920
Chuck Leverb78de1d2020-01-03 11:56:53 -0500921 list_for_each_entry(req, &buf->rb_allreqs, rl_all)
922 rpcrdma_req_reset(req);
Chuck Levera31b2f92019-10-09 13:07:27 -0400923}
924
Chuck Levere515dd92020-01-03 11:57:09 -0500925static noinline
926struct rpcrdma_rep *rpcrdma_rep_create(struct rpcrdma_xprt *r_xprt,
927 bool temp)
Chuck Lever13924022015-01-21 11:03:52 -0500928{
Chuck Lever9e3ca332021-04-19 14:02:35 -0400929 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500930 struct rpcrdma_rep *rep;
Chuck Lever13924022015-01-21 11:03:52 -0500931
Chuck Lever6b1184c2015-01-21 11:04:25 -0500932 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500933 if (rep == NULL)
934 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500935
Chuck Levere28ce902020-02-21 17:01:05 -0500936 rep->rr_rdmabuf = rpcrdma_regbuf_alloc(r_xprt->rx_ep->re_inline_recv,
Chuck Lever99ef4db2016-09-15 10:56:10 -0400937 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever8cec3db2019-04-24 09:39:16 -0400938 if (!rep->rr_rdmabuf)
Chuck Lever13924022015-01-21 11:03:52 -0500939 goto out_free;
Chuck Lever379d1bc2019-06-19 10:33:20 -0400940
Chuck Levere515dd92020-01-03 11:57:09 -0500941 if (!rpcrdma_regbuf_dma_map(r_xprt, rep->rr_rdmabuf))
942 goto out_free_regbuf;
943
Chuck Leveraf5865d2020-11-09 14:39:21 -0500944 rep->rr_cid.ci_completion_id =
945 atomic_inc_return(&r_xprt->rx_ep->re_completion_ids);
946
Chuck Lever8cec3db2019-04-24 09:39:16 -0400947 xdr_buf_init(&rep->rr_hdrbuf, rdmab_data(rep->rr_rdmabuf),
Chuck Lever96f87782017-08-03 14:30:03 -0400948 rdmab_length(rep->rr_rdmabuf));
Chuck Lever1519e962016-09-15 10:57:49 -0400949 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -0400950 rep->rr_rxprt = r_xprt;
Chuck Lever6ea8e712016-09-15 10:56:51 -0400951 rep->rr_recv_wr.next = NULL;
952 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
953 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
954 rep->rr_recv_wr.num_sge = 1;
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400955 rep->rr_temp = temp;
Chuck Lever9e3ca332021-04-19 14:02:35 -0400956
957 spin_lock(&buf->rb_lock);
958 list_add(&rep->rr_all, &buf->rb_all_reps);
959 spin_unlock(&buf->rb_lock);
Chuck Lever379d1bc2019-06-19 10:33:20 -0400960 return rep;
Chuck Lever13924022015-01-21 11:03:52 -0500961
Chuck Levere515dd92020-01-03 11:57:09 -0500962out_free_regbuf:
963 rpcrdma_regbuf_free(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500964out_free:
965 kfree(rep);
966out:
Chuck Lever379d1bc2019-06-19 10:33:20 -0400967 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -0500968}
969
Chuck Levereaf86e82021-04-24 15:02:28 -0400970static void rpcrdma_rep_free(struct rpcrdma_rep *rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -0400971{
972 rpcrdma_regbuf_free(rep->rr_rdmabuf);
973 kfree(rep);
974}
975
Chuck Levereaf86e82021-04-24 15:02:28 -0400976static void rpcrdma_rep_destroy(struct rpcrdma_rep *rep)
977{
978 struct rpcrdma_buffer *buf = &rep->rr_rxprt->rx_buf;
979
980 spin_lock(&buf->rb_lock);
981 list_del(&rep->rr_all);
982 spin_unlock(&buf->rb_lock);
983
984 rpcrdma_rep_free(rep);
985}
986
Chuck Leverb0b227f2019-08-19 18:48:43 -0400987static struct rpcrdma_rep *rpcrdma_rep_get_locked(struct rpcrdma_buffer *buf)
988{
989 struct llist_node *node;
990
991 /* Calls to llist_del_first are required to be serialized */
992 node = llist_del_first(&buf->rb_free_reps);
993 if (!node)
994 return NULL;
995 return llist_entry(node, struct rpcrdma_rep, rr_node);
996}
997
Chuck Leverc35ca602021-04-19 14:02:47 -0400998/**
999 * rpcrdma_rep_put - Release rpcrdma_rep back to free list
1000 * @buf: buffer pool
1001 * @rep: rep to release
1002 *
1003 */
1004void rpcrdma_rep_put(struct rpcrdma_buffer *buf, struct rpcrdma_rep *rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -04001005{
Chuck Lever671c4502020-01-03 11:52:22 -05001006 llist_add(&rep->rr_node, &buf->rb_free_reps);
1007}
1008
Chuck Lever8b5292be2021-04-19 14:02:28 -04001009/* Caller must ensure the QP is quiescent (RQ is drained) before
1010 * invoking this function, to guarantee rb_all_reps is not
1011 * changing.
1012 */
Chuck Lever671c4502020-01-03 11:52:22 -05001013static void rpcrdma_reps_unmap(struct rpcrdma_xprt *r_xprt)
1014{
1015 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1016 struct rpcrdma_rep *rep;
1017
Chuck Leverb7ff0182020-01-03 11:57:04 -05001018 list_for_each_entry(rep, &buf->rb_all_reps, rr_all) {
Chuck Lever671c4502020-01-03 11:52:22 -05001019 rpcrdma_regbuf_dma_unmap(rep->rr_rdmabuf);
Chuck Lever8b5292be2021-04-19 14:02:28 -04001020 rep->rr_temp = true; /* Mark this rep for destruction */
Chuck Leverb7ff0182020-01-03 11:57:04 -05001021 }
Chuck Leverb0b227f2019-08-19 18:48:43 -04001022}
1023
1024static void rpcrdma_reps_destroy(struct rpcrdma_buffer *buf)
1025{
1026 struct rpcrdma_rep *rep;
1027
Chuck Levereaf86e82021-04-24 15:02:28 -04001028 spin_lock(&buf->rb_lock);
1029 while ((rep = list_first_entry_or_null(&buf->rb_all_reps,
1030 struct rpcrdma_rep,
1031 rr_all)) != NULL) {
1032 list_del(&rep->rr_all);
1033 spin_unlock(&buf->rb_lock);
1034
1035 rpcrdma_rep_free(rep);
1036
1037 spin_lock(&buf->rb_lock);
1038 }
1039 spin_unlock(&buf->rb_lock);
Chuck Leverb0b227f2019-08-19 18:48:43 -04001040}
1041
Chuck Lever86c4ccd2019-04-24 09:40:25 -04001042/**
1043 * rpcrdma_buffer_create - Create initial set of req/rep objects
1044 * @r_xprt: transport instance to (re)initialize
1045 *
1046 * Returns zero on success, otherwise a negative errno.
1047 */
1048int rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001049{
Chuck Leverac920d02015-01-21 11:03:44 -05001050 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001051 int i, rc;
1052
Chuck Leverf531a5d2015-10-24 17:27:43 -04001053 buf->rb_bc_srv_max_requests = 0;
Chuck Lever505bbe62016-06-29 13:52:54 -04001054 spin_lock_init(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001055 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -04001056 INIT_LIST_HEAD(&buf->rb_all_mrs);
Chuck Lever3b39f522019-08-19 18:45:37 -04001057 INIT_WORK(&buf->rb_refresh_worker, rpcrdma_mr_refresh_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001058
Chuck Lever1e465fd2015-10-24 17:27:02 -04001059 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001060 INIT_LIST_HEAD(&buf->rb_allreqs);
Chuck Lever671c4502020-01-03 11:52:22 -05001061 INIT_LIST_HEAD(&buf->rb_all_reps);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001062
1063 rc = -ENOMEM;
Chuck Lever7581d902020-01-03 11:56:37 -05001064 for (i = 0; i < r_xprt->rx_xprt.max_reqs; i++) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001065 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001066
Chuck Lever614f3c92019-10-17 14:31:53 -04001067 req = rpcrdma_req_create(r_xprt, RPCRDMA_V1_DEF_INLINE_SIZE * 2,
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001068 GFP_KERNEL);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001069 if (!req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001070 goto out;
Chuck Levera80d66c2017-06-08 11:52:12 -04001071 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001072 }
1073
Chuck Leverb0b227f2019-08-19 18:48:43 -04001074 init_llist_head(&buf->rb_free_reps);
Chuck Lever13924022015-01-21 11:03:52 -05001075
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001076 return 0;
1077out:
1078 rpcrdma_buffer_destroy(buf);
1079 return rc;
1080}
1081
Chuck Lever92f44332018-12-19 10:59:33 -05001082/**
1083 * rpcrdma_req_destroy - Destroy an rpcrdma_req object
1084 * @req: unused object to be destroyed
1085 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001086 * Relies on caller holding the transport send lock to protect
1087 * removing req->rl_all from buf->rb_all_reqs safely.
Chuck Lever92f44332018-12-19 10:59:33 -05001088 */
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001089void rpcrdma_req_destroy(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001090{
Chuck Leverc3700782019-10-09 13:07:43 -04001091 struct rpcrdma_mr *mr;
1092
Chuck Lever92f44332018-12-19 10:59:33 -05001093 list_del(&req->rl_all);
1094
Chuck Leverc3700782019-10-09 13:07:43 -04001095 while ((mr = rpcrdma_mr_pop(&req->rl_free_mrs))) {
1096 struct rpcrdma_buffer *buf = &mr->mr_xprt->rx_buf;
1097
1098 spin_lock(&buf->rb_lock);
1099 list_del(&mr->mr_all);
1100 spin_unlock(&buf->rb_lock);
1101
Chuck Leverf912af72021-04-19 14:03:00 -04001102 frwr_mr_release(mr);
Chuck Leverc3700782019-10-09 13:07:43 -04001103 }
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001104
Chuck Leverd2832af2019-04-24 09:39:32 -04001105 rpcrdma_regbuf_free(req->rl_recvbuf);
1106 rpcrdma_regbuf_free(req->rl_sendbuf);
1107 rpcrdma_regbuf_free(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001108 kfree(req);
1109}
1110
Chuck Leverc3700782019-10-09 13:07:43 -04001111/**
1112 * rpcrdma_mrs_destroy - Release all of a transport's MRs
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001113 * @r_xprt: controlling transport instance
Chuck Leverc3700782019-10-09 13:07:43 -04001114 *
1115 * Relies on caller holding the transport send lock to protect
1116 * removing mr->mr_list from req->rl_free_mrs safely.
1117 */
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001118static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001119{
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001120 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001121 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001122
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001123 cancel_work_sync(&buf->rb_refresh_worker);
1124
Chuck Lever4d6b8892019-08-19 18:47:57 -04001125 spin_lock(&buf->rb_lock);
Chuck Levereed48a92019-08-19 18:42:31 -04001126 while ((mr = list_first_entry_or_null(&buf->rb_all_mrs,
1127 struct rpcrdma_mr,
1128 mr_all)) != NULL) {
Chuck Leverc3700782019-10-09 13:07:43 -04001129 list_del(&mr->mr_list);
Chuck Lever96cedde2017-12-14 20:57:55 -05001130 list_del(&mr->mr_all);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001131 spin_unlock(&buf->rb_lock);
Chuck Lever054f1552018-05-01 11:37:14 -04001132
Chuck Leverf912af72021-04-19 14:03:00 -04001133 frwr_mr_release(mr);
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001134
Chuck Lever4d6b8892019-08-19 18:47:57 -04001135 spin_lock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001136 }
Chuck Lever4d6b8892019-08-19 18:47:57 -04001137 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001138}
1139
Chuck Leveraf65ed42018-12-19 11:00:37 -05001140/**
1141 * rpcrdma_buffer_destroy - Release all hw resources
1142 * @buf: root control block for resources
1143 *
Chuck Leverb8fe6772019-04-24 09:40:36 -04001144 * ORDERING: relies on a prior rpcrdma_xprt_drain :
Chuck Leveraf65ed42018-12-19 11:00:37 -05001145 * - No more Send or Receive completions can occur
1146 * - All MRs, reps, and reqs are returned to their free lists
1147 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001148void
1149rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1150{
Chuck Leverb0b227f2019-08-19 18:48:43 -04001151 rpcrdma_reps_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001152
Chuck Lever92f44332018-12-19 10:59:33 -05001153 while (!list_empty(&buf->rb_send_bufs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001154 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001155
Chuck Lever92f44332018-12-19 10:59:33 -05001156 req = list_first_entry(&buf->rb_send_bufs,
1157 struct rpcrdma_req, rl_list);
1158 list_del(&req->rl_list);
1159 rpcrdma_req_destroy(req);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001160 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001161}
1162
Chuck Lever96cedde2017-12-14 20:57:55 -05001163/**
1164 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1165 * @r_xprt: controlling transport
1166 *
1167 * Returns an initialized rpcrdma_mr or NULL if no free
1168 * rpcrdma_mr objects are available.
1169 */
1170struct rpcrdma_mr *
1171rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001172{
Chuck Lever346aa662015-05-26 11:52:06 -04001173 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever265a38d2019-08-19 18:44:04 -04001174 struct rpcrdma_mr *mr;
Chuck Lever346aa662015-05-26 11:52:06 -04001175
Chuck Lever4d6b8892019-08-19 18:47:57 -04001176 spin_lock(&buf->rb_lock);
Chuck Lever265a38d2019-08-19 18:44:04 -04001177 mr = rpcrdma_mr_pop(&buf->rb_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001178 spin_unlock(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001179 return mr;
Chuck Leverec12e472017-12-14 20:58:04 -05001180}
1181
Chuck Lever96cedde2017-12-14 20:57:55 -05001182/**
Trond Myklebuste86be3a2021-05-25 18:43:38 -04001183 * rpcrdma_reply_put - Put reply buffers back into pool
1184 * @buffers: buffer pool
1185 * @req: object to return
1186 *
1187 */
1188void rpcrdma_reply_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
1189{
1190 if (req->rl_reply) {
1191 rpcrdma_rep_put(buffers, req->rl_reply);
1192 req->rl_reply = NULL;
1193 }
1194}
1195
1196/**
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001197 * rpcrdma_buffer_get - Get a request buffer
1198 * @buffers: Buffer pool from which to obtain a buffer
Chuck Lever78d506e2016-09-06 11:22:49 -04001199 *
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001200 * Returns a fresh rpcrdma_req, or NULL if none are available.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001201 */
1202struct rpcrdma_req *
1203rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1204{
1205 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001206
Chuck Levera5b027e2015-10-24 17:27:27 -04001207 spin_lock(&buffers->rb_lock);
Chuck Levere68699c2018-05-04 15:35:31 -04001208 req = list_first_entry_or_null(&buffers->rb_send_bufs,
1209 struct rpcrdma_req, rl_list);
1210 if (req)
1211 list_del_init(&req->rl_list);
Chuck Levera5b027e2015-10-24 17:27:27 -04001212 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001213 return req;
1214}
1215
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001216/**
1217 * rpcrdma_buffer_put - Put request/reply buffers back into pool
Chuck Lever5828ceb2019-06-19 10:33:36 -04001218 * @buffers: buffer pool
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001219 * @req: object to return
1220 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001221 */
Chuck Lever5828ceb2019-06-19 10:33:36 -04001222void rpcrdma_buffer_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001223{
Trond Myklebuste86be3a2021-05-25 18:43:38 -04001224 rpcrdma_reply_put(buffers, req);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001225
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 Leverd2832af2019-04-24 09:39:32 -04001231/* Returns a pointer to a rpcrdma_regbuf object, or NULL.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001232 *
1233 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001234 * receiving the payload of RDMA RECV operations. During Long Calls
Chuck Lever5f624122018-12-19 10:59:01 -05001235 * or Replies they may be registered externally via frwr_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001236 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001237static struct rpcrdma_regbuf *
1238rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
Chuck Lever13650c22016-09-15 10:56:26 -04001239 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001240{
1241 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001242
Chuck Lever8cec3db2019-04-24 09:39:16 -04001243 rb = kmalloc(sizeof(*rb), flags);
1244 if (!rb)
1245 return NULL;
1246 rb->rg_data = kmalloc(size, flags);
1247 if (!rb->rg_data) {
1248 kfree(rb);
1249 return NULL;
1250 }
Chuck Lever9128c3e2015-01-21 11:04:00 -05001251
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001252 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001253 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001254 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001255 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001256}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001257
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001258/**
Chuck Lever0f665ce2019-04-24 09:39:27 -04001259 * rpcrdma_regbuf_realloc - re-allocate a SEND/RECV buffer
1260 * @rb: regbuf to reallocate
1261 * @size: size of buffer to be allocated, in bytes
1262 * @flags: GFP flags
1263 *
1264 * Returns true if reallocation was successful. If false is
1265 * returned, @rb is left untouched.
1266 */
1267bool rpcrdma_regbuf_realloc(struct rpcrdma_regbuf *rb, size_t size, gfp_t flags)
1268{
1269 void *buf;
1270
1271 buf = kmalloc(size, flags);
1272 if (!buf)
1273 return false;
1274
Chuck Leverd2832af2019-04-24 09:39:32 -04001275 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever0f665ce2019-04-24 09:39:27 -04001276 kfree(rb->rg_data);
1277
1278 rb->rg_data = buf;
1279 rb->rg_iov.length = size;
1280 return true;
1281}
1282
1283/**
Chuck Leverd2832af2019-04-24 09:39:32 -04001284 * __rpcrdma_regbuf_dma_map - DMA-map a regbuf
1285 * @r_xprt: controlling transport instance
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001286 * @rb: regbuf to be mapped
Chuck Leverd2832af2019-04-24 09:39:32 -04001287 *
1288 * Returns true if the buffer is now DMA mapped to @r_xprt's device
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001289 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001290bool __rpcrdma_regbuf_dma_map(struct rpcrdma_xprt *r_xprt,
1291 struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001292{
Chuck Levere28ce902020-02-21 17:01:05 -05001293 struct ib_device *device = r_xprt->rx_ep->re_id->device;
Chuck Lever91a10c52017-04-11 13:23:02 -04001294
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001295 if (rb->rg_direction == DMA_NONE)
1296 return false;
1297
Chuck Leverd2832af2019-04-24 09:39:32 -04001298 rb->rg_iov.addr = ib_dma_map_single(device, rdmab_data(rb),
1299 rdmab_length(rb), rb->rg_direction);
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001300 if (ib_dma_mapping_error(device, rdmab_addr(rb))) {
1301 trace_xprtrdma_dma_maperr(rdmab_addr(rb));
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001302 return false;
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001303 }
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001304
Chuck Lever91a10c52017-04-11 13:23:02 -04001305 rb->rg_device = device;
Chuck Levere28ce902020-02-21 17:01:05 -05001306 rb->rg_iov.lkey = r_xprt->rx_ep->re_pd->local_dma_lkey;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001307 return true;
1308}
1309
Chuck Leverd2832af2019-04-24 09:39:32 -04001310static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001311{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001312 if (!rb)
1313 return;
1314
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001315 if (!rpcrdma_regbuf_is_mapped(rb))
1316 return;
1317
Chuck Leverd2832af2019-04-24 09:39:32 -04001318 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb), rdmab_length(rb),
1319 rb->rg_direction);
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001320 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001321}
1322
Chuck Leverd2832af2019-04-24 09:39:32 -04001323static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001324{
Chuck Leverd2832af2019-04-24 09:39:32 -04001325 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever8cec3db2019-04-24 09:39:16 -04001326 if (rb)
1327 kfree(rb->rg_data);
Chuck Levere531dca2015-08-03 13:03:20 -04001328 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001329}
1330
Chuck Lever995d3122018-12-19 11:00:32 -05001331/**
Chuck Lever2ae50ad2019-10-09 13:07:38 -04001332 * rpcrdma_post_recvs - Refill the Receive Queue
1333 * @r_xprt: controlling transport instance
Chuck Lever35d8b102021-04-19 14:02:41 -04001334 * @needed: current credit grant
1335 * @temp: mark Receive buffers to be deleted after one use
Chuck Lever2ae50ad2019-10-09 13:07:38 -04001336 *
1337 */
Chuck Lever35d8b102021-04-19 14:02:41 -04001338void rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, int needed, bool temp)
Chuck Leverf531a5d2015-10-24 17:27:43 -04001339{
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001340 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Levere28ce902020-02-21 17:01:05 -05001341 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Levere515dd92020-01-03 11:57:09 -05001342 struct ib_recv_wr *wr, *bad_wr;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001343 struct rpcrdma_rep *rep;
Chuck Lever35d8b102021-04-19 14:02:41 -04001344 int count, rc;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001345
Chuck Lever61c208a2018-10-01 14:26:35 -04001346 rc = 0;
1347 count = 0;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001348
Chuck Lever93aa8e02020-02-21 17:00:54 -05001349 if (likely(ep->re_receive_count > needed))
Chuck Lever61c208a2018-10-01 14:26:35 -04001350 goto out;
Chuck Lever93aa8e02020-02-21 17:00:54 -05001351 needed -= ep->re_receive_count;
Chuck Levere340c2d2019-02-11 11:23:54 -05001352 if (!temp)
1353 needed += RPCRDMA_MAX_RECV_BATCH;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001354
Chuck Lever15788d12021-04-19 14:02:09 -04001355 if (atomic_inc_return(&ep->re_receiving) > 1)
1356 goto out;
1357
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001358 /* fast path: all needed reps can be found on the free list */
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001359 wr = NULL;
1360 while (needed) {
Chuck Leverb0b227f2019-08-19 18:48:43 -04001361 rep = rpcrdma_rep_get_locked(buf);
Chuck Lever671c4502020-01-03 11:52:22 -05001362 if (rep && rep->rr_temp) {
1363 rpcrdma_rep_destroy(rep);
1364 continue;
1365 }
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001366 if (!rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -04001367 rep = rpcrdma_rep_create(r_xprt, temp);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001368 if (!rep)
1369 break;
1370
Chuck Leveraf5865d2020-11-09 14:39:21 -05001371 rep->rr_cid.ci_queue_id = ep->re_attr.recv_cq->res.id;
Chuck Levere515dd92020-01-03 11:57:09 -05001372 trace_xprtrdma_post_recv(rep);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001373 rep->rr_recv_wr.next = wr;
1374 wr = &rep->rr_recv_wr;
1375 --needed;
Chuck Levere515dd92020-01-03 11:57:09 -05001376 ++count;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001377 }
1378 if (!wr)
Chuck Lever61c208a2018-10-01 14:26:35 -04001379 goto out;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001380
Chuck Levere28ce902020-02-21 17:01:05 -05001381 rc = ib_post_recv(ep->re_id->qp, wr,
Bart Van Assched34ac5c2018-07-18 09:25:32 -07001382 (const struct ib_recv_wr **)&bad_wr);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001383 if (rc) {
Chuck Lever683f31c2021-08-02 14:44:30 -04001384 trace_xprtrdma_post_recvs_err(r_xprt, rc);
Chuck Lever2d0abe32019-06-19 10:32:38 -04001385 for (wr = bad_wr; wr;) {
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001386 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001387
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001388 rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
Chuck Lever2d0abe32019-06-19 10:32:38 -04001389 wr = wr->next;
Chuck Leverc35ca602021-04-19 14:02:47 -04001390 rpcrdma_rep_put(buf, rep);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001391 --count;
1392 }
1393 }
Chuck Lever97480ca2021-08-02 14:44:24 -04001394 if (atomic_dec_return(&ep->re_receiving) > 0)
1395 complete(&ep->re_done);
1396
1397out:
Chuck Lever683f31c2021-08-02 14:44:30 -04001398 trace_xprtrdma_post_recvs(r_xprt, count);
Chuck Lever93aa8e02020-02-21 17:00:54 -05001399 ep->re_receive_count += count;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001400 return;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001401}