blob: c79d8620d9c823442859825b61c0d85e206251c9 [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 Leverefd81e92018-05-04 15:35:41 -040077static void rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc);
Chuck Levera31b2f92019-10-09 13:07:27 -040078static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt);
Chuck Leverb0b227f2019-08-19 18:48:43 -040079static void rpcrdma_reps_destroy(struct rpcrdma_buffer *buf);
Chuck Lever96cedde2017-12-14 20:57:55 -050080static void rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt);
Chuck Lever9d2da4f2019-10-09 13:07:48 -040081static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt);
Chuck Leverd2832af2019-04-24 09:39:32 -040082static struct rpcrdma_regbuf *
83rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
84 gfp_t flags);
85static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb);
86static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040087
Chuck Leverb8fe6772019-04-24 09:40:36 -040088/* Wait for outstanding transport work to finish. ib_drain_qp
89 * handles the drains in the wrong order for us, so open code
90 * them here.
Chuck Lever6d2d0ee2018-12-19 10:58:29 -050091 */
92static void rpcrdma_xprt_drain(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040093{
Chuck Lever6d2d0ee2018-12-19 10:58:29 -050094 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040095
Chuck Lever6d2d0ee2018-12-19 10:58:29 -050096 /* Flush Receives, then wait for deferred Reply work
97 * to complete.
98 */
Chuck Levere1ede312019-04-09 17:04:09 -040099 ib_drain_rq(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400100
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500101 /* Deferred Reply processing might have scheduled
102 * local invalidations.
103 */
104 ib_drain_sq(ia->ri_id->qp);
Chuck Leverf1a03b72014-11-08 20:14:37 -0500105}
106
Chuck Lever31e62d22018-10-01 14:26:08 -0400107/**
Chuck Leverf9521d52018-10-01 14:26:13 -0400108 * rpcrdma_qp_event_handler - Handle one QP event (error notification)
109 * @event: details of the event
110 * @context: ep that owns QP where event occurred
111 *
112 * Called from the RDMA provider (device driver) possibly in an interrupt
113 * context.
114 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400115static void
Chuck Leverf9521d52018-10-01 14:26:13 -0400116rpcrdma_qp_event_handler(struct ib_event *event, void *context)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400117{
118 struct rpcrdma_ep *ep = context;
Chuck Lever643cf322017-12-20 16:31:45 -0500119 struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
120 rx_ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400121
Chuck Leverf9521d52018-10-01 14:26:13 -0400122 trace_xprtrdma_qp_event(r_xprt, event);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400123}
124
Chuck Lever2fa8f882016-03-04 11:28:53 -0500125/**
126 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
127 * @cq: completion queue (ignored)
128 * @wc: completed WR
129 *
Chuck Lever4220a072015-10-24 17:26:45 -0400130 */
131static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500132rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400133{
Chuck Leverae729502017-10-20 10:48:12 -0400134 struct ib_cqe *cqe = wc->wr_cqe;
135 struct rpcrdma_sendctx *sc =
136 container_of(cqe, struct rpcrdma_sendctx, sc_cqe);
137
Chuck Lever2fa8f882016-03-04 11:28:53 -0500138 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Leverab03eff2017-12-20 16:30:40 -0500139 trace_xprtrdma_wc_send(sc, wc);
Chuck Leverae729502017-10-20 10:48:12 -0400140 rpcrdma_sendctx_put_locked(sc);
Chuck Leverfc664482014-05-28 10:33:25 -0400141}
142
Chuck Lever552bf222016-03-04 11:28:36 -0500143/**
Chuck Lever1519e962016-09-15 10:57:49 -0400144 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500145 * @cq: completion queue (ignored)
146 * @wc: completed WR
147 *
148 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400149static void
Chuck Lever1519e962016-09-15 10:57:49 -0400150rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400151{
Chuck Lever552bf222016-03-04 11:28:36 -0500152 struct ib_cqe *cqe = wc->wr_cqe;
153 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
154 rr_cqe);
Chuck Lever6ceea362018-12-19 10:58:24 -0500155 struct rpcrdma_xprt *r_xprt = rep->rr_rxprt;
Chuck Leverfc664482014-05-28 10:33:25 -0400156
Chuck Lever6ceea362018-12-19 10:58:24 -0500157 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Lever0e0b8542018-05-04 15:35:14 -0400158 trace_xprtrdma_wc_receive(wc);
Chuck Lever6ceea362018-12-19 10:58:24 -0500159 --r_xprt->rx_ep.rep_receive_count;
Chuck Lever85024272015-01-21 11:02:04 -0500160 if (wc->status != IB_WC_SUCCESS)
Chuck Lever6ceea362018-12-19 10:58:24 -0500161 goto out_flushed;
Chuck Leverfc664482014-05-28 10:33:25 -0400162
Chuck Lever85024272015-01-21 11:02:04 -0500163 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Lever96f87782017-08-03 14:30:03 -0400164 rpcrdma_set_xdrlen(&rep->rr_hdrbuf, wc->byte_len);
Chuck Leverc8b920b2016-09-15 10:57:16 -0400165 rep->rr_wc_flags = wc->wc_flags;
166 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
167
Chuck Lever91a10c52017-04-11 13:23:02 -0400168 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500169 rdmab_addr(rep->rr_rdmabuf),
Chuck Levere2a67192017-08-03 14:30:44 -0400170 wc->byte_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500171
Chuck Leverd8f532d2017-10-16 15:01:30 -0400172 rpcrdma_reply_handler(rep);
Chuck Lever85024272015-01-21 11:02:04 -0500173 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400174
Chuck Lever6ceea362018-12-19 10:58:24 -0500175out_flushed:
Chuck Lever6ceea362018-12-19 10:58:24 -0500176 rpcrdma_recv_buffer_put(rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400177}
178
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400179static void
180rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
181 struct rdma_conn_param *param)
182{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400183 const struct rpcrdma_connect_private *pmsg = param->private_data;
184 unsigned int rsize, wsize;
185
Chuck Leverc8b920b2016-09-15 10:57:16 -0400186 /* Default settings for RPC-over-RDMA Version One */
Chuck Leverb5f0afb2017-02-08 16:59:54 -0500187 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400188 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
189 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
190
191 if (pmsg &&
192 pmsg->cp_magic == rpcrdma_cmp_magic &&
193 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc95a3c62017-02-08 17:00:02 -0500194 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400195 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
196 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
197 }
198
Chuck Lever94087e92019-04-24 09:40:20 -0400199 if (rsize < r_xprt->rx_ep.rep_inline_recv)
200 r_xprt->rx_ep.rep_inline_recv = rsize;
201 if (wsize < r_xprt->rx_ep.rep_inline_send)
202 r_xprt->rx_ep.rep_inline_send = wsize;
203 dprintk("RPC: %s: max send %u, max recv %u\n", __func__,
204 r_xprt->rx_ep.rep_inline_send,
205 r_xprt->rx_ep.rep_inline_recv);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400206 rpcrdma_set_max_header_sizes(r_xprt);
207}
208
Chuck Leverae382882018-10-01 14:25:47 -0400209/**
210 * rpcrdma_cm_event_handler - Handle RDMA CM events
211 * @id: rdma_cm_id on which an event has occurred
212 * @event: details of the event
213 *
214 * Called with @id's mutex held. Returns 1 if caller should
215 * destroy @id, otherwise 0.
216 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400217static int
Chuck Leverae382882018-10-01 14:25:47 -0400218rpcrdma_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400219{
Chuck Levered97f1f2018-10-01 14:25:52 -0400220 struct rpcrdma_xprt *r_xprt = id->context;
221 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
222 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
223 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400224
Chuck Leverae382882018-10-01 14:25:47 -0400225 might_sleep();
226
Chuck Levered97f1f2018-10-01 14:25:52 -0400227 trace_xprtrdma_cm_event(r_xprt, event);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400228 switch (event->event) {
229 case RDMA_CM_EVENT_ADDR_RESOLVED:
230 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400231 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400232 complete(&ia->ri_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400233 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400234 case RDMA_CM_EVENT_ADDR_ERROR:
Chuck Lever52d28fe2018-05-04 15:34:37 -0400235 ia->ri_async_rc = -EPROTO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400236 complete(&ia->ri_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400237 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400238 case RDMA_CM_EVENT_ROUTE_ERROR:
239 ia->ri_async_rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400240 complete(&ia->ri_done);
Chuck Lever316a6162018-10-01 14:26:03 -0400241 return 0;
Chuck Leverbebd0312017-04-11 13:23:10 -0400242 case RDMA_CM_EVENT_DEVICE_REMOVAL:
243#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Leverd461f1f2017-12-14 20:56:50 -0500244 pr_info("rpcrdma: removing device %s for %s:%s\n",
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400245 ia->ri_id->device->name,
Chuck Levered97f1f2018-10-01 14:25:52 -0400246 rpcrdma_addrstr(r_xprt), rpcrdma_portstr(r_xprt));
Chuck Leverbebd0312017-04-11 13:23:10 -0400247#endif
248 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
249 ep->rep_connected = -ENODEV;
Chuck Levered97f1f2018-10-01 14:25:52 -0400250 xprt_force_disconnect(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400251 wait_for_completion(&ia->ri_remove_done);
252
253 ia->ri_id = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400254 /* Return 1 to ensure the core destroys the id. */
255 return 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400256 case RDMA_CM_EVENT_ESTABLISHED:
Chuck Levered97f1f2018-10-01 14:25:52 -0400257 ++xprt->connect_cookie;
Chuck Leveraadc5a92018-10-01 14:25:57 -0400258 ep->rep_connected = 1;
Chuck Levered97f1f2018-10-01 14:25:52 -0400259 rpcrdma_update_connect_private(r_xprt, &event->param.conn);
Chuck Lever31e62d22018-10-01 14:26:08 -0400260 wake_up_all(&ep->rep_connect_wait);
261 break;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400262 case RDMA_CM_EVENT_CONNECT_ERROR:
Chuck Leveraadc5a92018-10-01 14:25:57 -0400263 ep->rep_connected = -ENOTCONN;
Chuck Lever31e62d22018-10-01 14:26:08 -0400264 goto disconnected;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400265 case RDMA_CM_EVENT_UNREACHABLE:
Chuck Leveraadc5a92018-10-01 14:25:57 -0400266 ep->rep_connected = -ENETUNREACH;
Chuck Lever31e62d22018-10-01 14:26:08 -0400267 goto disconnected;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400268 case RDMA_CM_EVENT_REJECTED:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500269 dprintk("rpcrdma: connection to %s:%s rejected: %s\n",
Chuck Levered97f1f2018-10-01 14:25:52 -0400270 rpcrdma_addrstr(r_xprt), rpcrdma_portstr(r_xprt),
Chuck Lever0a904872017-02-08 17:00:35 -0500271 rdma_reject_msg(id, event->status));
Chuck Leveraadc5a92018-10-01 14:25:57 -0400272 ep->rep_connected = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500273 if (event->status == IB_CM_REJ_STALE_CONN)
Chuck Leveraadc5a92018-10-01 14:25:57 -0400274 ep->rep_connected = -EAGAIN;
Chuck Lever31e62d22018-10-01 14:26:08 -0400275 goto disconnected;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400276 case RDMA_CM_EVENT_DISCONNECTED:
Chuck Leveraadc5a92018-10-01 14:25:57 -0400277 ep->rep_connected = -ECONNABORTED;
Chuck Lever31e62d22018-10-01 14:26:08 -0400278disconnected:
279 xprt_force_disconnect(xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400280 wake_up_all(&ep->rep_connect_wait);
Chuck Lever316a6162018-10-01 14:26:03 -0400281 break;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400282 default:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400283 break;
284 }
285
Chuck Lever5f624122018-12-19 10:59:01 -0500286 dprintk("RPC: %s: %s:%s on %s/frwr: %s\n", __func__,
Chuck Lever316a6162018-10-01 14:26:03 -0400287 rpcrdma_addrstr(r_xprt), rpcrdma_portstr(r_xprt),
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400288 ia->ri_id->device->name, rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400289 return 0;
290}
291
292static struct rdma_cm_id *
Chuck Leverdd229ce2017-12-14 20:56:58 -0500293rpcrdma_create_id(struct rpcrdma_xprt *xprt, struct rpcrdma_ia *ia)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400294{
Chuck Lever109b88a2016-11-29 10:52:40 -0500295 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400296 struct rdma_cm_id *id;
297 int rc;
298
Chuck Leverb4744e02017-12-20 16:31:29 -0500299 trace_xprtrdma_conn_start(xprt);
300
Tom Talpey1a954052008-10-09 15:01:31 -0400301 init_completion(&ia->ri_done);
Chuck Leverbebd0312017-04-11 13:23:10 -0400302 init_completion(&ia->ri_remove_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400303
Chuck Leverae382882018-10-01 14:25:47 -0400304 id = rdma_create_id(xprt->rx_xprt.xprt_net, rpcrdma_cm_event_handler,
Chuck Lever107c4be2018-05-04 15:34:42 -0400305 xprt, RDMA_PS_TCP, IB_QPT_RC);
Chuck Leverddbb3472018-12-19 10:59:39 -0500306 if (IS_ERR(id))
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400307 return id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400308
Tom Talpey5675add2008-10-09 15:01:41 -0400309 ia->ri_async_rc = -ETIMEDOUT;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500310 rc = rdma_resolve_addr(id, NULL,
311 (struct sockaddr *)&xprt->rx_xprt.addr,
312 RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500313 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400314 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500315 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
316 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500317 trace_xprtrdma_conn_tout(xprt);
Chuck Lever109b88a2016-11-29 10:52:40 -0500318 goto out;
319 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400320
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400321 rc = ia->ri_async_rc;
322 if (rc)
323 goto out;
324
Tom Talpey5675add2008-10-09 15:01:41 -0400325 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400326 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
Chuck Leverddbb3472018-12-19 10:59:39 -0500327 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400328 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500329 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
330 if (rc < 0) {
Chuck Leverb4744e02017-12-20 16:31:29 -0500331 trace_xprtrdma_conn_tout(xprt);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400332 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500333 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400334 rc = ia->ri_async_rc;
335 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400336 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400337
338 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400339
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400340out:
341 rdma_destroy_id(id);
342 return ERR_PTR(rc);
343}
344
345/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400346 * Exported functions.
347 */
348
Chuck Leverfff09592017-04-11 13:22:54 -0400349/**
350 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
Chuck Leverdd229ce2017-12-14 20:56:58 -0500351 * @xprt: transport with IA to (re)initialize
Chuck Leverfff09592017-04-11 13:22:54 -0400352 *
353 * Returns 0 on success, negative errno if an appropriate
354 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400355 */
356int
Chuck Leverdd229ce2017-12-14 20:56:58 -0500357rpcrdma_ia_open(struct rpcrdma_xprt *xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400358{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400359 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400360 int rc;
361
Chuck Leverdd229ce2017-12-14 20:56:58 -0500362 ia->ri_id = rpcrdma_create_id(xprt, ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400363 if (IS_ERR(ia->ri_id)) {
364 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400365 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400366 }
367
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400368 ia->ri_pd = ib_alloc_pd(ia->ri_id->device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400369 if (IS_ERR(ia->ri_pd)) {
370 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400371 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400372 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400373 }
374
Chuck Leverfff09592017-04-11 13:22:54 -0400375 switch (xprt_rdma_memreg_strategy) {
Chuck Leverce5b3712017-12-14 20:57:47 -0500376 case RPCRDMA_FRWR:
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400377 if (frwr_is_supported(ia->ri_id->device))
Chuck Leverb54054c2016-06-29 13:53:27 -0400378 break;
Chuck Leverb54054c2016-06-29 13:53:27 -0400379 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400380 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400381 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400382 ia->ri_id->device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400383 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400384 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400385 }
386
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400387 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500388
Chuck Leverfff09592017-04-11 13:22:54 -0400389out_err:
390 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400391 return rc;
392}
393
Chuck Leverfff09592017-04-11 13:22:54 -0400394/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400395 * rpcrdma_ia_remove - Handle device driver unload
396 * @ia: interface adapter being removed
397 *
398 * Divest transport H/W resources associated with this adapter,
399 * but allow it to be restored later.
400 */
401void
402rpcrdma_ia_remove(struct rpcrdma_ia *ia)
403{
404 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
405 rx_ia);
406 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
407 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
408 struct rpcrdma_req *req;
Chuck Leverbebd0312017-04-11 13:23:10 -0400409
Chuck Leverbebd0312017-04-11 13:23:10 -0400410 /* This is similar to rpcrdma_ep_destroy, but:
411 * - Don't cancel the connect worker.
412 * - Don't call rpcrdma_ep_disconnect, which waits
413 * for another conn upcall, which will deadlock.
414 * - rdma_disconnect is unneeded, the underlying
415 * connection is already gone.
416 */
417 if (ia->ri_id->qp) {
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500418 rpcrdma_xprt_drain(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400419 rdma_destroy_qp(ia->ri_id);
420 ia->ri_id->qp = NULL;
421 }
422 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400423 ep->rep_attr.recv_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400424 ib_free_cq(ep->rep_attr.send_cq);
Chuck Lever25524282018-03-19 14:23:16 -0400425 ep->rep_attr.send_cq = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400426
427 /* The ULP is responsible for ensuring all DMA
428 * mappings and MRs are gone.
429 */
Chuck Leverb0b227f2019-08-19 18:48:43 -0400430 rpcrdma_reps_destroy(buf);
Chuck Leverbebd0312017-04-11 13:23:10 -0400431 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
Chuck Leverd2832af2019-04-24 09:39:32 -0400432 rpcrdma_regbuf_dma_unmap(req->rl_rdmabuf);
433 rpcrdma_regbuf_dma_unmap(req->rl_sendbuf);
434 rpcrdma_regbuf_dma_unmap(req->rl_recvbuf);
Chuck Leverbebd0312017-04-11 13:23:10 -0400435 }
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400436 rpcrdma_mrs_destroy(r_xprt);
Chuck Lever25524282018-03-19 14:23:16 -0400437 ib_dealloc_pd(ia->ri_pd);
438 ia->ri_pd = NULL;
Chuck Leverbebd0312017-04-11 13:23:10 -0400439
440 /* Allow waiters to continue */
441 complete(&ia->ri_remove_done);
Chuck Leverb4744e02017-12-20 16:31:29 -0500442
443 trace_xprtrdma_remove(r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400444}
445
446/**
Chuck Leverfff09592017-04-11 13:22:54 -0400447 * rpcrdma_ia_close - Clean up/close an IA.
448 * @ia: interface adapter to close
449 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400450 */
451void
452rpcrdma_ia_close(struct rpcrdma_ia *ia)
453{
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400454 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
455 if (ia->ri_id->qp)
456 rdma_destroy_qp(ia->ri_id);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400457 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400458 }
Chuck Leverfff09592017-04-11 13:22:54 -0400459 ia->ri_id = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400460
461 /* If the pd is still busy, xprtrdma missed freeing a resource */
462 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600463 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400464 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400465}
466
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400467/**
468 * rpcrdma_ep_create - Create unconnected endpoint
469 * @r_xprt: transport to instantiate
470 *
471 * Returns zero on success, or a negative errno.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400472 */
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400473int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400474{
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400475 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
476 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400477 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Leverfc664482014-05-28 10:33:25 -0400478 struct ib_cq *sendcq, *recvcq;
Chuck Lever914fcad2018-05-04 15:34:48 -0400479 unsigned int max_sge;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500480 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400481
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400482 ep->rep_max_requests = xprt_rdma_slot_table_entries;
Chuck Lever94087e92019-04-24 09:40:20 -0400483 ep->rep_inline_send = xprt_rdma_max_inline_write;
484 ep->rep_inline_recv = xprt_rdma_max_inline_read;
485
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400486 max_sge = min_t(unsigned int, ia->ri_id->device->attrs.max_send_sge,
Chuck Levereed50872017-03-11 15:52:47 -0500487 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500488 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
489 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400490 return -ENOMEM;
491 }
Chuck Lever1179e2c2018-01-31 12:34:05 -0500492 ia->ri_max_send_sges = max_sge;
Chuck Leverb3221d62015-08-03 13:03:39 -0400493
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400494 rc = frwr_open(ia, ep);
Chuck Lever914fcad2018-05-04 15:34:48 -0400495 if (rc)
496 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400497
Chuck Leverf9521d52018-10-01 14:26:13 -0400498 ep->rep_attr.event_handler = rpcrdma_qp_event_handler;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400499 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400500 ep->rep_attr.srq = NULL;
Chuck Lever16f906d2017-02-08 17:00:10 -0500501 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400502 ep->rep_attr.cap.max_recv_sge = 1;
503 ep->rep_attr.cap.max_inline_data = 0;
504 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
505 ep->rep_attr.qp_type = IB_QPT_RC;
506 ep->rep_attr.port_num = ~0;
507
508 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
509 "iovs: send %d recv %d\n",
510 __func__,
511 ep->rep_attr.cap.max_send_wr,
512 ep->rep_attr.cap.max_recv_wr,
513 ep->rep_attr.cap.max_send_sge,
514 ep->rep_attr.cap.max_recv_sge);
515
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400516 ep->rep_send_batch = ep->rep_max_requests >> 3;
Chuck Leverae729502017-10-20 10:48:12 -0400517 ep->rep_send_count = ep->rep_send_batch;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400518 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever6ceea362018-12-19 10:58:24 -0500519 ep->rep_receive_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400520
Chuck Lever20cf4e02019-07-29 13:22:09 -0400521 sendcq = ib_alloc_cq_any(ia->ri_id->device, NULL,
522 ep->rep_attr.cap.max_send_wr + 1,
523 IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400524 if (IS_ERR(sendcq)) {
525 rc = PTR_ERR(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400526 goto out1;
527 }
528
Chuck Lever20cf4e02019-07-29 13:22:09 -0400529 recvcq = ib_alloc_cq_any(ia->ri_id->device, NULL,
530 ep->rep_attr.cap.max_recv_wr + 1,
531 IB_POLL_WORKQUEUE);
Chuck Leverfc664482014-05-28 10:33:25 -0400532 if (IS_ERR(recvcq)) {
533 rc = PTR_ERR(recvcq);
Chuck Leverfc664482014-05-28 10:33:25 -0400534 goto out2;
535 }
536
Chuck Leverfc664482014-05-28 10:33:25 -0400537 ep->rep_attr.send_cq = sendcq;
538 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400539
540 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400541 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400542
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400543 /* Prepare RDMA-CM private message */
544 pmsg->cp_magic = rpcrdma_cmp_magic;
545 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Lever5f624122018-12-19 10:59:01 -0500546 pmsg->cp_flags |= RPCRDMA_CMP_F_SND_W_INV_OK;
Chuck Lever94087e92019-04-24 09:40:20 -0400547 pmsg->cp_send_size = rpcrdma_encode_buffer_size(ep->rep_inline_send);
548 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(ep->rep_inline_recv);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400549 ep->rep_remote_cma.private_data = pmsg;
550 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400551
552 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400553 ep->rep_remote_cma.initiator_depth = 0;
Chuck Leverb7e85fff2018-02-28 15:30:33 -0500554 ep->rep_remote_cma.responder_resources =
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400555 min_t(int, U8_MAX, ia->ri_id->device->attrs.max_qp_rd_atom);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400556
Chuck Leverb2dde942016-05-02 14:43:03 -0400557 /* Limit transport retries so client can detect server
558 * GID changes quickly. RPC layer handles re-establishing
559 * transport connection and retransmission.
560 */
561 ep->rep_remote_cma.retry_count = 6;
562
563 /* RPC-over-RDMA handles its own flow control. In addition,
564 * make all RNR NAKs visible so we know that RPC-over-RDMA
565 * flow control is working correctly (no NAKs should be seen).
566 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400567 ep->rep_remote_cma.flow_control = 0;
568 ep->rep_remote_cma.rnr_retry_count = 0;
569
570 return 0;
571
572out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500573 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400574out1:
575 return rc;
576}
577
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400578/**
579 * rpcrdma_ep_destroy - Disconnect and destroy endpoint.
580 * @r_xprt: transport instance to shut down
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400581 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400582 */
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400583void rpcrdma_ep_destroy(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400584{
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400585 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
586 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
587
Chuck Lever25524282018-03-19 14:23:16 -0400588 if (ia->ri_id && ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400589 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400590 rdma_destroy_qp(ia->ri_id);
591 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400592 }
593
Chuck Lever25524282018-03-19 14:23:16 -0400594 if (ep->rep_attr.recv_cq)
595 ib_free_cq(ep->rep_attr.recv_cq);
596 if (ep->rep_attr.send_cq)
597 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400598}
599
Chuck Levera9b0e382017-04-11 13:23:26 -0400600/* Re-establish a connection after a device removal event.
601 * Unlike a normal reconnection, a fresh PD and a new set
602 * of MRs and buffers is needed.
603 */
Chuck Lever98ef77d2019-08-26 13:12:57 -0400604static int rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
605 struct ib_qp_init_attr *qp_init_attr)
Chuck Levera9b0e382017-04-11 13:23:26 -0400606{
Chuck Lever98ef77d2019-08-26 13:12:57 -0400607 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Levera9b0e382017-04-11 13:23:26 -0400608 int rc, err;
609
Chuck Leverb4744e02017-12-20 16:31:29 -0500610 trace_xprtrdma_reinsert(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400611
612 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500613 if (rpcrdma_ia_open(r_xprt))
Chuck Levera9b0e382017-04-11 13:23:26 -0400614 goto out1;
615
616 rc = -ENOMEM;
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400617 err = rpcrdma_ep_create(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400618 if (err) {
619 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
620 goto out2;
621 }
622
623 rc = -ENETUNREACH;
Chuck Lever98ef77d2019-08-26 13:12:57 -0400624 err = rdma_create_qp(ia->ri_id, ia->ri_pd, qp_init_attr);
Chuck Levera9b0e382017-04-11 13:23:26 -0400625 if (err) {
626 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
627 goto out3;
628 }
Chuck Levera9b0e382017-04-11 13:23:26 -0400629 return 0;
630
631out3:
Chuck Lever86c4ccd2019-04-24 09:40:25 -0400632 rpcrdma_ep_destroy(r_xprt);
Chuck Levera9b0e382017-04-11 13:23:26 -0400633out2:
634 rpcrdma_ia_close(ia);
635out1:
636 return rc;
637}
638
Chuck Lever98ef77d2019-08-26 13:12:57 -0400639static int rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt,
640 struct ib_qp_init_attr *qp_init_attr)
Chuck Lever18908962017-04-11 13:23:18 -0400641{
Chuck Lever98ef77d2019-08-26 13:12:57 -0400642 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Lever18908962017-04-11 13:23:18 -0400643 struct rdma_cm_id *id, *old;
644 int err, rc;
645
Chuck Leverb4744e02017-12-20 16:31:29 -0500646 trace_xprtrdma_reconnect(r_xprt);
Chuck Lever18908962017-04-11 13:23:18 -0400647
Chuck Lever98ef77d2019-08-26 13:12:57 -0400648 rpcrdma_ep_disconnect(&r_xprt->rx_ep, ia);
Chuck Lever18908962017-04-11 13:23:18 -0400649
650 rc = -EHOSTUNREACH;
Chuck Leverdd229ce2017-12-14 20:56:58 -0500651 id = rpcrdma_create_id(r_xprt, ia);
Chuck Lever18908962017-04-11 13:23:18 -0400652 if (IS_ERR(id))
653 goto out;
654
655 /* As long as the new ID points to the same device as the
656 * old ID, we can reuse the transport's existing PD and all
657 * previously allocated MRs. Also, the same device means
658 * the transport's previous DMA mappings are still valid.
659 *
660 * This is a sanity check only. There should be no way these
661 * point to two different devices here.
662 */
663 old = id;
664 rc = -ENETUNREACH;
Chuck Leverf19bd0b2019-04-24 09:40:04 -0400665 if (ia->ri_id->device != id->device) {
Chuck Lever18908962017-04-11 13:23:18 -0400666 pr_err("rpcrdma: can't reconnect on different device!\n");
667 goto out_destroy;
668 }
669
Chuck Lever98ef77d2019-08-26 13:12:57 -0400670 err = rdma_create_qp(id, ia->ri_pd, qp_init_attr);
Chuck Leverddbb3472018-12-19 10:59:39 -0500671 if (err)
Chuck Lever18908962017-04-11 13:23:18 -0400672 goto out_destroy;
Chuck Lever18908962017-04-11 13:23:18 -0400673
674 /* Atomically replace the transport's ID and QP. */
675 rc = 0;
676 old = ia->ri_id;
677 ia->ri_id = id;
678 rdma_destroy_qp(old);
679
680out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400681 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400682out:
683 return rc;
684}
685
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400686/*
687 * Connect unconnected endpoint.
688 */
689int
690rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
691{
Chuck Lever0a904872017-02-08 17:00:35 -0500692 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
693 rx_ia);
Chuck Lever31e62d22018-10-01 14:26:08 -0400694 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
Chuck Lever98ef77d2019-08-26 13:12:57 -0400695 struct ib_qp_init_attr qp_init_attr;
Chuck Lever18908962017-04-11 13:23:18 -0400696 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400697
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400698retry:
Chuck Lever98ef77d2019-08-26 13:12:57 -0400699 memcpy(&qp_init_attr, &ep->rep_attr, sizeof(qp_init_attr));
Chuck Lever18908962017-04-11 13:23:18 -0400700 switch (ep->rep_connected) {
701 case 0:
Chuck Lever98ef77d2019-08-26 13:12:57 -0400702 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &qp_init_attr);
Chuck Leverec62f402014-05-28 10:34:07 -0400703 if (rc) {
Chuck Lever18908962017-04-11 13:23:18 -0400704 rc = -ENETUNREACH;
705 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400706 }
Chuck Lever18908962017-04-11 13:23:18 -0400707 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400708 case -ENODEV:
Chuck Lever98ef77d2019-08-26 13:12:57 -0400709 rc = rpcrdma_ep_recreate_xprt(r_xprt, &qp_init_attr);
Chuck Levera9b0e382017-04-11 13:23:26 -0400710 if (rc)
711 goto out_noupdate;
712 break;
Chuck Lever18908962017-04-11 13:23:18 -0400713 default:
Chuck Lever98ef77d2019-08-26 13:12:57 -0400714 rc = rpcrdma_ep_reconnect(r_xprt, &qp_init_attr);
Chuck Lever18908962017-04-11 13:23:18 -0400715 if (rc)
716 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400717 }
718
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400719 ep->rep_connected = 0;
Chuck Lever31e62d22018-10-01 14:26:08 -0400720 xprt_clear_connected(xprt);
721
Chuck Levereea63ca2019-10-09 13:07:32 -0400722 rpcrdma_reset_cwnd(r_xprt);
Chuck Lever8d4fb8f2018-07-28 10:46:47 -0400723 rpcrdma_post_recvs(r_xprt, true);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400724
725 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
Chuck Leverddbb3472018-12-19 10:59:39 -0500726 if (rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400727 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400728
Chuck Leverf9e1afe2019-08-26 13:12:51 -0400729 if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
730 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400731 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500733 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400734 goto retry;
735 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500736 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400737 }
738
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400739 rpcrdma_mrs_create(r_xprt);
Chuck Lever7c8d9e72018-05-04 15:35:20 -0400740
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400741out:
742 if (rc)
743 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400744
745out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400746 return rc;
747}
748
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500749/**
750 * rpcrdma_ep_disconnect - Disconnect underlying transport
751 * @ep: endpoint to disconnect
752 * @ia: associated interface adapter
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400753 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400754 * Caller serializes. Either the transport send lock is held,
755 * or we're being called to destroy the transport.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400756 */
Chuck Lever282191c2014-07-29 17:25:55 -0400757void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400758rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
759{
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500760 struct rpcrdma_xprt *r_xprt = container_of(ep, struct rpcrdma_xprt,
761 rx_ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400762 int rc;
763
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500764 /* returns without wait if ID is not connected */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400765 rc = rdma_disconnect(ia->ri_id);
Chuck Leverb4744e02017-12-20 16:31:29 -0500766 if (!rc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400767 wait_event_interruptible(ep->rep_connect_wait,
768 ep->rep_connected != 1);
Chuck Leverb4744e02017-12-20 16:31:29 -0500769 else
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400770 ep->rep_connected = rc;
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500771 trace_xprtrdma_disconnect(r_xprt, rc);
Chuck Lever550d7502016-05-02 14:41:47 -0400772
Chuck Lever6d2d0ee2018-12-19 10:58:29 -0500773 rpcrdma_xprt_drain(r_xprt);
Chuck Levera31b2f92019-10-09 13:07:27 -0400774 rpcrdma_reqs_reset(r_xprt);
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400775 rpcrdma_mrs_destroy(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400776}
777
Chuck Leverae729502017-10-20 10:48:12 -0400778/* Fixed-size circular FIFO queue. This implementation is wait-free and
779 * lock-free.
780 *
781 * Consumer is the code path that posts Sends. This path dequeues a
782 * sendctx for use by a Send operation. Multiple consumer threads
783 * are serialized by the RPC transport lock, which allows only one
784 * ->send_request call at a time.
785 *
786 * Producer is the code path that handles Send completions. This path
787 * enqueues a sendctx that has been completed. Multiple producer
788 * threads are serialized by the ib_poll_cq() function.
789 */
790
791/* rpcrdma_sendctxs_destroy() assumes caller has already quiesced
Chuck Leverb8fe6772019-04-24 09:40:36 -0400792 * queue activity, and rpcrdma_xprt_drain has flushed all remaining
793 * Send requests.
Chuck Leverae729502017-10-20 10:48:12 -0400794 */
795static void rpcrdma_sendctxs_destroy(struct rpcrdma_buffer *buf)
796{
797 unsigned long i;
798
799 for (i = 0; i <= buf->rb_sc_last; i++)
800 kfree(buf->rb_sc_ctxs[i]);
801 kfree(buf->rb_sc_ctxs);
802}
803
804static struct rpcrdma_sendctx *rpcrdma_sendctx_create(struct rpcrdma_ia *ia)
805{
806 struct rpcrdma_sendctx *sc;
807
Gustavo A. R. Silva66d42182019-01-30 18:46:22 -0600808 sc = kzalloc(struct_size(sc, sc_sges, ia->ri_max_send_sges),
Chuck Leverae729502017-10-20 10:48:12 -0400809 GFP_KERNEL);
810 if (!sc)
811 return NULL;
812
813 sc->sc_wr.wr_cqe = &sc->sc_cqe;
814 sc->sc_wr.sg_list = sc->sc_sges;
815 sc->sc_wr.opcode = IB_WR_SEND;
816 sc->sc_cqe.done = rpcrdma_wc_send;
817 return sc;
818}
819
820static int rpcrdma_sendctxs_create(struct rpcrdma_xprt *r_xprt)
821{
822 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
823 struct rpcrdma_sendctx *sc;
824 unsigned long i;
825
826 /* Maximum number of concurrent outstanding Send WRs. Capping
827 * the circular queue size stops Send Queue overflow by causing
828 * the ->send_request call to fail temporarily before too many
829 * Sends are posted.
830 */
831 i = buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS;
832 dprintk("RPC: %s: allocating %lu send_ctxs\n", __func__, i);
833 buf->rb_sc_ctxs = kcalloc(i, sizeof(sc), GFP_KERNEL);
834 if (!buf->rb_sc_ctxs)
835 return -ENOMEM;
836
837 buf->rb_sc_last = i - 1;
838 for (i = 0; i <= buf->rb_sc_last; i++) {
839 sc = rpcrdma_sendctx_create(&r_xprt->rx_ia);
840 if (!sc)
Dan Carpenter6e17f582019-01-05 16:06:48 +0300841 return -ENOMEM;
Chuck Leverae729502017-10-20 10:48:12 -0400842
843 sc->sc_xprt = r_xprt;
844 buf->rb_sc_ctxs[i] = sc;
845 }
846
847 return 0;
Chuck Leverae729502017-10-20 10:48:12 -0400848}
849
850/* The sendctx queue is not guaranteed to have a size that is a
851 * power of two, thus the helpers in circ_buf.h cannot be used.
852 * The other option is to use modulus (%), which can be expensive.
853 */
854static unsigned long rpcrdma_sendctx_next(struct rpcrdma_buffer *buf,
855 unsigned long item)
856{
857 return likely(item < buf->rb_sc_last) ? item + 1 : 0;
858}
859
860/**
861 * rpcrdma_sendctx_get_locked - Acquire a send context
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400862 * @r_xprt: controlling transport instance
Chuck Leverae729502017-10-20 10:48:12 -0400863 *
864 * Returns pointer to a free send completion context; or NULL if
865 * the queue is empty.
866 *
867 * Usage: Called to acquire an SGE array before preparing a Send WR.
868 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400869 * The caller serializes calls to this function (per transport), and
870 * provides an effective memory barrier that flushes the new value
Chuck Leverae729502017-10-20 10:48:12 -0400871 * of rb_sc_head.
872 */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400873struct rpcrdma_sendctx *rpcrdma_sendctx_get_locked(struct rpcrdma_xprt *r_xprt)
Chuck Leverae729502017-10-20 10:48:12 -0400874{
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400875 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverae729502017-10-20 10:48:12 -0400876 struct rpcrdma_sendctx *sc;
877 unsigned long next_head;
878
879 next_head = rpcrdma_sendctx_next(buf, buf->rb_sc_head);
880
881 if (next_head == READ_ONCE(buf->rb_sc_tail))
882 goto out_emptyq;
883
884 /* ORDER: item must be accessed _before_ head is updated */
885 sc = buf->rb_sc_ctxs[next_head];
886
887 /* Releasing the lock in the caller acts as a memory
888 * barrier that flushes rb_sc_head.
889 */
890 buf->rb_sc_head = next_head;
891
892 return sc;
893
894out_emptyq:
895 /* The queue is "empty" if there have not been enough Send
896 * completions recently. This is a sign the Send Queue is
897 * backing up. Cause the caller to pause and try again.
898 */
Chuck Lever05eb06d2019-06-19 10:32:48 -0400899 xprt_wait_for_buffer_space(&r_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400900 r_xprt->rx_stats.empty_sendctx_q++;
901 return NULL;
902}
903
904/**
905 * rpcrdma_sendctx_put_locked - Release a send context
906 * @sc: send context to release
907 *
908 * Usage: Called from Send completion to return a sendctxt
909 * to the queue.
910 *
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400911 * The caller serializes calls to this function (per transport).
Chuck Leverae729502017-10-20 10:48:12 -0400912 */
Chuck Leverefd81e92018-05-04 15:35:41 -0400913static void
914rpcrdma_sendctx_put_locked(struct rpcrdma_sendctx *sc)
Chuck Leverae729502017-10-20 10:48:12 -0400915{
916 struct rpcrdma_buffer *buf = &sc->sc_xprt->rx_buf;
917 unsigned long next_tail;
918
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400919 /* Unmap SGEs of previously completed but unsignaled
Chuck Leverae729502017-10-20 10:48:12 -0400920 * Sends by walking up the queue until @sc is found.
921 */
922 next_tail = buf->rb_sc_tail;
923 do {
924 next_tail = rpcrdma_sendctx_next(buf, next_tail);
925
926 /* ORDER: item must be accessed _before_ tail is updated */
Chuck Leverdbcc53a2019-04-24 09:39:53 -0400927 rpcrdma_sendctx_unmap(buf->rb_sc_ctxs[next_tail]);
Chuck Leverae729502017-10-20 10:48:12 -0400928
929 } while (buf->rb_sc_ctxs[next_tail] != sc);
930
931 /* Paired with READ_ONCE */
932 smp_store_release(&buf->rb_sc_tail, next_tail);
Chuck Lever2fad6592018-05-04 15:35:57 -0400933
Chuck Lever05eb06d2019-06-19 10:32:48 -0400934 xprt_write_space(&sc->sc_xprt->rx_xprt);
Chuck Leverae729502017-10-20 10:48:12 -0400935}
936
Chuck Lever505bbe62016-06-29 13:52:54 -0400937static void
Chuck Lever96cedde2017-12-14 20:57:55 -0500938rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -0400939{
940 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
941 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
942 unsigned int count;
Chuck Levere2ac2362016-06-29 13:54:00 -0400943
Chuck Leverc421ece2018-10-01 14:25:20 -0400944 for (count = 0; count < ia->ri_max_segs; count++) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500945 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -0400946 int rc;
947
Chuck Lever805a1f62019-08-19 18:46:24 -0400948 mr = kzalloc(sizeof(*mr), GFP_NOFS);
Chuck Lever96cedde2017-12-14 20:57:55 -0500949 if (!mr)
Chuck Levere2ac2362016-06-29 13:54:00 -0400950 break;
951
Chuck Lever5f624122018-12-19 10:59:01 -0500952 rc = frwr_init_mr(ia, mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400953 if (rc) {
Chuck Lever96cedde2017-12-14 20:57:55 -0500954 kfree(mr);
Chuck Levere2ac2362016-06-29 13:54:00 -0400955 break;
956 }
957
Chuck Lever96cedde2017-12-14 20:57:55 -0500958 mr->mr_xprt = r_xprt;
Chuck Levere2ac2362016-06-29 13:54:00 -0400959
Chuck Lever4d6b8892019-08-19 18:47:57 -0400960 spin_lock(&buf->rb_lock);
Chuck Leverc3700782019-10-09 13:07:43 -0400961 rpcrdma_mr_push(mr, &buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -0400962 list_add(&mr->mr_all, &buf->rb_all_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -0400963 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -0400964 }
965
Chuck Levere2ac2362016-06-29 13:54:00 -0400966 r_xprt->rx_stats.mrs_allocated += count;
Chuck Lever1c443eff2017-12-20 16:31:21 -0500967 trace_xprtrdma_createmrs(r_xprt, count);
Chuck Levere2ac2362016-06-29 13:54:00 -0400968}
969
970static void
971rpcrdma_mr_refresh_worker(struct work_struct *work)
972{
973 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
Chuck Lever3b39f522019-08-19 18:45:37 -0400974 rb_refresh_worker);
Chuck Levere2ac2362016-06-29 13:54:00 -0400975 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
976 rx_buf);
977
Chuck Lever96cedde2017-12-14 20:57:55 -0500978 rpcrdma_mrs_create(r_xprt);
Chuck Lever05eb06d2019-06-19 10:32:48 -0400979 xprt_write_space(&r_xprt->rx_xprt);
Chuck Levere2ac2362016-06-29 13:54:00 -0400980}
981
Chuck Lever1769e6a2019-04-24 09:39:05 -0400982/**
Chuck Lever9d2da4f2019-10-09 13:07:48 -0400983 * rpcrdma_mrs_refresh - Wake the MR refresh worker
984 * @r_xprt: controlling transport instance
985 *
986 */
987void rpcrdma_mrs_refresh(struct rpcrdma_xprt *r_xprt)
988{
989 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
990 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
991
992 /* If there is no underlying device, it's no use to
993 * wake the refresh worker.
994 */
995 if (ep->rep_connected != -ENODEV) {
996 /* The work is scheduled on a WQ_MEM_RECLAIM
997 * workqueue in order to prevent MR allocation
998 * from recursing into NFS during direct reclaim.
999 */
1000 queue_work(xprtiod_workqueue, &buf->rb_refresh_worker);
1001 }
1002}
1003
1004/**
Chuck Lever1769e6a2019-04-24 09:39:05 -04001005 * rpcrdma_req_create - Allocate an rpcrdma_req object
1006 * @r_xprt: controlling r_xprt
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001007 * @size: initial size, in bytes, of send and receive buffers
Chuck Lever1769e6a2019-04-24 09:39:05 -04001008 * @flags: GFP flags passed to memory allocators
1009 *
1010 * Returns an allocated and fully initialized rpcrdma_req or NULL.
1011 */
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001012struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt, size_t size,
1013 gfp_t flags)
Chuck Lever13924022015-01-21 11:03:52 -05001014{
Chuck Leverf531a5d2015-10-24 17:27:43 -04001015 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever2dd4a012018-02-28 15:31:05 -05001016 struct rpcrdma_regbuf *rb;
Chuck Lever13924022015-01-21 11:03:52 -05001017 struct rpcrdma_req *req;
Chuck Leverf3c66a22019-08-19 18:40:11 -04001018 size_t maxhdrsize;
Chuck Lever13924022015-01-21 11:03:52 -05001019
Chuck Lever1769e6a2019-04-24 09:39:05 -04001020 req = kzalloc(sizeof(*req), flags);
Chuck Lever13924022015-01-21 11:03:52 -05001021 if (req == NULL)
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001022 goto out1;
Chuck Lever13924022015-01-21 11:03:52 -05001023
Chuck Leverf3c66a22019-08-19 18:40:11 -04001024 /* Compute maximum header buffer size in bytes */
1025 maxhdrsize = rpcrdma_fixed_maxsz + 3 +
1026 r_xprt->rx_ia.ri_max_segs * rpcrdma_readchunk_maxsz;
1027 maxhdrsize *= sizeof(__be32);
1028 rb = rpcrdma_regbuf_alloc(__roundup_pow_of_two(maxhdrsize),
1029 DMA_TO_DEVICE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001030 if (!rb)
1031 goto out2;
Chuck Lever2dd4a012018-02-28 15:31:05 -05001032 req->rl_rdmabuf = rb;
Chuck Lever8cec3db2019-04-24 09:39:16 -04001033 xdr_buf_init(&req->rl_hdrbuf, rdmab_data(rb), rdmab_length(rb));
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001034
Chuck Leverd2832af2019-04-24 09:39:32 -04001035 req->rl_sendbuf = rpcrdma_regbuf_alloc(size, DMA_TO_DEVICE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001036 if (!req->rl_sendbuf)
1037 goto out3;
1038
Chuck Leverd2832af2019-04-24 09:39:32 -04001039 req->rl_recvbuf = rpcrdma_regbuf_alloc(size, DMA_NONE, flags);
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001040 if (!req->rl_recvbuf)
1041 goto out4;
1042
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001043 INIT_LIST_HEAD(&req->rl_free_mrs);
Chuck Lever2dd4a012018-02-28 15:31:05 -05001044 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever92f44332018-12-19 10:59:33 -05001045 spin_lock(&buffer->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001046 list_add(&req->rl_all, &buffer->rb_allreqs);
Chuck Lever92f44332018-12-19 10:59:33 -05001047 spin_unlock(&buffer->rb_lock);
Chuck Lever13924022015-01-21 11:03:52 -05001048 return req;
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001049
1050out4:
1051 kfree(req->rl_sendbuf);
1052out3:
1053 kfree(req->rl_rdmabuf);
1054out2:
1055 kfree(req);
1056out1:
1057 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -05001058}
1059
Chuck Levera31b2f92019-10-09 13:07:27 -04001060/**
1061 * rpcrdma_reqs_reset - Reset all reqs owned by a transport
1062 * @r_xprt: controlling transport instance
1063 *
1064 * ASSUMPTION: the rb_allreqs list is stable for the duration,
1065 * and thus can be walked without holding rb_lock. Eg. the
1066 * caller is holding the transport send lock to exclude
1067 * device removal or disconnection.
1068 */
1069static void rpcrdma_reqs_reset(struct rpcrdma_xprt *r_xprt)
1070{
1071 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1072 struct rpcrdma_req *req;
1073
1074 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
1075 /* Credits are valid only for one connection */
1076 req->rl_slot.rq_cong = 0;
1077 }
1078}
1079
Chuck Lever379d1bc2019-06-19 10:33:20 -04001080static struct rpcrdma_rep *rpcrdma_rep_create(struct rpcrdma_xprt *r_xprt,
1081 bool temp)
Chuck Lever13924022015-01-21 11:03:52 -05001082{
Chuck Lever13924022015-01-21 11:03:52 -05001083 struct rpcrdma_rep *rep;
Chuck Lever13924022015-01-21 11:03:52 -05001084
Chuck Lever6b1184c2015-01-21 11:04:25 -05001085 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001086 if (rep == NULL)
1087 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001088
Chuck Lever94087e92019-04-24 09:40:20 -04001089 rep->rr_rdmabuf = rpcrdma_regbuf_alloc(r_xprt->rx_ep.rep_inline_recv,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001090 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever8cec3db2019-04-24 09:39:16 -04001091 if (!rep->rr_rdmabuf)
Chuck Lever13924022015-01-21 11:03:52 -05001092 goto out_free;
Chuck Lever379d1bc2019-06-19 10:33:20 -04001093
Chuck Lever8cec3db2019-04-24 09:39:16 -04001094 xdr_buf_init(&rep->rr_hdrbuf, rdmab_data(rep->rr_rdmabuf),
Chuck Lever96f87782017-08-03 14:30:03 -04001095 rdmab_length(rep->rr_rdmabuf));
Chuck Lever1519e962016-09-15 10:57:49 -04001096 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001097 rep->rr_rxprt = r_xprt;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001098 rep->rr_recv_wr.next = NULL;
1099 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1100 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1101 rep->rr_recv_wr.num_sge = 1;
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001102 rep->rr_temp = temp;
Chuck Lever379d1bc2019-06-19 10:33:20 -04001103 return rep;
Chuck Lever13924022015-01-21 11:03:52 -05001104
1105out_free:
1106 kfree(rep);
1107out:
Chuck Lever379d1bc2019-06-19 10:33:20 -04001108 return NULL;
Chuck Lever13924022015-01-21 11:03:52 -05001109}
1110
Chuck Leverb0b227f2019-08-19 18:48:43 -04001111static void rpcrdma_rep_destroy(struct rpcrdma_rep *rep)
1112{
1113 rpcrdma_regbuf_free(rep->rr_rdmabuf);
1114 kfree(rep);
1115}
1116
1117static struct rpcrdma_rep *rpcrdma_rep_get_locked(struct rpcrdma_buffer *buf)
1118{
1119 struct llist_node *node;
1120
1121 /* Calls to llist_del_first are required to be serialized */
1122 node = llist_del_first(&buf->rb_free_reps);
1123 if (!node)
1124 return NULL;
1125 return llist_entry(node, struct rpcrdma_rep, rr_node);
1126}
1127
1128static void rpcrdma_rep_put(struct rpcrdma_buffer *buf,
1129 struct rpcrdma_rep *rep)
1130{
1131 if (!rep->rr_temp)
1132 llist_add(&rep->rr_node, &buf->rb_free_reps);
1133 else
1134 rpcrdma_rep_destroy(rep);
1135}
1136
1137static void rpcrdma_reps_destroy(struct rpcrdma_buffer *buf)
1138{
1139 struct rpcrdma_rep *rep;
1140
1141 while ((rep = rpcrdma_rep_get_locked(buf)) != NULL)
1142 rpcrdma_rep_destroy(rep);
1143}
1144
Chuck Lever86c4ccd2019-04-24 09:40:25 -04001145/**
1146 * rpcrdma_buffer_create - Create initial set of req/rep objects
1147 * @r_xprt: transport instance to (re)initialize
1148 *
1149 * Returns zero on success, otherwise a negative errno.
1150 */
1151int rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001152{
Chuck Leverac920d02015-01-21 11:03:44 -05001153 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001154 int i, rc;
1155
Chuck Lever86c4ccd2019-04-24 09:40:25 -04001156 buf->rb_max_requests = r_xprt->rx_ep.rep_max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001157 buf->rb_bc_srv_max_requests = 0;
Chuck Lever505bbe62016-06-29 13:52:54 -04001158 spin_lock_init(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001159 INIT_LIST_HEAD(&buf->rb_mrs);
Chuck Levereed48a92019-08-19 18:42:31 -04001160 INIT_LIST_HEAD(&buf->rb_all_mrs);
Chuck Lever3b39f522019-08-19 18:45:37 -04001161 INIT_WORK(&buf->rb_refresh_worker, rpcrdma_mr_refresh_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001162
Chuck Lever1e465fd2015-10-24 17:27:02 -04001163 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001164 INIT_LIST_HEAD(&buf->rb_allreqs);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001165
1166 rc = -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001167 for (i = 0; i < buf->rb_max_requests; i++) {
1168 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001169
Chuck Leverbb93a1a2019-04-24 09:39:21 -04001170 req = rpcrdma_req_create(r_xprt, RPCRDMA_V1_DEF_INLINE_SIZE,
1171 GFP_KERNEL);
Chuck Lever1769e6a2019-04-24 09:39:05 -04001172 if (!req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001173 goto out;
Chuck Levera80d66c2017-06-08 11:52:12 -04001174 list_add(&req->rl_list, &buf->rb_send_bufs);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001175 }
1176
Chuck Leverb0b227f2019-08-19 18:48:43 -04001177 init_llist_head(&buf->rb_free_reps);
Chuck Lever13924022015-01-21 11:03:52 -05001178
Chuck Leverae729502017-10-20 10:48:12 -04001179 rc = rpcrdma_sendctxs_create(r_xprt);
1180 if (rc)
1181 goto out;
1182
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001183 return 0;
1184out:
1185 rpcrdma_buffer_destroy(buf);
1186 return rc;
1187}
1188
Chuck Lever92f44332018-12-19 10:59:33 -05001189/**
1190 * rpcrdma_req_destroy - Destroy an rpcrdma_req object
1191 * @req: unused object to be destroyed
1192 *
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001193 * Relies on caller holding the transport send lock to protect
1194 * removing req->rl_all from buf->rb_all_reqs safely.
Chuck Lever92f44332018-12-19 10:59:33 -05001195 */
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001196void rpcrdma_req_destroy(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001197{
Chuck Leverc3700782019-10-09 13:07:43 -04001198 struct rpcrdma_mr *mr;
1199
Chuck Lever92f44332018-12-19 10:59:33 -05001200 list_del(&req->rl_all);
1201
Chuck Leverc3700782019-10-09 13:07:43 -04001202 while ((mr = rpcrdma_mr_pop(&req->rl_free_mrs))) {
1203 struct rpcrdma_buffer *buf = &mr->mr_xprt->rx_buf;
1204
1205 spin_lock(&buf->rb_lock);
1206 list_del(&mr->mr_all);
1207 spin_unlock(&buf->rb_lock);
1208
1209 frwr_release_mr(mr);
1210 }
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001211
Chuck Leverd2832af2019-04-24 09:39:32 -04001212 rpcrdma_regbuf_free(req->rl_recvbuf);
1213 rpcrdma_regbuf_free(req->rl_sendbuf);
1214 rpcrdma_regbuf_free(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001215 kfree(req);
1216}
1217
Chuck Leverc3700782019-10-09 13:07:43 -04001218/**
1219 * rpcrdma_mrs_destroy - Release all of a transport's MRs
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001220 * @r_xprt: controlling transport instance
Chuck Leverc3700782019-10-09 13:07:43 -04001221 *
1222 * Relies on caller holding the transport send lock to protect
1223 * removing mr->mr_list from req->rl_free_mrs safely.
1224 */
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001225static void rpcrdma_mrs_destroy(struct rpcrdma_xprt *r_xprt)
Chuck Levere2ac2362016-06-29 13:54:00 -04001226{
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001227 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever96cedde2017-12-14 20:57:55 -05001228 struct rpcrdma_mr *mr;
Chuck Levere2ac2362016-06-29 13:54:00 -04001229
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001230 cancel_work_sync(&buf->rb_refresh_worker);
1231
Chuck Lever4d6b8892019-08-19 18:47:57 -04001232 spin_lock(&buf->rb_lock);
Chuck Levereed48a92019-08-19 18:42:31 -04001233 while ((mr = list_first_entry_or_null(&buf->rb_all_mrs,
1234 struct rpcrdma_mr,
1235 mr_all)) != NULL) {
Chuck Leverc3700782019-10-09 13:07:43 -04001236 list_del(&mr->mr_list);
Chuck Lever96cedde2017-12-14 20:57:55 -05001237 list_del(&mr->mr_all);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001238 spin_unlock(&buf->rb_lock);
Chuck Lever054f1552018-05-01 11:37:14 -04001239
Chuck Lever5f624122018-12-19 10:59:01 -05001240 frwr_release_mr(mr);
Chuck Lever9d2da4f2019-10-09 13:07:48 -04001241
Chuck Lever4d6b8892019-08-19 18:47:57 -04001242 spin_lock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001243 }
Chuck Lever4d6b8892019-08-19 18:47:57 -04001244 spin_unlock(&buf->rb_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001245}
1246
Chuck Leveraf65ed42018-12-19 11:00:37 -05001247/**
1248 * rpcrdma_buffer_destroy - Release all hw resources
1249 * @buf: root control block for resources
1250 *
Chuck Leverb8fe6772019-04-24 09:40:36 -04001251 * ORDERING: relies on a prior rpcrdma_xprt_drain :
Chuck Leveraf65ed42018-12-19 11:00:37 -05001252 * - No more Send or Receive completions can occur
1253 * - All MRs, reps, and reqs are returned to their free lists
1254 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001255void
1256rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1257{
Chuck Leverae729502017-10-20 10:48:12 -04001258 rpcrdma_sendctxs_destroy(buf);
Chuck Leverb0b227f2019-08-19 18:48:43 -04001259 rpcrdma_reps_destroy(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001260
Chuck Lever92f44332018-12-19 10:59:33 -05001261 while (!list_empty(&buf->rb_send_bufs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001262 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001263
Chuck Lever92f44332018-12-19 10:59:33 -05001264 req = list_first_entry(&buf->rb_send_bufs,
1265 struct rpcrdma_req, rl_list);
1266 list_del(&req->rl_list);
1267 rpcrdma_req_destroy(req);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001268 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001269}
1270
Chuck Lever96cedde2017-12-14 20:57:55 -05001271/**
1272 * rpcrdma_mr_get - Allocate an rpcrdma_mr object
1273 * @r_xprt: controlling transport
1274 *
1275 * Returns an initialized rpcrdma_mr or NULL if no free
1276 * rpcrdma_mr objects are available.
1277 */
1278struct rpcrdma_mr *
1279rpcrdma_mr_get(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001280{
Chuck Lever346aa662015-05-26 11:52:06 -04001281 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever265a38d2019-08-19 18:44:04 -04001282 struct rpcrdma_mr *mr;
Chuck Lever346aa662015-05-26 11:52:06 -04001283
Chuck Lever4d6b8892019-08-19 18:47:57 -04001284 spin_lock(&buf->rb_lock);
Chuck Lever265a38d2019-08-19 18:44:04 -04001285 mr = rpcrdma_mr_pop(&buf->rb_mrs);
Chuck Lever4d6b8892019-08-19 18:47:57 -04001286 spin_unlock(&buf->rb_lock);
Chuck Lever96cedde2017-12-14 20:57:55 -05001287 return mr;
Chuck Leverec12e472017-12-14 20:58:04 -05001288}
1289
Chuck Lever96cedde2017-12-14 20:57:55 -05001290/**
Chuck Lever1ca3f4c2019-08-19 18:44:50 -04001291 * rpcrdma_mr_put - DMA unmap an MR and release it
1292 * @mr: MR to release
Chuck Lever96cedde2017-12-14 20:57:55 -05001293 *
1294 */
Chuck Lever1ca3f4c2019-08-19 18:44:50 -04001295void rpcrdma_mr_put(struct rpcrdma_mr *mr)
Chuck Leverec12e472017-12-14 20:58:04 -05001296{
1297 struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
1298
Chuck Levere2f34e22018-12-19 10:58:13 -05001299 if (mr->mr_dir != DMA_NONE) {
1300 trace_xprtrdma_mr_unmap(mr);
Chuck Leverf19bd0b2019-04-24 09:40:04 -04001301 ib_dma_unmap_sg(r_xprt->rx_ia.ri_id->device,
Chuck Levere2f34e22018-12-19 10:58:13 -05001302 mr->mr_sg, mr->mr_nents, mr->mr_dir);
1303 mr->mr_dir = DMA_NONE;
1304 }
Chuck Lever1ca3f4c2019-08-19 18:44:50 -04001305
Chuck Lever6dc6ec92019-08-19 18:47:10 -04001306 rpcrdma_mr_push(mr, &mr->mr_req->rl_free_mrs);
1307}
1308
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001309/**
1310 * rpcrdma_buffer_get - Get a request buffer
1311 * @buffers: Buffer pool from which to obtain a buffer
Chuck Lever78d506e2016-09-06 11:22:49 -04001312 *
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001313 * Returns a fresh rpcrdma_req, or NULL if none are available.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001314 */
1315struct rpcrdma_req *
1316rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1317{
1318 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001319
Chuck Levera5b027e2015-10-24 17:27:27 -04001320 spin_lock(&buffers->rb_lock);
Chuck Levere68699c2018-05-04 15:35:31 -04001321 req = list_first_entry_or_null(&buffers->rb_send_bufs,
1322 struct rpcrdma_req, rl_list);
1323 if (req)
1324 list_del_init(&req->rl_list);
Chuck Levera5b027e2015-10-24 17:27:27 -04001325 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001326 return req;
1327}
1328
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001329/**
1330 * rpcrdma_buffer_put - Put request/reply buffers back into pool
Chuck Lever5828ceb2019-06-19 10:33:36 -04001331 * @buffers: buffer pool
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001332 * @req: object to return
1333 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001334 */
Chuck Lever5828ceb2019-06-19 10:33:36 -04001335void rpcrdma_buffer_put(struct rpcrdma_buffer *buffers, struct rpcrdma_req *req)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001336{
Chuck Leverb0b227f2019-08-19 18:48:43 -04001337 if (req->rl_reply)
1338 rpcrdma_rep_put(buffers, req->rl_reply);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001339 req->rl_reply = NULL;
1340
Chuck Levera5b027e2015-10-24 17:27:27 -04001341 spin_lock(&buffers->rb_lock);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001342 list_add(&req->rl_list, &buffers->rb_send_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001343 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001344}
1345
Chuck Leverb0b227f2019-08-19 18:48:43 -04001346/**
1347 * rpcrdma_recv_buffer_put - Release rpcrdma_rep back to free list
1348 * @rep: rep to release
1349 *
1350 * Used after error conditions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001351 */
Chuck Leverb0b227f2019-08-19 18:48:43 -04001352void rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001353{
Chuck Leverb0b227f2019-08-19 18:48:43 -04001354 rpcrdma_rep_put(&rep->rr_rxprt->rx_buf, rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001355}
1356
Chuck Leverd2832af2019-04-24 09:39:32 -04001357/* Returns a pointer to a rpcrdma_regbuf object, or NULL.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001358 *
1359 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001360 * receiving the payload of RDMA RECV operations. During Long Calls
Chuck Lever5f624122018-12-19 10:59:01 -05001361 * or Replies they may be registered externally via frwr_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001362 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001363static struct rpcrdma_regbuf *
1364rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction,
Chuck Lever13650c22016-09-15 10:56:26 -04001365 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001366{
1367 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001368
Chuck Lever8cec3db2019-04-24 09:39:16 -04001369 rb = kmalloc(sizeof(*rb), flags);
1370 if (!rb)
1371 return NULL;
1372 rb->rg_data = kmalloc(size, flags);
1373 if (!rb->rg_data) {
1374 kfree(rb);
1375 return NULL;
1376 }
Chuck Lever9128c3e2015-01-21 11:04:00 -05001377
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001378 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001379 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001380 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001381 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001382}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001383
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001384/**
Chuck Lever0f665ce2019-04-24 09:39:27 -04001385 * rpcrdma_regbuf_realloc - re-allocate a SEND/RECV buffer
1386 * @rb: regbuf to reallocate
1387 * @size: size of buffer to be allocated, in bytes
1388 * @flags: GFP flags
1389 *
1390 * Returns true if reallocation was successful. If false is
1391 * returned, @rb is left untouched.
1392 */
1393bool rpcrdma_regbuf_realloc(struct rpcrdma_regbuf *rb, size_t size, gfp_t flags)
1394{
1395 void *buf;
1396
1397 buf = kmalloc(size, flags);
1398 if (!buf)
1399 return false;
1400
Chuck Leverd2832af2019-04-24 09:39:32 -04001401 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever0f665ce2019-04-24 09:39:27 -04001402 kfree(rb->rg_data);
1403
1404 rb->rg_data = buf;
1405 rb->rg_iov.length = size;
1406 return true;
1407}
1408
1409/**
Chuck Leverd2832af2019-04-24 09:39:32 -04001410 * __rpcrdma_regbuf_dma_map - DMA-map a regbuf
1411 * @r_xprt: controlling transport instance
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001412 * @rb: regbuf to be mapped
Chuck Leverd2832af2019-04-24 09:39:32 -04001413 *
1414 * Returns true if the buffer is now DMA mapped to @r_xprt's device
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001415 */
Chuck Leverd2832af2019-04-24 09:39:32 -04001416bool __rpcrdma_regbuf_dma_map(struct rpcrdma_xprt *r_xprt,
1417 struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001418{
Chuck Leverf19bd0b2019-04-24 09:40:04 -04001419 struct ib_device *device = r_xprt->rx_ia.ri_id->device;
Chuck Lever91a10c52017-04-11 13:23:02 -04001420
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001421 if (rb->rg_direction == DMA_NONE)
1422 return false;
1423
Chuck Leverd2832af2019-04-24 09:39:32 -04001424 rb->rg_iov.addr = ib_dma_map_single(device, rdmab_data(rb),
1425 rdmab_length(rb), rb->rg_direction);
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001426 if (ib_dma_mapping_error(device, rdmab_addr(rb))) {
1427 trace_xprtrdma_dma_maperr(rdmab_addr(rb));
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001428 return false;
Chuck Lever53b2c1c2018-12-19 11:00:06 -05001429 }
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001430
Chuck Lever91a10c52017-04-11 13:23:02 -04001431 rb->rg_device = device;
Chuck Leverd2832af2019-04-24 09:39:32 -04001432 rb->rg_iov.lkey = r_xprt->rx_ia.ri_pd->local_dma_lkey;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001433 return true;
1434}
1435
Chuck Leverd2832af2019-04-24 09:39:32 -04001436static void rpcrdma_regbuf_dma_unmap(struct rpcrdma_regbuf *rb)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001437{
Chuck Levere89e8d8f2018-01-31 12:34:13 -05001438 if (!rb)
1439 return;
1440
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001441 if (!rpcrdma_regbuf_is_mapped(rb))
1442 return;
1443
Chuck Leverd2832af2019-04-24 09:39:32 -04001444 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb), rdmab_length(rb),
1445 rb->rg_direction);
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001446 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001447}
1448
Chuck Leverd2832af2019-04-24 09:39:32 -04001449static void rpcrdma_regbuf_free(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001450{
Chuck Leverd2832af2019-04-24 09:39:32 -04001451 rpcrdma_regbuf_dma_unmap(rb);
Chuck Lever8cec3db2019-04-24 09:39:16 -04001452 if (rb)
1453 kfree(rb->rg_data);
Chuck Levere531dca2015-08-03 13:03:20 -04001454 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001455}
1456
Chuck Lever995d3122018-12-19 11:00:32 -05001457/**
1458 * rpcrdma_ep_post - Post WRs to a transport's Send Queue
1459 * @ia: transport's device information
1460 * @ep: transport's RDMA endpoint information
1461 * @req: rpcrdma_req containing the Send WR to post
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001462 *
Chuck Lever995d3122018-12-19 11:00:32 -05001463 * Returns 0 if the post was successful, otherwise -ENOTCONN
1464 * is returned.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001465 */
1466int
1467rpcrdma_ep_post(struct rpcrdma_ia *ia,
1468 struct rpcrdma_ep *ep,
1469 struct rpcrdma_req *req)
1470{
Chuck Leverae729502017-10-20 10:48:12 -04001471 struct ib_send_wr *send_wr = &req->rl_sendctx->sc_wr;
Chuck Lever655fec62016-09-15 10:57:24 -04001472 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001473
Chuck Lever0ab11522019-06-19 10:33:15 -04001474 if (!ep->rep_send_count || kref_read(&req->rl_kref) > 1) {
Chuck Leverae729502017-10-20 10:48:12 -04001475 send_wr->send_flags |= IB_SEND_SIGNALED;
1476 ep->rep_send_count = ep->rep_send_batch;
1477 } else {
1478 send_wr->send_flags &= ~IB_SEND_SIGNALED;
1479 --ep->rep_send_count;
1480 }
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001481
Chuck Lever5f624122018-12-19 10:59:01 -05001482 rc = frwr_send(ia, req);
Chuck Leverab03eff2017-12-20 16:30:40 -05001483 trace_xprtrdma_post_send(req, rc);
1484 if (rc)
1485 return -ENOTCONN;
1486 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001487}
1488
Chuck Lever2ae50ad2019-10-09 13:07:38 -04001489/**
1490 * rpcrdma_post_recvs - Refill the Receive Queue
1491 * @r_xprt: controlling transport instance
1492 * @temp: mark Receive buffers to be deleted after use
1493 *
1494 */
1495void rpcrdma_post_recvs(struct rpcrdma_xprt *r_xprt, bool temp)
Chuck Leverf531a5d2015-10-24 17:27:43 -04001496{
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001497 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever6ceea362018-12-19 10:58:24 -05001498 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001499 struct ib_recv_wr *i, *wr, *bad_wr;
1500 struct rpcrdma_rep *rep;
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001501 int needed, count, rc;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001502
Chuck Lever61c208a2018-10-01 14:26:35 -04001503 rc = 0;
1504 count = 0;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001505
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001506 needed = buf->rb_credits + (buf->rb_bc_srv_max_requests << 1);
Chuck Lever435eba42019-08-19 18:51:49 -04001507 if (likely(ep->rep_receive_count > needed))
Chuck Lever61c208a2018-10-01 14:26:35 -04001508 goto out;
Chuck Lever6ceea362018-12-19 10:58:24 -05001509 needed -= ep->rep_receive_count;
Chuck Levere340c2d2019-02-11 11:23:54 -05001510 if (!temp)
1511 needed += RPCRDMA_MAX_RECV_BATCH;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001512
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001513 /* fast path: all needed reps can be found on the free list */
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001514 wr = NULL;
1515 while (needed) {
Chuck Leverb0b227f2019-08-19 18:48:43 -04001516 rep = rpcrdma_rep_get_locked(buf);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001517 if (!rep)
Chuck Leverb0b227f2019-08-19 18:48:43 -04001518 rep = rpcrdma_rep_create(r_xprt, temp);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001519 if (!rep)
1520 break;
1521
1522 rep->rr_recv_wr.next = wr;
1523 wr = &rep->rr_recv_wr;
1524 --needed;
1525 }
1526 if (!wr)
Chuck Lever61c208a2018-10-01 14:26:35 -04001527 goto out;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001528
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001529 for (i = wr; i; i = i->next) {
1530 rep = container_of(i, struct rpcrdma_rep, rr_recv_wr);
1531
1532 if (!rpcrdma_regbuf_dma_map(r_xprt, rep->rr_rdmabuf))
1533 goto release_wrs;
1534
Chuck Lever2dfdcd82019-08-19 18:41:44 -04001535 trace_xprtrdma_post_recv(rep);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001536 ++count;
1537 }
1538
Bart Van Assched34ac5c2018-07-18 09:25:32 -07001539 rc = ib_post_recv(r_xprt->rx_ia.ri_id->qp, wr,
1540 (const struct ib_recv_wr **)&bad_wr);
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001541out:
1542 trace_xprtrdma_post_recvs(r_xprt, count, rc);
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001543 if (rc) {
Chuck Lever2d0abe32019-06-19 10:32:38 -04001544 for (wr = bad_wr; wr;) {
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001545 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001546
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001547 rep = container_of(wr, struct rpcrdma_rep, rr_recv_wr);
Chuck Lever2d0abe32019-06-19 10:32:38 -04001548 wr = wr->next;
Chuck Lever7c8d9e72018-05-04 15:35:20 -04001549 rpcrdma_recv_buffer_put(rep);
1550 --count;
1551 }
1552 }
Chuck Lever6ceea362018-12-19 10:58:24 -05001553 ep->rep_receive_count += count;
Chuck Lever9ef33ef2019-06-19 10:33:26 -04001554 return;
1555
1556release_wrs:
1557 for (i = wr; i;) {
1558 rep = container_of(i, struct rpcrdma_rep, rr_recv_wr);
1559 i = i->next;
1560 rpcrdma_recv_buffer_put(rep);
1561 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001562}