blob: 938fd9e6f308b4fb02fd52bf66f5d984558dd523 [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>
Devesh Sharmad0f36c42015-08-03 13:05:04 -040056#include <linux/module.h> /* try_module_get()/module_put() */
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 Leverbebd0312017-04-11 13:23:10 -040072static void rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf);
73static void rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040074
Chuck Leverfe97b472015-10-24 17:27:10 -040075static struct workqueue_struct *rpcrdma_receive_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040076
Chuck Leverfe97b472015-10-24 17:27:10 -040077int
78rpcrdma_alloc_wq(void)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040079{
Chuck Leverfe97b472015-10-24 17:27:10 -040080 struct workqueue_struct *recv_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040081
Chuck Leverfe97b472015-10-24 17:27:10 -040082 recv_wq = alloc_workqueue("xprtrdma_receive",
83 WQ_MEM_RECLAIM | WQ_UNBOUND | WQ_HIGHPRI,
84 0);
85 if (!recv_wq)
86 return -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040087
Chuck Leverfe97b472015-10-24 17:27:10 -040088 rpcrdma_receive_wq = recv_wq;
89 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040090}
91
Chuck Leverfe97b472015-10-24 17:27:10 -040092void
93rpcrdma_destroy_wq(void)
Chuck Leverf1a03b72014-11-08 20:14:37 -050094{
Chuck Leverfe97b472015-10-24 17:27:10 -040095 struct workqueue_struct *wq;
Chuck Leverf1a03b72014-11-08 20:14:37 -050096
Chuck Leverfe97b472015-10-24 17:27:10 -040097 if (rpcrdma_receive_wq) {
98 wq = rpcrdma_receive_wq;
99 rpcrdma_receive_wq = NULL;
100 destroy_workqueue(wq);
101 }
Chuck Leverf1a03b72014-11-08 20:14:37 -0500102}
103
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400104static void
105rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
106{
107 struct rpcrdma_ep *ep = context;
108
Chuck Lever2f6922c2016-11-29 10:53:21 -0500109 pr_err("rpcrdma: %s on device %s ep %p\n",
110 ib_event_msg(event->event), event->device->name, context);
111
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400112 if (ep->rep_connected == 1) {
113 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500114 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400115 wake_up_all(&ep->rep_connect_wait);
116 }
117}
118
Chuck Lever2fa8f882016-03-04 11:28:53 -0500119/**
120 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
121 * @cq: completion queue (ignored)
122 * @wc: completed WR
123 *
Chuck Lever4220a072015-10-24 17:26:45 -0400124 */
125static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500126rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400127{
Chuck Lever2fa8f882016-03-04 11:28:53 -0500128 /* WARNING: Only wr_cqe and status are reliable at this point */
129 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
130 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
131 ib_wc_status_msg(wc->status),
132 wc->status, wc->vendor_err);
Chuck Leverfc664482014-05-28 10:33:25 -0400133}
134
Chuck Lever23826c72016-03-04 11:28:27 -0500135/* Perform basic sanity checking to avoid using garbage
136 * to update the credit grant value.
137 */
138static void
139rpcrdma_update_granted_credits(struct rpcrdma_rep *rep)
140{
141 struct rpcrdma_msg *rmsgp = rdmab_to_msg(rep->rr_rdmabuf);
142 struct rpcrdma_buffer *buffer = &rep->rr_rxprt->rx_buf;
143 u32 credits;
144
145 if (rep->rr_len < RPCRDMA_HDRLEN_ERR)
146 return;
147
148 credits = be32_to_cpu(rmsgp->rm_credit);
149 if (credits == 0)
150 credits = 1; /* don't deadlock */
151 else if (credits > buffer->rb_max_requests)
152 credits = buffer->rb_max_requests;
153
154 atomic_set(&buffer->rb_credits, credits);
155}
156
Chuck Lever552bf222016-03-04 11:28:36 -0500157/**
Chuck Lever1519e962016-09-15 10:57:49 -0400158 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500159 * @cq: completion queue (ignored)
160 * @wc: completed WR
161 *
162 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400163static void
Chuck Lever1519e962016-09-15 10:57:49 -0400164rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400165{
Chuck Lever552bf222016-03-04 11:28:36 -0500166 struct ib_cqe *cqe = wc->wr_cqe;
167 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
168 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400169
Chuck Lever85024272015-01-21 11:02:04 -0500170 /* WARNING: Only wr_id and status are reliable at this point */
171 if (wc->status != IB_WC_SUCCESS)
172 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400173
Chuck Lever85024272015-01-21 11:02:04 -0500174 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Leverfc664482014-05-28 10:33:25 -0400175 if (wc->opcode != IB_WC_RECV)
176 return;
177
Chuck Lever85024272015-01-21 11:02:04 -0500178 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
179 __func__, rep, wc->byte_len);
180
Chuck Leverfc664482014-05-28 10:33:25 -0400181 rep->rr_len = wc->byte_len;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400182 rep->rr_wc_flags = wc->wc_flags;
183 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
184
Chuck Lever91a10c52017-04-11 13:23:02 -0400185 ib_dma_sync_single_for_cpu(rdmab_device(rep->rr_rdmabuf),
Chuck Lever6b1184c2015-01-21 11:04:25 -0500186 rdmab_addr(rep->rr_rdmabuf),
187 rep->rr_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500188
189 rpcrdma_update_granted_credits(rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400190
191out_schedule:
Chuck Leverfe97b472015-10-24 17:27:10 -0400192 queue_work(rpcrdma_receive_wq, &rep->rr_work);
Chuck Lever85024272015-01-21 11:02:04 -0500193 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400194
Chuck Lever85024272015-01-21 11:02:04 -0500195out_fail:
196 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500197 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
198 ib_wc_status_msg(wc->status),
199 wc->status, wc->vendor_err);
Chuck Leverb0e178a2015-10-24 17:26:54 -0400200 rep->rr_len = RPCRDMA_BAD_LEN;
Chuck Lever85024272015-01-21 11:02:04 -0500201 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400202}
203
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400204static void
205rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
206 struct rdma_conn_param *param)
207{
208 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
209 const struct rpcrdma_connect_private *pmsg = param->private_data;
210 unsigned int rsize, wsize;
211
Chuck Leverc8b920b2016-09-15 10:57:16 -0400212 /* Default settings for RPC-over-RDMA Version One */
213 r_xprt->rx_ia.ri_reminv_expected = false;
Chuck Leverb5f0afb2017-02-08 16:59:54 -0500214 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400215 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
216 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
217
218 if (pmsg &&
219 pmsg->cp_magic == rpcrdma_cmp_magic &&
220 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc8b920b2016-09-15 10:57:16 -0400221 r_xprt->rx_ia.ri_reminv_expected = true;
Chuck Leverc95a3c62017-02-08 17:00:02 -0500222 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400223 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
224 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
225 }
226
227 if (rsize < cdata->inline_rsize)
228 cdata->inline_rsize = rsize;
229 if (wsize < cdata->inline_wsize)
230 cdata->inline_wsize = wsize;
Chuck Lever6d6bf722016-11-29 10:53:13 -0500231 dprintk("RPC: %s: max send %u, max recv %u\n",
232 __func__, cdata->inline_wsize, cdata->inline_rsize);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400233 rpcrdma_set_max_header_sizes(r_xprt);
234}
235
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400236static int
237rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
238{
239 struct rpcrdma_xprt *xprt = id->context;
240 struct rpcrdma_ia *ia = &xprt->rx_ia;
241 struct rpcrdma_ep *ep = &xprt->rx_ep;
Jeff Laytonf895b252014-11-17 16:58:04 -0500242#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400243 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
Ingo Molnarff0db042008-11-25 16:58:42 -0800244#endif
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500245 struct ib_qp_attr *attr = &ia->ri_qp_attr;
246 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400247 int connstate = 0;
248
249 switch (event->event) {
250 case RDMA_CM_EVENT_ADDR_RESOLVED:
251 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400252 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400253 complete(&ia->ri_done);
254 break;
255 case RDMA_CM_EVENT_ADDR_ERROR:
256 ia->ri_async_rc = -EHOSTUNREACH;
257 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
258 __func__, ep);
259 complete(&ia->ri_done);
260 break;
261 case RDMA_CM_EVENT_ROUTE_ERROR:
262 ia->ri_async_rc = -ENETUNREACH;
263 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
264 __func__, ep);
265 complete(&ia->ri_done);
266 break;
Chuck Leverbebd0312017-04-11 13:23:10 -0400267 case RDMA_CM_EVENT_DEVICE_REMOVAL:
268#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
269 pr_info("rpcrdma: removing device for %pIS:%u\n",
270 sap, rpc_get_port(sap));
271#endif
272 set_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags);
273 ep->rep_connected = -ENODEV;
274 xprt_force_disconnect(&xprt->rx_xprt);
275 wait_for_completion(&ia->ri_remove_done);
276
277 ia->ri_id = NULL;
278 ia->ri_pd = NULL;
279 ia->ri_device = NULL;
280 /* Return 1 to ensure the core destroys the id. */
281 return 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400282 case RDMA_CM_EVENT_ESTABLISHED:
283 connstate = 1;
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500284 ib_query_qp(ia->ri_id->qp, attr,
285 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
286 iattr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400287 dprintk("RPC: %s: %d responder resources"
288 " (%d initiator)\n",
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500289 __func__, attr->max_dest_rd_atomic,
290 attr->max_rd_atomic);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400291 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400292 goto connected;
293 case RDMA_CM_EVENT_CONNECT_ERROR:
294 connstate = -ENOTCONN;
295 goto connected;
296 case RDMA_CM_EVENT_UNREACHABLE:
297 connstate = -ENETDOWN;
298 goto connected;
299 case RDMA_CM_EVENT_REJECTED:
Chuck Lever0a904872017-02-08 17:00:35 -0500300#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
301 pr_info("rpcrdma: connection to %pIS:%u on %s rejected: %s\n",
302 sap, rpc_get_port(sap), ia->ri_device->name,
303 rdma_reject_msg(id, event->status));
304#endif
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400305 connstate = -ECONNREFUSED;
Chuck Lever0a904872017-02-08 17:00:35 -0500306 if (event->status == IB_CM_REJ_STALE_CONN)
307 connstate = -EAGAIN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400308 goto connected;
309 case RDMA_CM_EVENT_DISCONNECTED:
310 connstate = -ECONNABORTED;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400311connected:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400312 dprintk("RPC: %s: %sconnected\n",
313 __func__, connstate > 0 ? "" : "dis");
Chuck Lever23826c72016-03-04 11:28:27 -0500314 atomic_set(&xprt->rx_buf.rb_credits, 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400315 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500316 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400317 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400318 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400319 default:
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400320 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
321 __func__, sap, rpc_get_port(sap), ep,
Sagi Grimberg76357c72015-05-18 13:40:32 +0300322 rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400323 break;
324 }
325
Jeff Laytonf895b252014-11-17 16:58:04 -0500326#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400327 if (connstate == 1) {
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500328 int ird = attr->max_dest_rd_atomic;
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400329 int tird = ep->rep_remote_cma.responder_resources;
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400330
Chuck Levera0ce85f2015-03-30 14:34:21 -0400331 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400332 sap, rpc_get_port(sap),
Chuck Lever89e0d1122015-05-26 11:51:56 -0400333 ia->ri_device->name,
Chuck Levera0ce85f2015-03-30 14:34:21 -0400334 ia->ri_ops->ro_displayname,
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400335 xprt->rx_buf.rb_max_requests,
336 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
337 } else if (connstate < 0) {
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400338 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
339 sap, rpc_get_port(sap), connstate);
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400340 }
341#endif
342
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400343 return 0;
344}
345
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400346static void rpcrdma_destroy_id(struct rdma_cm_id *id)
347{
348 if (id) {
349 module_put(id->device->owner);
350 rdma_destroy_id(id);
351 }
352}
353
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400354static struct rdma_cm_id *
355rpcrdma_create_id(struct rpcrdma_xprt *xprt,
356 struct rpcrdma_ia *ia, struct sockaddr *addr)
357{
Chuck Lever109b88a2016-11-29 10:52:40 -0500358 unsigned long wtimeout = msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400359 struct rdma_cm_id *id;
360 int rc;
361
Tom Talpey1a954052008-10-09 15:01:31 -0400362 init_completion(&ia->ri_done);
Chuck Leverbebd0312017-04-11 13:23:10 -0400363 init_completion(&ia->ri_remove_done);
Tom Talpey1a954052008-10-09 15:01:31 -0400364
Guy Shapirofa201052015-10-22 15:20:10 +0300365 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
366 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400367 if (IS_ERR(id)) {
368 rc = PTR_ERR(id);
369 dprintk("RPC: %s: rdma_create_id() failed %i\n",
370 __func__, rc);
371 return id;
372 }
373
Tom Talpey5675add2008-10-09 15:01:41 -0400374 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400375 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
376 if (rc) {
377 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
378 __func__, rc);
379 goto out;
380 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500381 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
382 if (rc < 0) {
383 dprintk("RPC: %s: wait() exited: %i\n",
384 __func__, rc);
385 goto out;
386 }
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400387
388 /* FIXME:
389 * Until xprtrdma supports DEVICE_REMOVAL, the provider must
390 * be pinned while there are active NFS/RDMA mounts to prevent
391 * hangs and crashes at umount time.
392 */
393 if (!ia->ri_async_rc && !try_module_get(id->device->owner)) {
394 dprintk("RPC: %s: Failed to get device module\n",
395 __func__);
396 ia->ri_async_rc = -ENODEV;
397 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400398 rc = ia->ri_async_rc;
399 if (rc)
400 goto out;
401
Tom Talpey5675add2008-10-09 15:01:41 -0400402 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400403 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
404 if (rc) {
405 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
406 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400407 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400408 }
Chuck Lever109b88a2016-11-29 10:52:40 -0500409 rc = wait_for_completion_interruptible_timeout(&ia->ri_done, wtimeout);
410 if (rc < 0) {
411 dprintk("RPC: %s: wait() exited: %i\n",
412 __func__, rc);
413 goto put;
414 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400415 rc = ia->ri_async_rc;
416 if (rc)
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400417 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400418
419 return id;
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400420put:
421 module_put(id->device->owner);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400422out:
423 rdma_destroy_id(id);
424 return ERR_PTR(rc);
425}
426
427/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400428 * Exported functions.
429 */
430
Chuck Leverfff09592017-04-11 13:22:54 -0400431/**
432 * rpcrdma_ia_open - Open and initialize an Interface Adapter.
433 * @xprt: controlling transport
434 * @addr: IP address of remote peer
435 *
436 * Returns 0 on success, negative errno if an appropriate
437 * Interface Adapter could not be found and opened.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400438 */
439int
Chuck Leverfff09592017-04-11 13:22:54 -0400440rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400441{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400442 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400443 int rc;
444
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400445 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
446 if (IS_ERR(ia->ri_id)) {
447 rc = PTR_ERR(ia->ri_id);
Chuck Leverfff09592017-04-11 13:22:54 -0400448 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400449 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400450 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400451
Christoph Hellwiged082d32016-09-05 12:56:17 +0200452 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400453 if (IS_ERR(ia->ri_pd)) {
454 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400455 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
Chuck Leverfff09592017-04-11 13:22:54 -0400456 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400457 }
458
Chuck Leverfff09592017-04-11 13:22:54 -0400459 switch (xprt_rdma_memreg_strategy) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400460 case RPCRDMA_FRMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400461 if (frwr_is_supported(ia)) {
462 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
463 break;
464 }
465 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400466 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400467 if (fmr_is_supported(ia)) {
468 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
469 break;
470 }
471 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400472 default:
Chuck Leverfff09592017-04-11 13:22:54 -0400473 pr_err("rpcrdma: Device %s does not support memreg mode %d\n",
474 ia->ri_device->name, xprt_rdma_memreg_strategy);
Chuck Leverb54054c2016-06-29 13:53:27 -0400475 rc = -EINVAL;
Chuck Leverfff09592017-04-11 13:22:54 -0400476 goto out_err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400477 }
478
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400479 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500480
Chuck Leverfff09592017-04-11 13:22:54 -0400481out_err:
482 rpcrdma_ia_close(ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400483 return rc;
484}
485
Chuck Leverfff09592017-04-11 13:22:54 -0400486/**
Chuck Leverbebd0312017-04-11 13:23:10 -0400487 * rpcrdma_ia_remove - Handle device driver unload
488 * @ia: interface adapter being removed
489 *
490 * Divest transport H/W resources associated with this adapter,
491 * but allow it to be restored later.
492 */
493void
494rpcrdma_ia_remove(struct rpcrdma_ia *ia)
495{
496 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
497 rx_ia);
498 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
499 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
500 struct rpcrdma_req *req;
501 struct rpcrdma_rep *rep;
502
503 cancel_delayed_work_sync(&buf->rb_refresh_worker);
504
505 /* This is similar to rpcrdma_ep_destroy, but:
506 * - Don't cancel the connect worker.
507 * - Don't call rpcrdma_ep_disconnect, which waits
508 * for another conn upcall, which will deadlock.
509 * - rdma_disconnect is unneeded, the underlying
510 * connection is already gone.
511 */
512 if (ia->ri_id->qp) {
513 ib_drain_qp(ia->ri_id->qp);
514 rdma_destroy_qp(ia->ri_id);
515 ia->ri_id->qp = NULL;
516 }
517 ib_free_cq(ep->rep_attr.recv_cq);
518 ib_free_cq(ep->rep_attr.send_cq);
519
520 /* The ULP is responsible for ensuring all DMA
521 * mappings and MRs are gone.
522 */
523 list_for_each_entry(rep, &buf->rb_recv_bufs, rr_list)
524 rpcrdma_dma_unmap_regbuf(rep->rr_rdmabuf);
525 list_for_each_entry(req, &buf->rb_allreqs, rl_all) {
526 rpcrdma_dma_unmap_regbuf(req->rl_rdmabuf);
527 rpcrdma_dma_unmap_regbuf(req->rl_sendbuf);
528 rpcrdma_dma_unmap_regbuf(req->rl_recvbuf);
529 }
530 rpcrdma_destroy_mrs(buf);
531
532 /* Allow waiters to continue */
533 complete(&ia->ri_remove_done);
534}
535
536/**
Chuck Leverfff09592017-04-11 13:22:54 -0400537 * rpcrdma_ia_close - Clean up/close an IA.
538 * @ia: interface adapter to close
539 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400540 */
541void
542rpcrdma_ia_close(struct rpcrdma_ia *ia)
543{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400544 dprintk("RPC: %s: entering\n", __func__);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400545 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
546 if (ia->ri_id->qp)
547 rdma_destroy_qp(ia->ri_id);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400548 rpcrdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400549 }
Chuck Leverfff09592017-04-11 13:22:54 -0400550 ia->ri_id = NULL;
551 ia->ri_device = NULL;
Chuck Lever6d446982015-05-26 11:51:27 -0400552
553 /* If the pd is still busy, xprtrdma missed freeing a resource */
554 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600555 ib_dealloc_pd(ia->ri_pd);
Chuck Leverfff09592017-04-11 13:22:54 -0400556 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400557}
558
559/*
560 * Create unconnected endpoint.
561 */
562int
563rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
Chuck Lever16f906d2017-02-08 17:00:10 -0500564 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400565{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400566 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Lever16f906d2017-02-08 17:00:10 -0500567 unsigned int max_qp_wr, max_sge;
Chuck Leverfc664482014-05-28 10:33:25 -0400568 struct ib_cq *sendcq, *recvcq;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500569 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400570
Chuck Levereed50872017-03-11 15:52:47 -0500571 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
572 RPCRDMA_MAX_SEND_SGES);
Chuck Lever16f906d2017-02-08 17:00:10 -0500573 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
574 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400575 return -ENOMEM;
576 }
Chuck Lever16f906d2017-02-08 17:00:10 -0500577 ia->ri_max_send_sges = max_sge - RPCRDMA_MIN_SEND_SGES;
Chuck Leverb3221d62015-08-03 13:03:39 -0400578
Or Gerlitze3e45b12015-12-18 10:59:48 +0200579 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400580 dprintk("RPC: %s: insufficient wqe's available\n",
581 __func__);
582 return -ENOMEM;
583 }
Chuck Lever550d7502016-05-02 14:41:47 -0400584 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
Chuck Lever124fa172015-10-24 17:27:51 -0400585
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400586 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400587 if (cdata->max_requests > max_qp_wr)
588 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400589
590 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
591 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400592 ep->rep_attr.srq = NULL;
593 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400594 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400595 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
Chuck Lever3968cb52015-03-30 14:35:26 -0400596 rc = ia->ri_ops->ro_open(ia, ep, cdata);
597 if (rc)
598 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400599 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400600 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400601 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
Chuck Lever16f906d2017-02-08 17:00:10 -0500602 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400603 ep->rep_attr.cap.max_recv_sge = 1;
604 ep->rep_attr.cap.max_inline_data = 0;
605 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
606 ep->rep_attr.qp_type = IB_QPT_RC;
607 ep->rep_attr.port_num = ~0;
608
609 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
610 "iovs: send %d recv %d\n",
611 __func__,
612 ep->rep_attr.cap.max_send_wr,
613 ep->rep_attr.cap.max_recv_wr,
614 ep->rep_attr.cap.max_send_sge,
615 ep->rep_attr.cap.max_recv_sge);
616
617 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400618 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Lever26ae9d12015-12-16 17:23:20 -0500619 if (ep->rep_cqinit <= 2)
620 ep->rep_cqinit = 0; /* always signal? */
Chuck Lever8d38de62016-11-29 10:52:16 -0500621 rpcrdma_init_cqcount(ep, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400622 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400623 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400624
Chuck Lever2fa8f882016-03-04 11:28:53 -0500625 sendcq = ib_alloc_cq(ia->ri_device, NULL,
626 ep->rep_attr.cap.max_send_wr + 1,
627 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400628 if (IS_ERR(sendcq)) {
629 rc = PTR_ERR(sendcq);
630 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400631 __func__, rc);
632 goto out1;
633 }
634
Chuck Lever552bf222016-03-04 11:28:36 -0500635 recvcq = ib_alloc_cq(ia->ri_device, NULL,
636 ep->rep_attr.cap.max_recv_wr + 1,
637 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400638 if (IS_ERR(recvcq)) {
639 rc = PTR_ERR(recvcq);
640 dprintk("RPC: %s: failed to create recv CQ: %i\n",
641 __func__, rc);
642 goto out2;
643 }
644
Chuck Leverfc664482014-05-28 10:33:25 -0400645 ep->rep_attr.send_cq = sendcq;
646 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400647
648 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400649 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400650
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400651 /* Prepare RDMA-CM private message */
652 pmsg->cp_magic = rpcrdma_cmp_magic;
653 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400654 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400655 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
656 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
657 ep->rep_remote_cma.private_data = pmsg;
658 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400659
660 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400661 ep->rep_remote_cma.initiator_depth = 0;
Or Gerlitze3e45b12015-12-18 10:59:48 +0200662 if (ia->ri_device->attrs.max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400663 ep->rep_remote_cma.responder_resources = 32;
664 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500665 ep->rep_remote_cma.responder_resources =
Or Gerlitze3e45b12015-12-18 10:59:48 +0200666 ia->ri_device->attrs.max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400667
Chuck Leverb2dde942016-05-02 14:43:03 -0400668 /* Limit transport retries so client can detect server
669 * GID changes quickly. RPC layer handles re-establishing
670 * transport connection and retransmission.
671 */
672 ep->rep_remote_cma.retry_count = 6;
673
674 /* RPC-over-RDMA handles its own flow control. In addition,
675 * make all RNR NAKs visible so we know that RPC-over-RDMA
676 * flow control is working correctly (no NAKs should be seen).
677 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400678 ep->rep_remote_cma.flow_control = 0;
679 ep->rep_remote_cma.rnr_retry_count = 0;
680
681 return 0;
682
683out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500684 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400685out1:
686 return rc;
687}
688
689/*
690 * rpcrdma_ep_destroy
691 *
692 * Disconnect and destroy endpoint. After this, the only
693 * valid operations on the ep are to free it (if dynamically
694 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400695 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400696void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400697rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
698{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400699 dprintk("RPC: %s: entering, connected is %d\n",
700 __func__, ep->rep_connected);
701
Chuck Lever254f91e2014-05-28 10:32:17 -0400702 cancel_delayed_work_sync(&ep->rep_connect_worker);
703
Steve Wise72c02172015-09-21 12:24:23 -0500704 if (ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400705 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400706 rdma_destroy_qp(ia->ri_id);
707 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400708 }
709
Chuck Lever552bf222016-03-04 11:28:36 -0500710 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500711 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400712}
713
714/*
715 * Connect unconnected endpoint.
716 */
717int
718rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
719{
Chuck Lever0a904872017-02-08 17:00:35 -0500720 struct rpcrdma_xprt *r_xprt = container_of(ia, struct rpcrdma_xprt,
721 rx_ia);
Chuck Lever73806c82014-07-29 17:23:25 -0400722 struct rdma_cm_id *id, *old;
Chuck Lever0a904872017-02-08 17:00:35 -0500723 struct sockaddr *sap;
724 unsigned int extras;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400725 int rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400726
Tom Talpeyc0555512008-10-10 11:32:45 -0400727 if (ep->rep_connected != 0) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400728retry:
Chuck Leverec62f402014-05-28 10:34:07 -0400729 dprintk("RPC: %s: reconnecting...\n", __func__);
Chuck Lever282191c2014-07-29 17:25:55 -0400730
731 rpcrdma_ep_disconnect(ep, ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732
Chuck Lever0a904872017-02-08 17:00:35 -0500733 sap = (struct sockaddr *)&r_xprt->rx_data.addr;
734 id = rpcrdma_create_id(r_xprt, ia, sap);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400735 if (IS_ERR(id)) {
Chuck Leverec62f402014-05-28 10:34:07 -0400736 rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400737 goto out;
738 }
739 /* TEMP TEMP TEMP - fail if new device:
740 * Deregister/remarshal *all* requests!
741 * Close and recreate adapter, pd, etc!
742 * Re-determine all attributes still sane!
743 * More stuff I haven't thought of!
744 * Rrrgh!
745 */
Chuck Lever89e0d1122015-05-26 11:51:56 -0400746 if (ia->ri_device != id->device) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400747 printk("RPC: %s: can't reconnect on "
748 "different device!\n", __func__);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400749 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400750 rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400751 goto out;
752 }
753 /* END TEMP */
Chuck Leverec62f402014-05-28 10:34:07 -0400754 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
755 if (rc) {
756 dprintk("RPC: %s: rdma_create_qp failed %i\n",
757 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400758 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400759 rc = -ENETUNREACH;
760 goto out;
761 }
Chuck Lever73806c82014-07-29 17:23:25 -0400762
Chuck Lever73806c82014-07-29 17:23:25 -0400763 old = ia->ri_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400764 ia->ri_id = id;
Chuck Lever73806c82014-07-29 17:23:25 -0400765
766 rdma_destroy_qp(old);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400767 rpcrdma_destroy_id(old);
Chuck Leverec62f402014-05-28 10:34:07 -0400768 } else {
769 dprintk("RPC: %s: connecting...\n", __func__);
770 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
771 if (rc) {
772 dprintk("RPC: %s: rdma_create_qp failed %i\n",
773 __func__, rc);
774 /* do not update ep->rep_connected */
775 return -ENETUNREACH;
776 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400777 }
778
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400779 ep->rep_connected = 0;
780
781 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
782 if (rc) {
783 dprintk("RPC: %s: rdma_connect() failed with %i\n",
784 __func__, rc);
785 goto out;
786 }
787
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400788 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400789 if (ep->rep_connected <= 0) {
Chuck Lever0a904872017-02-08 17:00:35 -0500790 if (ep->rep_connected == -EAGAIN)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400791 goto retry;
792 rc = ep->rep_connected;
Chuck Lever0a904872017-02-08 17:00:35 -0500793 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400794 }
795
Chuck Lever0a904872017-02-08 17:00:35 -0500796 dprintk("RPC: %s: connected\n", __func__);
797 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
798 if (extras)
799 rpcrdma_ep_post_extra_recv(r_xprt, extras);
800
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400801out:
802 if (rc)
803 ep->rep_connected = rc;
804 return rc;
805}
806
807/*
808 * rpcrdma_ep_disconnect
809 *
810 * This is separate from destroy to facilitate the ability
811 * to reconnect without recreating the endpoint.
812 *
813 * This call is not reentrant, and must not be made in parallel
814 * on the same endpoint.
815 */
Chuck Lever282191c2014-07-29 17:25:55 -0400816void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400817rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
818{
819 int rc;
820
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400821 rc = rdma_disconnect(ia->ri_id);
822 if (!rc) {
823 /* returns without wait if not connected */
824 wait_event_interruptible(ep->rep_connect_wait,
825 ep->rep_connected != 1);
826 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
827 (ep->rep_connected == 1) ? "still " : "dis");
828 } else {
829 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
830 ep->rep_connected = rc;
831 }
Chuck Lever550d7502016-05-02 14:41:47 -0400832
833 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400834}
835
Chuck Lever505bbe62016-06-29 13:52:54 -0400836static void
837rpcrdma_mr_recovery_worker(struct work_struct *work)
838{
839 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
840 rb_recovery_worker.work);
841 struct rpcrdma_mw *mw;
842
843 spin_lock(&buf->rb_recovery_lock);
844 while (!list_empty(&buf->rb_stale_mrs)) {
Chuck Lever9a5c63e2017-02-08 17:00:43 -0500845 mw = rpcrdma_pop_mw(&buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400846 spin_unlock(&buf->rb_recovery_lock);
847
848 dprintk("RPC: %s: recovering MR %p\n", __func__, mw);
849 mw->mw_xprt->rx_ia.ri_ops->ro_recover_mr(mw);
850
851 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +0800852 }
Chuck Lever505bbe62016-06-29 13:52:54 -0400853 spin_unlock(&buf->rb_recovery_lock);
854}
855
856void
857rpcrdma_defer_mr_recovery(struct rpcrdma_mw *mw)
858{
859 struct rpcrdma_xprt *r_xprt = mw->mw_xprt;
860 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
861
862 spin_lock(&buf->rb_recovery_lock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -0500863 rpcrdma_push_mw(mw, &buf->rb_stale_mrs);
Chuck Lever505bbe62016-06-29 13:52:54 -0400864 spin_unlock(&buf->rb_recovery_lock);
865
866 schedule_delayed_work(&buf->rb_recovery_worker, 0);
867}
868
Chuck Levere2ac2362016-06-29 13:54:00 -0400869static void
870rpcrdma_create_mrs(struct rpcrdma_xprt *r_xprt)
871{
872 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
873 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
874 unsigned int count;
875 LIST_HEAD(free);
876 LIST_HEAD(all);
877
878 for (count = 0; count < 32; count++) {
879 struct rpcrdma_mw *mw;
880 int rc;
881
882 mw = kzalloc(sizeof(*mw), GFP_KERNEL);
883 if (!mw)
884 break;
885
886 rc = ia->ri_ops->ro_init_mr(ia, mw);
887 if (rc) {
888 kfree(mw);
889 break;
890 }
891
892 mw->mw_xprt = r_xprt;
893
894 list_add(&mw->mw_list, &free);
895 list_add(&mw->mw_all, &all);
896 }
897
898 spin_lock(&buf->rb_mwlock);
899 list_splice(&free, &buf->rb_mws);
900 list_splice(&all, &buf->rb_all);
901 r_xprt->rx_stats.mrs_allocated += count;
902 spin_unlock(&buf->rb_mwlock);
903
904 dprintk("RPC: %s: created %u MRs\n", __func__, count);
905}
906
907static void
908rpcrdma_mr_refresh_worker(struct work_struct *work)
909{
910 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
911 rb_refresh_worker.work);
912 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
913 rx_buf);
914
915 rpcrdma_create_mrs(r_xprt);
916}
917
Chuck Leverf531a5d2015-10-24 17:27:43 -0400918struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -0500919rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
920{
Chuck Leverf531a5d2015-10-24 17:27:43 -0400921 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500922 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500923
Chuck Lever85275c82015-01-21 11:04:16 -0500924 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500925 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -0500926 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -0500927
Chuck Leverf531a5d2015-10-24 17:27:43 -0400928 INIT_LIST_HEAD(&req->rl_free);
929 spin_lock(&buffer->rb_reqslock);
930 list_add(&req->rl_all, &buffer->rb_allreqs);
931 spin_unlock(&buffer->rb_reqslock);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500932 req->rl_cqe.done = rpcrdma_wc_send;
Chuck Lever13924022015-01-21 11:03:52 -0500933 req->rl_buffer = &r_xprt->rx_buf;
Chuck Lever9d6b0402016-06-29 13:54:16 -0400934 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever90aab602016-09-15 10:56:43 -0400935 req->rl_send_wr.next = NULL;
936 req->rl_send_wr.wr_cqe = &req->rl_cqe;
Chuck Lever655fec62016-09-15 10:57:24 -0400937 req->rl_send_wr.sg_list = req->rl_send_sge;
Chuck Lever90aab602016-09-15 10:56:43 -0400938 req->rl_send_wr.opcode = IB_WR_SEND;
Chuck Lever13924022015-01-21 11:03:52 -0500939 return req;
Chuck Lever13924022015-01-21 11:03:52 -0500940}
941
Chuck Leverf531a5d2015-10-24 17:27:43 -0400942struct rpcrdma_rep *
Chuck Lever13924022015-01-21 11:03:52 -0500943rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
944{
945 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -0500946 struct rpcrdma_rep *rep;
947 int rc;
948
949 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500950 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500951 if (rep == NULL)
952 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500953
Chuck Lever13650c22016-09-15 10:56:26 -0400954 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -0400955 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -0500956 if (IS_ERR(rep->rr_rdmabuf)) {
957 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500958 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500959 }
Chuck Lever13924022015-01-21 11:03:52 -0500960
Chuck Lever1519e962016-09-15 10:57:49 -0400961 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -0400962 rep->rr_rxprt = r_xprt;
Chuck Lever496b77a2016-09-15 10:57:57 -0400963 INIT_WORK(&rep->rr_work, rpcrdma_reply_handler);
Chuck Lever6ea8e712016-09-15 10:56:51 -0400964 rep->rr_recv_wr.next = NULL;
965 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
966 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
967 rep->rr_recv_wr.num_sge = 1;
Chuck Lever13924022015-01-21 11:03:52 -0500968 return rep;
969
970out_free:
971 kfree(rep);
972out:
973 return ERR_PTR(rc);
974}
975
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400976int
Chuck Leverac920d02015-01-21 11:03:44 -0500977rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400978{
Chuck Leverac920d02015-01-21 11:03:44 -0500979 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400980 int i, rc;
981
Chuck Lever1e465fd2015-10-24 17:27:02 -0400982 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -0400983 buf->rb_bc_srv_max_requests = 0;
Chuck Lever23826c72016-03-04 11:28:27 -0500984 atomic_set(&buf->rb_credits, 1);
Chuck Levere2ac2362016-06-29 13:54:00 -0400985 spin_lock_init(&buf->rb_mwlock);
Chuck Lever505bbe62016-06-29 13:52:54 -0400986 spin_lock_init(&buf->rb_lock);
987 spin_lock_init(&buf->rb_recovery_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -0400988 INIT_LIST_HEAD(&buf->rb_mws);
989 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -0400990 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -0400991 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
992 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -0400993 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
994 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400995
Chuck Levere2ac2362016-06-29 13:54:00 -0400996 rpcrdma_create_mrs(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400997
Chuck Lever1e465fd2015-10-24 17:27:02 -0400998 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400999 INIT_LIST_HEAD(&buf->rb_allreqs);
1000 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001001 for (i = 0; i < buf->rb_max_requests; i++) {
1002 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001003
Chuck Lever13924022015-01-21 11:03:52 -05001004 req = rpcrdma_create_req(r_xprt);
1005 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001006 dprintk("RPC: %s: request buffer %d alloc"
1007 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001008 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001009 goto out;
1010 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001011 req->rl_backchannel = false;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001012 list_add(&req->rl_free, &buf->rb_send_bufs);
1013 }
1014
1015 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001016 for (i = 0; i < buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS; i++) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001017 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001018
Chuck Lever13924022015-01-21 11:03:52 -05001019 rep = rpcrdma_create_rep(r_xprt);
1020 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001021 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1022 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001023 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001024 goto out;
1025 }
Chuck Lever1e465fd2015-10-24 17:27:02 -04001026 list_add(&rep->rr_list, &buf->rb_recv_bufs);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001027 }
Chuck Lever13924022015-01-21 11:03:52 -05001028
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001029 return 0;
1030out:
1031 rpcrdma_buffer_destroy(buf);
1032 return rc;
1033}
1034
Chuck Lever1e465fd2015-10-24 17:27:02 -04001035static struct rpcrdma_req *
1036rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
1037{
1038 struct rpcrdma_req *req;
1039
1040 req = list_first_entry(&buf->rb_send_bufs,
1041 struct rpcrdma_req, rl_free);
1042 list_del(&req->rl_free);
1043 return req;
1044}
1045
1046static struct rpcrdma_rep *
1047rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1048{
1049 struct rpcrdma_rep *rep;
1050
1051 rep = list_first_entry(&buf->rb_recv_bufs,
1052 struct rpcrdma_rep, rr_list);
1053 list_del(&rep->rr_list);
1054 return rep;
1055}
1056
Chuck Lever2e845222014-07-29 17:25:38 -04001057static void
Chuck Lever13650c22016-09-15 10:56:26 -04001058rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001059{
Chuck Lever13650c22016-09-15 10:56:26 -04001060 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001061 kfree(rep);
1062}
1063
Chuck Leverf531a5d2015-10-24 17:27:43 -04001064void
Chuck Lever13650c22016-09-15 10:56:26 -04001065rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001066{
Chuck Lever13650c22016-09-15 10:56:26 -04001067 rpcrdma_free_regbuf(req->rl_recvbuf);
1068 rpcrdma_free_regbuf(req->rl_sendbuf);
1069 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001070 kfree(req);
1071}
1072
Chuck Levere2ac2362016-06-29 13:54:00 -04001073static void
1074rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf)
1075{
1076 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1077 rx_buf);
1078 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
1079 struct rpcrdma_mw *mw;
1080 unsigned int count;
1081
1082 count = 0;
1083 spin_lock(&buf->rb_mwlock);
1084 while (!list_empty(&buf->rb_all)) {
1085 mw = list_entry(buf->rb_all.next, struct rpcrdma_mw, mw_all);
1086 list_del(&mw->mw_all);
1087
1088 spin_unlock(&buf->rb_mwlock);
1089 ia->ri_ops->ro_release_mr(mw);
1090 count++;
1091 spin_lock(&buf->rb_mwlock);
1092 }
1093 spin_unlock(&buf->rb_mwlock);
1094 r_xprt->rx_stats.mrs_allocated = 0;
1095
1096 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1097}
1098
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001099void
1100rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1101{
Chuck Lever505bbe62016-06-29 13:52:54 -04001102 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Lever9378b272017-04-11 13:22:29 -04001103 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001104
Chuck Lever1e465fd2015-10-24 17:27:02 -04001105 while (!list_empty(&buf->rb_recv_bufs)) {
1106 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001107
Chuck Lever1e465fd2015-10-24 17:27:02 -04001108 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001109 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001110 }
Chuck Lever05c97462016-09-06 11:22:58 -04001111 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001112
Chuck Leverf531a5d2015-10-24 17:27:43 -04001113 spin_lock(&buf->rb_reqslock);
1114 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001115 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001116
Chuck Leverf531a5d2015-10-24 17:27:43 -04001117 req = list_first_entry(&buf->rb_allreqs,
1118 struct rpcrdma_req, rl_all);
1119 list_del(&req->rl_all);
1120
1121 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001122 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001123 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001124 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001125 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001126 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001127
Chuck Levere2ac2362016-06-29 13:54:00 -04001128 rpcrdma_destroy_mrs(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001129}
1130
Chuck Lever346aa662015-05-26 11:52:06 -04001131struct rpcrdma_mw *
1132rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001133{
Chuck Lever346aa662015-05-26 11:52:06 -04001134 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1135 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001136
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001137 spin_lock(&buf->rb_mwlock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001138 if (!list_empty(&buf->rb_mws))
1139 mw = rpcrdma_pop_mw(&buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001140 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001141
1142 if (!mw)
Chuck Levere2ac2362016-06-29 13:54:00 -04001143 goto out_nomws;
Chuck Lever346aa662015-05-26 11:52:06 -04001144 return mw;
Chuck Levere2ac2362016-06-29 13:54:00 -04001145
1146out_nomws:
1147 dprintk("RPC: %s: no MWs available\n", __func__);
Chuck Leverbebd0312017-04-11 13:23:10 -04001148 if (r_xprt->rx_ep.rep_connected != -ENODEV)
1149 schedule_delayed_work(&buf->rb_refresh_worker, 0);
Chuck Levere2ac2362016-06-29 13:54:00 -04001150
1151 /* Allow the reply handler and refresh worker to run */
1152 cond_resched();
1153
1154 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001155}
1156
Chuck Lever346aa662015-05-26 11:52:06 -04001157void
1158rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -04001159{
Chuck Lever346aa662015-05-26 11:52:06 -04001160 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -04001161
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001162 spin_lock(&buf->rb_mwlock);
Chuck Lever9a5c63e2017-02-08 17:00:43 -05001163 rpcrdma_push_mw(mw, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001164 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -04001165}
1166
Chuck Lever05c97462016-09-06 11:22:58 -04001167static struct rpcrdma_rep *
1168rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1169{
1170 /* If an RPC previously completed without a reply (say, a
1171 * credential problem or a soft timeout occurs) then hold off
1172 * on supplying more Receive buffers until the number of new
1173 * pending RPCs catches up to the number of posted Receives.
1174 */
1175 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1176 return NULL;
1177
1178 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1179 return NULL;
1180 buffers->rb_recv_count++;
1181 return rpcrdma_buffer_get_rep_locked(buffers);
1182}
1183
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001184/*
1185 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001186 *
1187 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001188 */
1189struct rpcrdma_req *
1190rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1191{
1192 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001193
Chuck Levera5b027e2015-10-24 17:27:27 -04001194 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001195 if (list_empty(&buffers->rb_send_bufs))
1196 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001197 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001198 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001199 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001200 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001201 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001202
Chuck Lever1e465fd2015-10-24 17:27:02 -04001203out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001204 spin_unlock(&buffers->rb_lock);
Chuck Lever78d506e2016-09-06 11:22:49 -04001205 pr_warn("RPC: %s: out of request buffers\n", __func__);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001206 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001207}
1208
1209/*
1210 * Put request/reply buffers back into pool.
1211 * Pre-decrement counter/array index.
1212 */
1213void
1214rpcrdma_buffer_put(struct rpcrdma_req *req)
1215{
1216 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001217 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001218
Chuck Lever90aab602016-09-15 10:56:43 -04001219 req->rl_send_wr.num_sge = 0;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001220 req->rl_reply = NULL;
1221
Chuck Levera5b027e2015-10-24 17:27:27 -04001222 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001223 buffers->rb_send_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001224 list_add_tail(&req->rl_free, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001225 if (rep) {
1226 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001227 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001228 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001229 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001230}
1231
1232/*
1233 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001234 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001235 */
1236void
1237rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1238{
1239 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001240
Chuck Levera5b027e2015-10-24 17:27:27 -04001241 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001242 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001243 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001244}
1245
1246/*
1247 * Put reply buffers back into pool when not attached to
1248 * request. This happens in error conditions.
1249 */
1250void
1251rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1252{
Chuck Leverfed171b2015-05-26 11:51:37 -04001253 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001254
Chuck Levera5b027e2015-10-24 17:27:27 -04001255 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001256 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001257 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001258 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001259}
1260
Chuck Lever9128c3e2015-01-21 11:04:00 -05001261/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001262 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001263 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001264 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001265 * @flags: GFP flags
1266 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001267 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1268 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001269 *
1270 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001271 * receiving the payload of RDMA RECV operations. During Long Calls
1272 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001273 */
1274struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001275rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1276 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001277{
1278 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001279
Chuck Lever9128c3e2015-01-21 11:04:00 -05001280 rb = kmalloc(sizeof(*rb) + size, flags);
1281 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001282 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001283
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001284 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001285 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001286 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001287
1288 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001289}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001290
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001291/**
1292 * __rpcrdma_map_regbuf - DMA-map a regbuf
1293 * @ia: controlling rpcrdma_ia
1294 * @rb: regbuf to be mapped
1295 */
1296bool
1297__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1298{
Chuck Lever91a10c52017-04-11 13:23:02 -04001299 struct ib_device *device = ia->ri_device;
1300
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001301 if (rb->rg_direction == DMA_NONE)
1302 return false;
1303
Chuck Lever91a10c52017-04-11 13:23:02 -04001304 rb->rg_iov.addr = ib_dma_map_single(device,
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001305 (void *)rb->rg_base,
1306 rdmab_length(rb),
1307 rb->rg_direction);
Chuck Lever91a10c52017-04-11 13:23:02 -04001308 if (ib_dma_mapping_error(device, rdmab_addr(rb)))
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001309 return false;
1310
Chuck Lever91a10c52017-04-11 13:23:02 -04001311 rb->rg_device = device;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001312 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1313 return true;
1314}
1315
1316static void
1317rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1318{
1319 if (!rpcrdma_regbuf_is_mapped(rb))
1320 return;
1321
1322 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1323 rdmab_length(rb), rb->rg_direction);
1324 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001325}
1326
1327/**
1328 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001329 * @rb: regbuf to be deregistered and freed
1330 */
1331void
Chuck Lever13650c22016-09-15 10:56:26 -04001332rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001333{
Chuck Levere531dca2015-08-03 13:03:20 -04001334 if (!rb)
1335 return;
1336
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001337 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001338 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001339}
1340
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001341/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001342 * Prepost any receive buffer, then post send.
1343 *
1344 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1345 */
1346int
1347rpcrdma_ep_post(struct rpcrdma_ia *ia,
1348 struct rpcrdma_ep *ep,
1349 struct rpcrdma_req *req)
1350{
Chuck Lever90aab602016-09-15 10:56:43 -04001351 struct ib_send_wr *send_wr = &req->rl_send_wr;
1352 struct ib_send_wr *send_wr_fail;
Chuck Lever655fec62016-09-15 10:57:24 -04001353 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001354
Chuck Lever90aab602016-09-15 10:56:43 -04001355 if (req->rl_reply) {
1356 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001357 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001358 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001359 req->rl_reply = NULL;
1360 }
1361
Chuck Leverb3221d62015-08-03 13:03:39 -04001362 dprintk("RPC: %s: posting %d s/g entries\n",
Chuck Lever90aab602016-09-15 10:56:43 -04001363 __func__, send_wr->num_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001364
Chuck Lever8d38de62016-11-29 10:52:16 -05001365 rpcrdma_set_signaled(ep, send_wr);
Chuck Lever90aab602016-09-15 10:56:43 -04001366 rc = ib_post_send(ia->ri_id->qp, send_wr, &send_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001367 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001368 goto out_postsend_err;
1369 return 0;
1370
1371out_postsend_err:
1372 pr_err("rpcrdma: RDMA Send ib_post_send returned %i\n", rc);
1373 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001374}
1375
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001376int
1377rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001378 struct rpcrdma_rep *rep)
1379{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001380 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001381 int rc;
1382
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001383 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1384 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001385 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001386 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001387 goto out_postrecv;
1388 return 0;
1389
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001390out_map:
1391 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1392 return -EIO;
1393
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001394out_postrecv:
1395 pr_err("rpcrdma: ib_post_recv returned %i\n", rc);
1396 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001397}
Chuck Lever43e95982014-07-29 17:23:34 -04001398
Chuck Leverf531a5d2015-10-24 17:27:43 -04001399/**
1400 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1401 * @r_xprt: transport associated with these backchannel resources
1402 * @min_reqs: minimum number of incoming requests expected
1403 *
1404 * Returns zero if all requested buffers were posted, or a negative errno.
1405 */
1406int
1407rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1408{
1409 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1410 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001411 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001412 int rc;
1413
1414 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001415 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001416 if (list_empty(&buffers->rb_recv_bufs))
1417 goto out_reqbuf;
1418 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001419 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001420
Chuck Leverb1573802016-09-15 10:56:35 -04001421 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001422 if (rc)
1423 goto out_rc;
1424 }
1425
1426 return 0;
1427
1428out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001429 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001430 pr_warn("%s: no extra receive buffers\n", __func__);
1431 return -ENOMEM;
1432
1433out_rc:
1434 rpcrdma_recv_buffer_put(rep);
1435 return rc;
1436}