blob: d7c16005491ec5261d99f9d20214b6476d44c662 [file] [log] [blame]
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04001/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04002 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the BSD-type
8 * license below:
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 *
17 * Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials provided
20 * with the distribution.
21 *
22 * Neither the name of the Network Appliance, Inc. nor the names of
23 * its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written
25 * permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040038 */
39
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040040/*
41 * verbs.c
42 *
43 * Encapsulates the major functions managing:
44 * o adapters
45 * o endpoints
46 * o connections
47 * o buffer memory
48 */
49
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000050#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Chuck Levereba8ff62015-01-21 11:03:02 -050052#include <linux/prefetch.h>
Chuck Lever0dd39ca2015-03-30 14:33:43 -040053#include <linux/sunrpc/addr.h>
Chuck Lever05c97462016-09-06 11:22:58 -040054#include <linux/sunrpc/svc_rdma.h>
Chuck Lever65866f82014-05-28 10:33:59 -040055#include <asm/bitops.h>
Chuck Lever56a6bd12017-04-11 13:23:34 -040056
Chuck Lever0a904872017-02-08 17:00:35 -050057#include <rdma/ib_cm.h>
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040058
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040059#include "xprt_rdma.h"
60
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040061/*
62 * Globals/Macros
63 */
64
Jeff Laytonf895b252014-11-17 16:58:04 -050065#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040066# define RPCDBG_FACILITY RPCDBG_TRANS
67#endif
68
69/*
70 * internal functions
71 */
Chuck Levera9b0e382017-04-11 13:23:26 -040072static void rpcrdma_create_mrs(struct rpcrdma_xprt *r_xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -040073static void rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf);
74static void rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040075
Chuck Leverfe97b472015-10-24 17:27:10 -040076static struct workqueue_struct *rpcrdma_receive_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040077
Chuck Leverfe97b472015-10-24 17:27:10 -040078int
79rpcrdma_alloc_wq(void)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040080{
Chuck Leverfe97b472015-10-24 17:27:10 -040081 struct workqueue_struct *recv_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040082
Chuck Leverfe97b472015-10-24 17:27:10 -040083 recv_wq = alloc_workqueue("xprtrdma_receive",
84 WQ_MEM_RECLAIM | WQ_UNBOUND | WQ_HIGHPRI,
85 0);
86 if (!recv_wq)
87 return -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040088
Chuck Leverfe97b472015-10-24 17:27:10 -040089 rpcrdma_receive_wq = recv_wq;
90 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040091}
92
Chuck Leverfe97b472015-10-24 17:27:10 -040093void
94rpcrdma_destroy_wq(void)
Chuck Leverf1a03b72014-11-08 20:14:37 -050095{
Chuck Leverfe97b472015-10-24 17:27:10 -040096 struct workqueue_struct *wq;
Chuck Leverf1a03b72014-11-08 20:14:37 -050097
Chuck Leverfe97b472015-10-24 17:27:10 -040098 if (rpcrdma_receive_wq) {
99 wq = rpcrdma_receive_wq;
100 rpcrdma_receive_wq = NULL;
101 destroy_workqueue(wq);
102 }
Chuck Leverf1a03b72014-11-08 20:14:37 -0500103}
104
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400105static void
106rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
107{
108 struct rpcrdma_ep *ep = context;
109
Chuck Lever2f6922c2016-11-29 10:53:21 -0500110 pr_err("rpcrdma: %s on device %s ep %p\n",
111 ib_event_msg(event->event), event->device->name, context);
112
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400113 if (ep->rep_connected == 1) {
114 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500115 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400116 wake_up_all(&ep->rep_connect_wait);
117 }
118}
119
Chuck Lever2fa8f882016-03-04 11:28:53 -0500120/**
121 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
122 * @cq: completion queue (ignored)
123 * @wc: completed WR
124 *
Chuck Lever4220a072015-10-24 17:26:45 -0400125 */
126static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500127rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400128{
Chuck Lever2fa8f882016-03-04 11:28:53 -0500129 /* WARNING: Only wr_cqe and status are reliable at this point */
130 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
131 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
132 ib_wc_status_msg(wc->status),
133 wc->status, wc->vendor_err);
Chuck Leverfc664482014-05-28 10:33:25 -0400134}
135
Chuck Lever23826c72016-03-04 11:28:27 -0500136/* Perform basic sanity checking to avoid using garbage
137 * to update the credit grant value.
138 */
139static void
140rpcrdma_update_granted_credits(struct rpcrdma_rep *rep)
141{
142 struct rpcrdma_msg *rmsgp = rdmab_to_msg(rep->rr_rdmabuf);
143 struct rpcrdma_buffer *buffer = &rep->rr_rxprt->rx_buf;
144 u32 credits;
145
146 if (rep->rr_len < RPCRDMA_HDRLEN_ERR)
147 return;
148
149 credits = be32_to_cpu(rmsgp->rm_credit);
150 if (credits == 0)
151 credits = 1; /* don't deadlock */
152 else if (credits > buffer->rb_max_requests)
153 credits = buffer->rb_max_requests;
154
155 atomic_set(&buffer->rb_credits, credits);
156}
157
Chuck Lever552bf222016-03-04 11:28:36 -0500158/**
Chuck Lever1519e962016-09-15 10:57:49 -0400159 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500160 * @cq: completion queue (ignored)
161 * @wc: completed WR
162 *
163 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400164static void
Chuck Lever1519e962016-09-15 10:57:49 -0400165rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400166{
Chuck Lever552bf222016-03-04 11:28:36 -0500167 struct ib_cqe *cqe = wc->wr_cqe;
168 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
169 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400170
Chuck Lever85024272015-01-21 11:02:04 -0500171 /* WARNING: Only wr_id and status are reliable at this point */
172 if (wc->status != IB_WC_SUCCESS)
173 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400174
Chuck Lever85024272015-01-21 11:02:04 -0500175 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Leverfc664482014-05-28 10:33:25 -0400176 if (wc->opcode != IB_WC_RECV)
177 return;
178
Chuck Lever85024272015-01-21 11:02:04 -0500179 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
180 __func__, rep, wc->byte_len);
181
Chuck Leverfc664482014-05-28 10:33:25 -0400182 rep->rr_len = wc->byte_len;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400183 rep->rr_wc_flags = wc->wc_flags;
184 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
185
Chuck Lever91a10c52017-04-11 13:23:02 -0400186 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500187 rdmab_addr(rep->rr_rdmabuf),
188 rep->rr_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500189
190 rpcrdma_update_granted_credits(rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400191
192out_schedule:
Chuck Leverfe97b472015-10-24 17:27:10 -0400193 queue_work(rpcrdma_receive_wq, &rep->rr_work);
Chuck Lever85024272015-01-21 11:02:04 -0500194 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400195
Chuck Lever85024272015-01-21 11:02:04 -0500196out_fail:
197 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500198 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
199 ib_wc_status_msg(wc->status),
200 wc->status, wc->vendor_err);
Chuck Leverb0e178a2015-10-24 17:26:54 -0400201 rep->rr_len = RPCRDMA_BAD_LEN;
Chuck Lever85024272015-01-21 11:02:04 -0500202 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400203}
204
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400205static void
206rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
207 struct rdma_conn_param *param)
208{
209 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
210 const struct rpcrdma_connect_private *pmsg = param->private_data;
211 unsigned int rsize, wsize;
212
Chuck Leverc8b920b2016-09-15 10:57:16 -0400213 /* Default settings for RPC-over-RDMA Version One */
214 r_xprt->rx_ia.ri_reminv_expected = false;
Chuck Leverb5f0afb2017-02-08 16:59:54 -0500215 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400216 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
217 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
218
219 if (pmsg &&
220 pmsg->cp_magic == rpcrdma_cmp_magic &&
221 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc8b920b2016-09-15 10:57:16 -0400222 r_xprt->rx_ia.ri_reminv_expected = true;
Chuck Leverc95a3c62017-02-08 17:00:02 -0500223 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400224 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
225 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
226 }
227
228 if (rsize < cdata->inline_rsize)
229 cdata->inline_rsize = rsize;
230 if (wsize < cdata->inline_wsize)
231 cdata->inline_wsize = wsize;
Chuck Lever6d6bf722016-11-29 10:53:13 -0500232 dprintk("RPC: %s: max send %u, max recv %u\n",
233 __func__, cdata->inline_wsize, cdata->inline_rsize);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400234 rpcrdma_set_max_header_sizes(r_xprt);
235}
236
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400237static int
238rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
239{
240 struct rpcrdma_xprt *xprt = id->context;
241 struct rpcrdma_ia *ia = &xprt->rx_ia;
242 struct rpcrdma_ep *ep = &xprt->rx_ep;
Jeff Laytonf895b252014-11-17 16:58:04 -0500243#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400244 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
Ingo Molnarff0db042008-11-25 16:58:42 -0800245#endif
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500246 struct ib_qp_attr *attr = &ia->ri_qp_attr;
247 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400248 int connstate = 0;
249
250 switch (event->event) {
251 case RDMA_CM_EVENT_ADDR_RESOLVED:
252 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400253 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400254 complete(&ia->ri_done);
255 break;
256 case RDMA_CM_EVENT_ADDR_ERROR:
257 ia->ri_async_rc = -EHOSTUNREACH;
258 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
259 __func__, ep);
260 complete(&ia->ri_done);
261 break;
262 case RDMA_CM_EVENT_ROUTE_ERROR:
263 ia->ri_async_rc = -ENETUNREACH;
264 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
265 __func__, ep);
266 complete(&ia->ri_done);
267 break;
Chuck Leverbebd0312017-04-11 13:23:10 -0400268 case RDMA_CM_EVENT_DEVICE_REMOVAL:
269#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
270 pr_info("rpcrdma: removing device for %pIS:%u\n",
271 sap, rpc_get_port(sap));
272#endif
273 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
274 ep->rep_connected = -ENODEV;
275 xprt_force_disconnect(&xprt->rx_xprt);
276 wait_for_completion(&ia->ri_remove_done);
277
278 ia->ri_id = NULL;
279 ia->ri_pd = NULL;
280 ia->ri_device = NULL;
281 /* Return 1 to ensure the core destroys the id. */
282 return 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400283 case RDMA_CM_EVENT_ESTABLISHED:
284 connstate = 1;
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500285 ib_query_qp(ia->ri_id->qp, attr,
286 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
287 iattr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400288 dprintk("RPC: %s: %d responder resources"
289 " (%d initiator)\n",
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500290 __func__, attr->max_dest_rd_atomic,
291 attr->max_rd_atomic);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400292 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400293 goto connected;
294 case RDMA_CM_EVENT_CONNECT_ERROR:
295 connstate = -ENOTCONN;
296 goto connected;
297 case RDMA_CM_EVENT_UNREACHABLE:
298 connstate = -ENETDOWN;
299 goto connected;
300 case RDMA_CM_EVENT_REJECTED:
Chuck Lever0a904872017-02-08 17:00:35 -0500301#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
302 pr_info("rpcrdma: connection to %pIS:%u on %s rejected: %s\n",
303 sap, rpc_get_port(sap), ia->ri_device->name,
304 rdma_reject_msg(id, event->status));
305#endif
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400306 connstate = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500307 if (event->status == IB_CM_REJ_STALE_CONN)
308 connstate = -EAGAIN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400309 goto connected;
310 case RDMA_CM_EVENT_DISCONNECTED:
311 connstate = -ECONNABORTED;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400312connected:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400313 dprintk("RPC: %s: %sconnected\n",
314 __func__, connstate > 0 ? "" : "dis");
Chuck Lever23826c72016-03-04 11:28:27 -0500315 atomic_set(&xprt->rx_buf.rb_credits, 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400316 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500317 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400318 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400319 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400320 default:
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400321 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
322 __func__, sap, rpc_get_port(sap), ep,
Sagi Grimberg76357c72015-05-18 13:40:32 +0300323 rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400324 break;
325 }
326
Jeff Laytonf895b252014-11-17 16:58:04 -0500327#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400328 if (connstate == 1) {
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500329 int ird = attr->max_dest_rd_atomic;
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400330 int tird = ep->rep_remote_cma.responder_resources;
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400331
Chuck Levera0ce85f2015-03-30 14:34:21 -0400332 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400333 sap, rpc_get_port(sap),
Chuck Lever89e0d1122015-05-26 11:51:56 -0400334 ia->ri_device->name,
Chuck Levera0ce85f2015-03-30 14:34:21 -0400335 ia->ri_ops->ro_displayname,
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400336 xprt->rx_buf.rb_max_requests,
337 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
338 } else if (connstate < 0) {
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400339 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
340 sap, rpc_get_port(sap), connstate);
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400341 }
342#endif
343
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400344 return 0;
345}
346
347static struct rdma_cm_id *
348rpcrdma_create_id(struct rpcrdma_xprt *xprt,
349 struct rpcrdma_ia *ia, struct sockaddr *addr)
350{
Chuck Lever109b88a2016-11-29 10:52:40 -0500351 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400352 struct rdma_cm_id *id;
353 int rc;
354
Tom Talpey1a954052008-10-09 15:01:31 -0400355 init_completion(&ia->ri_done);
Chuck Leverbebd0312017-04-11 13:23:10 -0400356 init_completion(&ia->ri_remove_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400357
Guy Shapirofa201052015-10-22 15:20:10 +0300358 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
359 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400360 if (IS_ERR(id)) {
361 rc = PTR_ERR(id);
362 dprintk("RPC: %s: rdma_create_id() failed %i\n",
363 __func__, rc);
364 return id;
365 }
366
Tom Talpey5675add2008-10-09 15:01:41 -0400367 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400368 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
369 if (rc) {
370 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
371 __func__, rc);
372 goto out;
373 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500374 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
375 if (rc < 0) {
376 dprintk("RPC: %s: wait() exited: %i\n",
377 __func__, rc);
378 goto out;
379 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400380
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400381 rc = ia->ri_async_rc;
382 if (rc)
383 goto out;
384
Tom Talpey5675add2008-10-09 15:01:41 -0400385 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400386 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
387 if (rc) {
388 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
389 __func__, rc);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400390 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400391 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500392 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
393 if (rc < 0) {
394 dprintk("RPC: %s: wait() exited: %i\n",
395 __func__, rc);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400396 goto out;
Chuck Lever109b88a2016-11-29 10:52:40 -0500397 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400398 rc = ia->ri_async_rc;
399 if (rc)
Chuck Lever56a6bd12017-04-11 13:23:34 -0400400 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400401
402 return id;
Chuck Lever56a6bd12017-04-11 13:23:34 -0400403
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400404out:
405 rdma_destroy_id(id);
406 return ERR_PTR(rc);
407}
408
409/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400410 * Exported functions.
411 */
412
Chuck Leverfff09592017-04-11 13:22:54 -0400413/**
414 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
415 * @xprt: controlling transport
416 * @addr: IP address of remote peer
417 *
418 * Returns 0 on success, negative errno if an appropriate
419 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400420 */
421int
Chuck Leverfff09592017-04-11 13:22:54 -0400422rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400423{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400424 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400425 int rc;
426
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400427 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
428 if (IS_ERR(ia->ri_id)) {
429 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400430 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400431 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400432 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400433
Christoph Hellwiged082d32016-09-05 12:56:17 +0200434 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400435 if (IS_ERR(ia->ri_pd)) {
436 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400437 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400438 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400439 }
440
Chuck Leverfff09592017-04-11 13:22:54 -0400441 switch (xprt_rdma_memreg_strategy) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400442 case RPCRDMA_FRMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400443 if (frwr_is_supported(ia)) {
444 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
445 break;
446 }
447 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400448 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400449 if (fmr_is_supported(ia)) {
450 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
451 break;
452 }
453 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400454 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400455 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
456 ia->ri_device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400457 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400458 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400459 }
460
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400461 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500462
Chuck Leverfff09592017-04-11 13:22:54 -0400463out_err:
464 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400465 return rc;
466}
467
Chuck Leverfff09592017-04-11 13:22:54 -0400468/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400469 * rpcrdma_ia_remove - Handle device driver unload
470 * @ia: interface adapter being removed
471 *
472 * Divest transport H/W resources associated with this adapter,
473 * but allow it to be restored later.
474 */
475void
476rpcrdma_ia_remove(struct rpcrdma_ia *ia)
477{
478 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
479 rx_ia);
480 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
481 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
482 struct rpcrdma_req *req;
483 struct rpcrdma_rep *rep;
484
485 cancel_delayed_work_sync(&buf->rb_refresh_worker);
486
487 /* This is similar to rpcrdma_ep_destroy, but:
488 * - Don't cancel the connect worker.
489 * - Don't call rpcrdma_ep_disconnect, which waits
490 * for another conn upcall, which will deadlock.
491 * - rdma_disconnect is unneeded, the underlying
492 * connection is already gone.
493 */
494 if (ia->ri_id->qp) {
495 ib_drain_qp(ia->ri_id->qp);
496 rdma_destroy_qp(ia->ri_id);
497 ia->ri_id->qp = NULL;
498 }
499 ib_free_cq(ep->rep_attr.recv_cq);
500 ib_free_cq(ep->rep_attr.send_cq);
501
502 /* The ULP is responsible for ensuring all DMA
503 * mappings and MRs are gone.
504 */
505 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
506 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
507 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
508 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
509 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
510 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
511 }
512 rpcrdma_destroy_mrs(buf);
513
514 /* Allow waiters to continue */
515 complete(&ia->ri_remove_done);
516}
517
518/**
Chuck Leverfff09592017-04-11 13:22:54 -0400519 * rpcrdma_ia_close - Clean up/close an IA.
520 * @ia: interface adapter to close
521 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400522 */
523void
524rpcrdma_ia_close(struct rpcrdma_ia *ia)
525{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400526 dprintk("RPC: %s: entering\n", __func__);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400527 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
528 if (ia->ri_id->qp)
529 rdma_destroy_qp(ia->ri_id);
Chuck Lever56a6bd12017-04-11 13:23:34 -0400530 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400531 }
Chuck Leverfff09592017-04-11 13:22:54 -0400532 ia->ri_id = NULL;
533 ia->ri_device = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400534
535 /* If the pd is still busy, xprtrdma missed freeing a resource */
536 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600537 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400538 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400539}
540
541/*
542 * Create unconnected endpoint.
543 */
544int
545rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
Chuck Lever16f906d2017-02-08 17:00:10 -0500546 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400547{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400548 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Lever16f906d2017-02-08 17:00:10 -0500549 unsigned int max_qp_wr, max_sge;
Chuck Leverfc664482014-05-28 10:33:25 -0400550 struct ib_cq *sendcq, *recvcq;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500551 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400552
Chuck Levereed50872017-03-11 15:52:47 -0500553 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
554 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500555 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
556 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400557 return -ENOMEM;
558 }
Chuck Lever16f906d2017-02-08 17:00:10 -0500559 ia->ri_max_send_sges = max_sge - RPCRDMA_MIN_SEND_SGES;
Chuck Leverb3221d62015-08-03 13:03:39 -0400560
Or Gerlitze3e45b12015-12-18 10:59:48 +0200561 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400562 dprintk("RPC: %s: insufficient wqe's available\n",
563 __func__);
564 return -ENOMEM;
565 }
Chuck Lever550d7502016-05-02 14:41:47 -0400566 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
Chuck Lever124fa172015-10-24 17:27:51 -0400567
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400568 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400569 if (cdata->max_requests > max_qp_wr)
570 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400571
572 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
573 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400574 ep->rep_attr.srq = NULL;
575 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400576 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400577 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
Chuck Lever3968cb52015-03-30 14:35:26 -0400578 rc = ia->ri_ops->ro_open(ia, ep, cdata);
579 if (rc)
580 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400581 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400582 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400583 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
Chuck Lever16f906d2017-02-08 17:00:10 -0500584 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400585 ep->rep_attr.cap.max_recv_sge = 1;
586 ep->rep_attr.cap.max_inline_data = 0;
587 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
588 ep->rep_attr.qp_type = IB_QPT_RC;
589 ep->rep_attr.port_num = ~0;
590
591 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
592 "iovs: send %d recv %d\n",
593 __func__,
594 ep->rep_attr.cap.max_send_wr,
595 ep->rep_attr.cap.max_recv_wr,
596 ep->rep_attr.cap.max_send_sge,
597 ep->rep_attr.cap.max_recv_sge);
598
599 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400600 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Lever26ae9d12015-12-16 17:23:20 -0500601 if (ep->rep_cqinit <= 2)
602 ep->rep_cqinit = 0; /* always signal? */
Chuck Lever8d38de62016-11-29 10:52:16 -0500603 rpcrdma_init_cqcount(ep, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400604 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400605 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400606
Chuck Lever2fa8f882016-03-04 11:28:53 -0500607 sendcq = ib_alloc_cq(ia->ri_device, NULL,
608 ep->rep_attr.cap.max_send_wr + 1,
609 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400610 if (IS_ERR(sendcq)) {
611 rc = PTR_ERR(sendcq);
612 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400613 __func__, rc);
614 goto out1;
615 }
616
Chuck Lever552bf222016-03-04 11:28:36 -0500617 recvcq = ib_alloc_cq(ia->ri_device, NULL,
618 ep->rep_attr.cap.max_recv_wr + 1,
619 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400620 if (IS_ERR(recvcq)) {
621 rc = PTR_ERR(recvcq);
622 dprintk("RPC: %s: failed to create recv CQ: %i\n",
623 __func__, rc);
624 goto out2;
625 }
626
Chuck Leverfc664482014-05-28 10:33:25 -0400627 ep->rep_attr.send_cq = sendcq;
628 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400629
630 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400631 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400632
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400633 /* Prepare RDMA-CM private message */
634 pmsg->cp_magic = rpcrdma_cmp_magic;
635 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400636 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400637 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
638 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
639 ep->rep_remote_cma.private_data = pmsg;
640 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400641
642 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400643 ep->rep_remote_cma.initiator_depth = 0;
Or Gerlitze3e45b12015-12-18 10:59:48 +0200644 if (ia->ri_device->attrs.max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400645 ep->rep_remote_cma.responder_resources = 32;
646 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500647 ep->rep_remote_cma.responder_resources =
Or Gerlitze3e45b12015-12-18 10:59:48 +0200648 ia->ri_device->attrs.max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400649
Chuck Leverb2dde942016-05-02 14:43:03 -0400650 /* Limit transport retries so client can detect server
651 * GID changes quickly. RPC layer handles re-establishing
652 * transport connection and retransmission.
653 */
654 ep->rep_remote_cma.retry_count = 6;
655
656 /* RPC-over-RDMA handles its own flow control. In addition,
657 * make all RNR NAKs visible so we know that RPC-over-RDMA
658 * flow control is working correctly (no NAKs should be seen).
659 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400660 ep->rep_remote_cma.flow_control = 0;
661 ep->rep_remote_cma.rnr_retry_count = 0;
662
663 return 0;
664
665out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500666 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400667out1:
668 return rc;
669}
670
671/*
672 * rpcrdma_ep_destroy
673 *
674 * Disconnect and destroy endpoint. After this, the only
675 * valid operations on the ep are to free it (if dynamically
676 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400677 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400678void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400679rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
680{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400681 dprintk("RPC: %s: entering, connected is %d\n",
682 __func__, ep->rep_connected);
683
Chuck Lever254f91e2014-05-28 10:32:17 -0400684 cancel_delayed_work_sync(&ep->rep_connect_worker);
685
Steve Wise72c02172015-09-21 12:24:23 -0500686 if (ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400687 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400688 rdma_destroy_qp(ia->ri_id);
689 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400690 }
691
Chuck Lever552bf222016-03-04 11:28:36 -0500692 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500693 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400694}
695
Chuck Levera9b0e382017-04-11 13:23:26 -0400696/* Re-establish a connection after a device removal event.
697 * Unlike a normal reconnection, a fresh PD and a new set
698 * of MRs and buffers is needed.
699 */
700static int
701rpcrdma_ep_recreate_xprt(struct rpcrdma_xprt *r_xprt,
702 struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
703{
704 struct sockaddr *sap = (struct sockaddr *)&r_xprt->rx_data.addr;
705 int rc, err;
706
707 pr_info("%s: r_xprt = %p\n", __func__, r_xprt);
708
709 rc = -EHOSTUNREACH;
710 if (rpcrdma_ia_open(r_xprt, sap))
711 goto out1;
712
713 rc = -ENOMEM;
714 err = rpcrdma_ep_create(ep, ia, &r_xprt->rx_data);
715 if (err) {
716 pr_err("rpcrdma: rpcrdma_ep_create returned %d\n", err);
717 goto out2;
718 }
719
720 rc = -ENETUNREACH;
721 err = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
722 if (err) {
723 pr_err("rpcrdma: rdma_create_qp returned %d\n", err);
724 goto out3;
725 }
726
727 rpcrdma_create_mrs(r_xprt);
728 return 0;
729
730out3:
731 rpcrdma_ep_destroy(ep, ia);
732out2:
733 rpcrdma_ia_close(ia);
734out1:
735 return rc;
736}
737
Chuck Lever18908962017-04-11 13:23:18 -0400738static int
739rpcrdma_ep_reconnect(struct rpcrdma_xprt *r_xprt, struct rpcrdma_ep *ep,
740 struct rpcrdma_ia *ia)
741{
742 struct sockaddr *sap = (struct sockaddr *)&r_xprt->rx_data.addr;
743 struct rdma_cm_id *id, *old;
744 int err, rc;
745
746 dprintk("RPC: %s: reconnecting...\n", __func__);
747
748 rpcrdma_ep_disconnect(ep, ia);
749
750 rc = -EHOSTUNREACH;
751 id = rpcrdma_create_id(r_xprt, ia, sap);
752 if (IS_ERR(id))
753 goto out;
754
755 /* As long as the new ID points to the same device as the
756 * old ID, we can reuse the transport's existing PD and all
757 * previously allocated MRs. Also, the same device means
758 * the transport's previous DMA mappings are still valid.
759 *
760 * This is a sanity check only. There should be no way these
761 * point to two different devices here.
762 */
763 old = id;
764 rc = -ENETUNREACH;
765 if (ia->ri_device != id->device) {
766 pr_err("rpcrdma: can't reconnect on different device!\n");
767 goto out_destroy;
768 }
769
770 err = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
771 if (err) {
772 dprintk("RPC: %s: rdma_create_qp returned %d\n",
773 __func__, err);
774 goto out_destroy;
775 }
776
777 /* Atomically replace the transport's ID and QP. */
778 rc = 0;
779 old = ia->ri_id;
780 ia->ri_id = id;
781 rdma_destroy_qp(old);
782
783out_destroy:
Chuck Lever56a6bd12017-04-11 13:23:34 -0400784 rdma_destroy_id(old);
Chuck Lever18908962017-04-11 13:23:18 -0400785out:
786 return rc;
787}
788
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400789/*
790 * Connect unconnected endpoint.
791 */
792int
793rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
794{
Chuck Lever0a904872017-02-08 17:00:35 -0500795 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
796 rx_ia);
Chuck Lever0a904872017-02-08 17:00:35 -0500797 unsigned int extras;
Chuck Lever18908962017-04-11 13:23:18 -0400798 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400799
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400800retry:
Chuck Lever18908962017-04-11 13:23:18 -0400801 switch (ep->rep_connected) {
802 case 0:
Chuck Leverec62f402014-05-28 10:34:07 -0400803 dprintk("RPC: %s: connecting...\n", __func__);
804 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
805 if (rc) {
806 dprintk("RPC: %s: rdma_create_qp failed %i\n",
807 __func__, rc);
Chuck Lever18908962017-04-11 13:23:18 -0400808 rc = -ENETUNREACH;
809 goto out_noupdate;
Chuck Leverec62f402014-05-28 10:34:07 -0400810 }
Chuck Lever18908962017-04-11 13:23:18 -0400811 break;
Chuck Levera9b0e382017-04-11 13:23:26 -0400812 case -ENODEV:
813 rc = rpcrdma_ep_recreate_xprt(r_xprt, ep, ia);
814 if (rc)
815 goto out_noupdate;
816 break;
Chuck Lever18908962017-04-11 13:23:18 -0400817 default:
818 rc = rpcrdma_ep_reconnect(r_xprt, ep, ia);
819 if (rc)
820 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400821 }
822
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400823 ep->rep_connected = 0;
824
825 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
826 if (rc) {
827 dprintk("RPC: %s: rdma_connect() failed with %i\n",
828 __func__, rc);
829 goto out;
830 }
831
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400832 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400833 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500834 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400835 goto retry;
836 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500837 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400838 }
839
Chuck Lever0a904872017-02-08 17:00:35 -0500840 dprintk("RPC: %s: connected\n", __func__);
841 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
842 if (extras)
843 rpcrdma_ep_post_extra_recv(r_xprt, extras);
844
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400845out:
846 if (rc)
847 ep->rep_connected = rc;
Chuck Lever18908962017-04-11 13:23:18 -0400848
849out_noupdate:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400850 return rc;
851}
852
853/*
854 * rpcrdma_ep_disconnect
855 *
856 * This is separate from destroy to facilitate the ability
857 * to reconnect without recreating the endpoint.
858 *
859 * This call is not reentrant, and must not be made in parallel
860 * on the same endpoint.
861 */
Chuck Lever282191c2014-07-29 17:25:55 -0400862void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400863rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
864{
865 int rc;
866
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400867 rc = rdma_disconnect(ia->ri_id);
868 if (!rc) {
869 /* returns without wait if not connected */
870 wait_event_interruptible(ep->rep_connect_wait,
871 ep->rep_connected != 1);
872 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
873 (ep->rep_connected == 1) ? "still " : "dis");
874 } else {
875 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
876 ep->rep_connected = rc;
877 }
Chuck Lever550d7502016-05-02 14:41:47 -0400878
879 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400880}
881
Chuck Lever505bbe62016-06-29 13:52:54 -0400882static void
883rpcrdma_mr_recovery_worker(struct work_struct *work)
884{
885 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
886 rb_recovery_worker.work);
887 struct rpcrdma_mw *mw;
888
889 spin_lock(&buf->rb_recovery_lock);
890 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever9a5c63e2017-02-08 17:00:43 -0500891 mw = rpcrdma_pop_mw(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400892 spin_unlock(&buf->rb_recovery_lock);
893
894 dprintk("RPC: %s: recovering MR %p\n", __func__, mw);
895 mw->mw_xprt->rx_ia.ri_ops->ro_recover_mr(mw);
896
897 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +0800898 }
Chuck Lever505bbe62016-06-29 13:52:54 -0400899 spin_unlock(&buf->rb_recovery_lock);
900}
901
902void
903rpcrdma_defer_mr_recovery(struct rpcrdma_mw *mw)
904{
905 struct rpcrdma_xprt *r_xprt = mw->mw_xprt;
906 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
907
908 spin_lock(&buf->rb_recovery_lock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -0500909 rpcrdma_push_mw(mw, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400910 spin_unlock(&buf->rb_recovery_lock);
911
912 schedule_delayed_work(&buf->rb_recovery_worker, 0);
913}
914
Chuck Levere2ac2362016-06-29 13:54:00 -0400915static void
916rpcrdma_create_mrs(struct rpcrdma_xprt *r_xprt)
917{
918 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
919 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
920 unsigned int count;
921 LIST_HEAD(free);
922 LIST_HEAD(all);
923
924 for (count = 0; count < 32; count++) {
925 struct rpcrdma_mw *mw;
926 int rc;
927
928 mw = kzalloc(sizeof(*mw), GFP_KERNEL);
929 if (!mw)
930 break;
931
932 rc = ia->ri_ops->ro_init_mr(ia, mw);
933 if (rc) {
934 kfree(mw);
935 break;
936 }
937
938 mw->mw_xprt = r_xprt;
939
940 list_add(&mw->mw_list, &free);
941 list_add(&mw->mw_all, &all);
942 }
943
944 spin_lock(&buf->rb_mwlock);
945 list_splice(&free, &buf->rb_mws);
946 list_splice(&all, &buf->rb_all);
947 r_xprt->rx_stats.mrs_allocated += count;
948 spin_unlock(&buf->rb_mwlock);
949
950 dprintk("RPC: %s: created %u MRs\n", __func__, count);
951}
952
953static void
954rpcrdma_mr_refresh_worker(struct work_struct *work)
955{
956 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
957 rb_refresh_worker.work);
958 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
959 rx_buf);
960
961 rpcrdma_create_mrs(r_xprt);
962}
963
Chuck Leverf531a5d2015-10-24 17:27:43 -0400964struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -0500965rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
966{
Chuck Leverf531a5d2015-10-24 17:27:43 -0400967 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500968 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500969
Chuck Lever85275c82015-01-21 11:04:16 -0500970 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500971 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -0500972 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -0500973
Chuck Leverf531a5d2015-10-24 17:27:43 -0400974 INIT_LIST_HEAD(&req->rl_free);
975 spin_lock(&buffer->rb_reqslock);
976 list_add(&req->rl_all, &buffer->rb_allreqs);
977 spin_unlock(&buffer->rb_reqslock);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500978 req->rl_cqe.done = rpcrdma_wc_send;
Chuck Lever13924022015-01-21 11:03:52 -0500979 req->rl_buffer = &r_xprt->rx_buf;
Chuck Lever9d6b0402016-06-29 13:54:16 -0400980 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever90aab602016-09-15 10:56:43 -0400981 req->rl_send_wr.next = NULL;
982 req->rl_send_wr.wr_cqe = &req->rl_cqe;
Chuck Lever655fec62016-09-15 10:57:24 -0400983 req->rl_send_wr.sg_list = req->rl_send_sge;
Chuck Lever90aab602016-09-15 10:56:43 -0400984 req->rl_send_wr.opcode = IB_WR_SEND;
Chuck Lever13924022015-01-21 11:03:52 -0500985 return req;
Chuck Lever13924022015-01-21 11:03:52 -0500986}
987
Chuck Leverf531a5d2015-10-24 17:27:43 -0400988struct rpcrdma_rep *
Chuck Lever13924022015-01-21 11:03:52 -0500989rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
990{
991 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -0500992 struct rpcrdma_rep *rep;
993 int rc;
994
995 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500996 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500997 if (rep == NULL)
998 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500999
Chuck Lever13650c22016-09-15 10:56:26 -04001000 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -04001001 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -05001002 if (IS_ERR(rep->rr_rdmabuf)) {
1003 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001004 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001005 }
Chuck Lever13924022015-01-21 11:03:52 -05001006
Chuck Lever1519e962016-09-15 10:57:49 -04001007 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -04001008 rep->rr_rxprt = r_xprt;
Chuck Lever496b77a2016-09-15 10:57:57 -04001009 INIT_WORK(&rep->rr_work, rpcrdma_reply_handler);
Chuck Lever6ea8e712016-09-15 10:56:51 -04001010 rep->rr_recv_wr.next = NULL;
1011 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
1012 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
1013 rep->rr_recv_wr.num_sge = 1;
Chuck Lever13924022015-01-21 11:03:52 -05001014 return rep;
1015
1016out_free:
1017 kfree(rep);
1018out:
1019 return ERR_PTR(rc);
1020}
1021
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001022int
Chuck Leverac920d02015-01-21 11:03:44 -05001023rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001024{
Chuck Leverac920d02015-01-21 11:03:44 -05001025 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001026 int i, rc;
1027
Chuck Lever1e465fd2015-10-24 17:27:02 -04001028 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001029 buf->rb_bc_srv_max_requests = 0;
Chuck Lever23826c72016-03-04 11:28:27 -05001030 atomic_set(&buf->rb_credits, 1);
Chuck Levere2ac2362016-06-29 13:54:00 -04001031 spin_lock_init(&buf->rb_mwlock);
Chuck Lever505bbe62016-06-29 13:52:54 -04001032 spin_lock_init(&buf->rb_lock);
1033 spin_lock_init(&buf->rb_recovery_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -04001034 INIT_LIST_HEAD(&buf->rb_mws);
1035 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -04001036 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -04001037 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
1038 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001039 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
1040 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001041
Chuck Levere2ac2362016-06-29 13:54:00 -04001042 rpcrdma_create_mrs(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001043
Chuck Lever1e465fd2015-10-24 17:27:02 -04001044 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001045 INIT_LIST_HEAD(&buf->rb_allreqs);
1046 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001047 for (i = 0; i < buf->rb_max_requests; i++) {
1048 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001049
Chuck Lever13924022015-01-21 11:03:52 -05001050 req = rpcrdma_create_req(r_xprt);
1051 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001052 dprintk("RPC: %s: request buffer %d alloc"
1053 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001054 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001055 goto out;
1056 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001057 req->rl_backchannel = false;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001058 list_add(&req->rl_free, &buf->rb_send_bufs);
1059 }
1060
1061 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001062 for (i = 0; i < buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS; i++) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001063 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001064
Chuck Lever13924022015-01-21 11:03:52 -05001065 rep = rpcrdma_create_rep(r_xprt);
1066 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001067 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1068 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001069 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001070 goto out;
1071 }
Chuck Lever1e465fd2015-10-24 17:27:02 -04001072 list_add(&rep->rr_list, &buf->rb_recv_bufs);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001073 }
Chuck Lever13924022015-01-21 11:03:52 -05001074
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001075 return 0;
1076out:
1077 rpcrdma_buffer_destroy(buf);
1078 return rc;
1079}
1080
Chuck Lever1e465fd2015-10-24 17:27:02 -04001081static struct rpcrdma_req *
1082rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
1083{
1084 struct rpcrdma_req *req;
1085
1086 req = list_first_entry(&buf->rb_send_bufs,
1087 struct rpcrdma_req, rl_free);
1088 list_del(&req->rl_free);
1089 return req;
1090}
1091
1092static struct rpcrdma_rep *
1093rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1094{
1095 struct rpcrdma_rep *rep;
1096
1097 rep = list_first_entry(&buf->rb_recv_bufs,
1098 struct rpcrdma_rep, rr_list);
1099 list_del(&rep->rr_list);
1100 return rep;
1101}
1102
Chuck Lever2e845222014-07-29 17:25:38 -04001103static void
Chuck Lever13650c22016-09-15 10:56:26 -04001104rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001105{
Chuck Lever13650c22016-09-15 10:56:26 -04001106 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001107 kfree(rep);
1108}
1109
Chuck Leverf531a5d2015-10-24 17:27:43 -04001110void
Chuck Lever13650c22016-09-15 10:56:26 -04001111rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001112{
Chuck Lever13650c22016-09-15 10:56:26 -04001113 rpcrdma_free_regbuf(req->rl_recvbuf);
1114 rpcrdma_free_regbuf(req->rl_sendbuf);
1115 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001116 kfree(req);
1117}
1118
Chuck Levere2ac2362016-06-29 13:54:00 -04001119static void
1120rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf)
1121{
1122 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1123 rx_buf);
1124 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
1125 struct rpcrdma_mw *mw;
1126 unsigned int count;
1127
1128 count = 0;
1129 spin_lock(&buf->rb_mwlock);
1130 while (!list_empty(&buf->rb_all)) {
1131 mw = list_entry(buf->rb_all.next, struct rpcrdma_mw, mw_all);
1132 list_del(&mw->mw_all);
1133
1134 spin_unlock(&buf->rb_mwlock);
1135 ia->ri_ops->ro_release_mr(mw);
1136 count++;
1137 spin_lock(&buf->rb_mwlock);
1138 }
1139 spin_unlock(&buf->rb_mwlock);
1140 r_xprt->rx_stats.mrs_allocated = 0;
1141
1142 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1143}
1144
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001145void
1146rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1147{
Chuck Lever505bbe62016-06-29 13:52:54 -04001148 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001149 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001150
Chuck Lever1e465fd2015-10-24 17:27:02 -04001151 while (!list_empty(&buf->rb_recv_bufs)) {
1152 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001153
Chuck Lever1e465fd2015-10-24 17:27:02 -04001154 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001155 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001156 }
Chuck Lever05c97462016-09-06 11:22:58 -04001157 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001158
Chuck Leverf531a5d2015-10-24 17:27:43 -04001159 spin_lock(&buf->rb_reqslock);
1160 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001161 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001162
Chuck Leverf531a5d2015-10-24 17:27:43 -04001163 req = list_first_entry(&buf->rb_allreqs,
1164 struct rpcrdma_req, rl_all);
1165 list_del(&req->rl_all);
1166
1167 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001168 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001169 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001170 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001171 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001172 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001173
Chuck Levere2ac2362016-06-29 13:54:00 -04001174 rpcrdma_destroy_mrs(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001175}
1176
Chuck Lever346aa662015-05-26 11:52:06 -04001177struct rpcrdma_mw *
1178rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001179{
Chuck Lever346aa662015-05-26 11:52:06 -04001180 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1181 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001182
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001183 spin_lock(&buf->rb_mwlock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001184 if (!list_empty(&buf->rb_mws))
1185 mw = rpcrdma_pop_mw(&buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001186 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001187
1188 if (!mw)
Chuck Levere2ac2362016-06-29 13:54:00 -04001189 goto out_nomws;
Chuck Lever346aa662015-05-26 11:52:06 -04001190 return mw;
Chuck Levere2ac2362016-06-29 13:54:00 -04001191
1192out_nomws:
1193 dprintk("RPC: %s: no MWs available\n", __func__);
Chuck Leverbebd0312017-04-11 13:23:10 -04001194 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1195 schedule_delayed_work(&buf->rb_refresh_worker, 0);
Chuck Levere2ac2362016-06-29 13:54:00 -04001196
1197 /* Allow the reply handler and refresh worker to run */
1198 cond_resched();
1199
1200 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001201}
1202
Chuck Lever346aa662015-05-26 11:52:06 -04001203void
1204rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -04001205{
Chuck Lever346aa662015-05-26 11:52:06 -04001206 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -04001207
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001208 spin_lock(&buf->rb_mwlock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001209 rpcrdma_push_mw(mw, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001210 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -04001211}
1212
Chuck Lever05c97462016-09-06 11:22:58 -04001213static struct rpcrdma_rep *
1214rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1215{
1216 /* If an RPC previously completed without a reply (say, a
1217 * credential problem or a soft timeout occurs) then hold off
1218 * on supplying more Receive buffers until the number of new
1219 * pending RPCs catches up to the number of posted Receives.
1220 */
1221 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1222 return NULL;
1223
1224 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1225 return NULL;
1226 buffers->rb_recv_count++;
1227 return rpcrdma_buffer_get_rep_locked(buffers);
1228}
1229
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001230/*
1231 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001232 *
1233 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001234 */
1235struct rpcrdma_req *
1236rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1237{
1238 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001239
Chuck Levera5b027e2015-10-24 17:27:27 -04001240 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001241 if (list_empty(&buffers->rb_send_bufs))
1242 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001243 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001244 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001245 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001246 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001247 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001248
Chuck Lever1e465fd2015-10-24 17:27:02 -04001249out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001250 spin_unlock(&buffers->rb_lock);
Chuck Lever78d506e2016-09-06 11:22:49 -04001251 pr_warn("RPC: %s: out of request buffers\n", __func__);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001252 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001253}
1254
1255/*
1256 * Put request/reply buffers back into pool.
1257 * Pre-decrement counter/array index.
1258 */
1259void
1260rpcrdma_buffer_put(struct rpcrdma_req *req)
1261{
1262 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001263 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001264
Chuck Lever90aab602016-09-15 10:56:43 -04001265 req->rl_send_wr.num_sge = 0;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001266 req->rl_reply = NULL;
1267
Chuck Levera5b027e2015-10-24 17:27:27 -04001268 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001269 buffers->rb_send_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001270 list_add_tail(&req->rl_free, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001271 if (rep) {
1272 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001273 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001274 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001275 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001276}
1277
1278/*
1279 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001280 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001281 */
1282void
1283rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1284{
1285 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001286
Chuck Levera5b027e2015-10-24 17:27:27 -04001287 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001288 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001289 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001290}
1291
1292/*
1293 * Put reply buffers back into pool when not attached to
1294 * request. This happens in error conditions.
1295 */
1296void
1297rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1298{
Chuck Leverfed171b2015-05-26 11:51:37 -04001299 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001300
Chuck Levera5b027e2015-10-24 17:27:27 -04001301 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001302 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001303 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001304 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001305}
1306
Chuck Lever9128c3e2015-01-21 11:04:00 -05001307/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001308 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001309 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001310 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001311 * @flags: GFP flags
1312 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001313 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1314 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001315 *
1316 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001317 * receiving the payload of RDMA RECV operations. During Long Calls
1318 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001319 */
1320struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001321rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1322 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001323{
1324 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001325
Chuck Lever9128c3e2015-01-21 11:04:00 -05001326 rb = kmalloc(sizeof(*rb) + size, flags);
1327 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001328 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001329
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001330 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001331 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001332 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001333
1334 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001335}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001336
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001337/**
1338 * __rpcrdma_map_regbuf - DMA-map a regbuf
1339 * @ia: controlling rpcrdma_ia
1340 * @rb: regbuf to be mapped
1341 */
1342bool
1343__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1344{
Chuck Lever91a10c52017-04-11 13:23:02 -04001345 struct ib_device *device = ia->ri_device;
1346
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001347 if (rb->rg_direction == DMA_NONE)
1348 return false;
1349
Chuck Lever91a10c52017-04-11 13:23:02 -04001350 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001351 (void *)rb->rg_base,
1352 rdmab_length(rb),
1353 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001354 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001355 return false;
1356
Chuck Lever91a10c52017-04-11 13:23:02 -04001357 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001358 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1359 return true;
1360}
1361
1362static void
1363rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1364{
1365 if (!rpcrdma_regbuf_is_mapped(rb))
1366 return;
1367
1368 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1369 rdmab_length(rb), rb->rg_direction);
1370 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001371}
1372
1373/**
1374 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001375 * @rb: regbuf to be deregistered and freed
1376 */
1377void
Chuck Lever13650c22016-09-15 10:56:26 -04001378rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001379{
Chuck Levere531dca2015-08-03 13:03:20 -04001380 if (!rb)
1381 return;
1382
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001383 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001384 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001385}
1386
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001387/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001388 * Prepost any receive buffer, then post send.
1389 *
1390 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1391 */
1392int
1393rpcrdma_ep_post(struct rpcrdma_ia *ia,
1394 struct rpcrdma_ep *ep,
1395 struct rpcrdma_req *req)
1396{
Chuck Lever90aab602016-09-15 10:56:43 -04001397 struct ib_send_wr *send_wr = &req->rl_send_wr;
1398 struct ib_send_wr *send_wr_fail;
Chuck Lever655fec62016-09-15 10:57:24 -04001399 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001400
Chuck Lever90aab602016-09-15 10:56:43 -04001401 if (req->rl_reply) {
1402 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001403 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001404 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001405 req->rl_reply = NULL;
1406 }
1407
Chuck Leverb3221d62015-08-03 13:03:39 -04001408 dprintk("RPC: %s: posting %d s/g entries\n",
Chuck Lever90aab602016-09-15 10:56:43 -04001409 __func__, send_wr->num_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001410
Chuck Lever8d38de62016-11-29 10:52:16 -05001411 rpcrdma_set_signaled(ep, send_wr);
Chuck Lever90aab602016-09-15 10:56:43 -04001412 rc = ib_post_send(ia->ri_id->qp, send_wr, &send_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001413 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001414 goto out_postsend_err;
1415 return 0;
1416
1417out_postsend_err:
1418 pr_err("rpcrdma: RDMA Send ib_post_send returned %i\n", rc);
1419 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001420}
1421
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001422int
1423rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001424 struct rpcrdma_rep *rep)
1425{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001426 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001427 int rc;
1428
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001429 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1430 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001431 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001432 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001433 goto out_postrecv;
1434 return 0;
1435
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001436out_map:
1437 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1438 return -EIO;
1439
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001440out_postrecv:
1441 pr_err("rpcrdma: ib_post_recv returned %i\n", rc);
1442 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001443}
Chuck Lever43e95982014-07-29 17:23:34 -04001444
Chuck Leverf531a5d2015-10-24 17:27:43 -04001445/**
1446 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1447 * @r_xprt: transport associated with these backchannel resources
1448 * @min_reqs: minimum number of incoming requests expected
1449 *
1450 * Returns zero if all requested buffers were posted, or a negative errno.
1451 */
1452int
1453rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1454{
1455 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1456 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001457 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001458 int rc;
1459
1460 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001461 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001462 if (list_empty(&buffers->rb_recv_bufs))
1463 goto out_reqbuf;
1464 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001465 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001466
Chuck Leverb1573802016-09-15 10:56:35 -04001467 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001468 if (rc)
1469 goto out_rc;
1470 }
1471
1472 return 0;
1473
1474out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001475 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001476 pr_warn("%s: no extra receive buffers\n", __func__);
1477 return -ENOMEM;
1478
1479out_rc:
1480 rpcrdma_recv_buffer_put(rep);
1481 return rc;
1482}