blob: 1a2b1f61ed26198b0fdab5549c695597ab69ed03 [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() */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040057
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040058#include "xprt_rdma.h"
59
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040060/*
61 * Globals/Macros
62 */
63
Jeff Laytonf895b252014-11-17 16:58:04 -050064#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040065# define RPCDBG_FACILITY RPCDBG_TRANS
66#endif
67
68/*
69 * internal functions
70 */
71
Chuck Leverfe97b472015-10-24 17:27:10 -040072static struct workqueue_struct *rpcrdma_receive_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040073
Chuck Leverfe97b472015-10-24 17:27:10 -040074int
75rpcrdma_alloc_wq(void)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040076{
Chuck Leverfe97b472015-10-24 17:27:10 -040077 struct workqueue_struct *recv_wq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040078
Chuck Leverfe97b472015-10-24 17:27:10 -040079 recv_wq = alloc_workqueue("xprtrdma_receive",
80 WQ_MEM_RECLAIM | WQ_UNBOUND | WQ_HIGHPRI,
81 0);
82 if (!recv_wq)
83 return -ENOMEM;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040084
Chuck Leverfe97b472015-10-24 17:27:10 -040085 rpcrdma_receive_wq = recv_wq;
86 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040087}
88
Chuck Leverfe97b472015-10-24 17:27:10 -040089void
90rpcrdma_destroy_wq(void)
Chuck Leverf1a03b72014-11-08 20:14:37 -050091{
Chuck Leverfe97b472015-10-24 17:27:10 -040092 struct workqueue_struct *wq;
Chuck Leverf1a03b72014-11-08 20:14:37 -050093
Chuck Leverfe97b472015-10-24 17:27:10 -040094 if (rpcrdma_receive_wq) {
95 wq = rpcrdma_receive_wq;
96 rpcrdma_receive_wq = NULL;
97 destroy_workqueue(wq);
98 }
Chuck Leverf1a03b72014-11-08 20:14:37 -050099}
100
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400101static void
102rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
103{
104 struct rpcrdma_ep *ep = context;
105
Chuck Lever7ff11de2014-11-08 20:15:01 -0500106 pr_err("RPC: %s: %s on device %s ep %p\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300107 __func__, ib_event_msg(event->event),
Chuck Lever7ff11de2014-11-08 20:15:01 -0500108 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400109 if (ep->rep_connected == 1) {
110 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500111 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400112 wake_up_all(&ep->rep_connect_wait);
113 }
114}
115
Chuck Lever2fa8f882016-03-04 11:28:53 -0500116/**
117 * rpcrdma_wc_send - Invoked by RDMA provider for each polled Send WC
118 * @cq: completion queue (ignored)
119 * @wc: completed WR
120 *
Chuck Lever4220a072015-10-24 17:26:45 -0400121 */
122static void
Chuck Lever2fa8f882016-03-04 11:28:53 -0500123rpcrdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400124{
Chuck Lever2fa8f882016-03-04 11:28:53 -0500125 /* WARNING: Only wr_cqe and status are reliable at this point */
126 if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR)
127 pr_err("rpcrdma: Send: %s (%u/0x%x)\n",
128 ib_wc_status_msg(wc->status),
129 wc->status, wc->vendor_err);
Chuck Leverfc664482014-05-28 10:33:25 -0400130}
131
Chuck Lever23826c72016-03-04 11:28:27 -0500132/* Perform basic sanity checking to avoid using garbage
133 * to update the credit grant value.
134 */
135static void
136rpcrdma_update_granted_credits(struct rpcrdma_rep *rep)
137{
138 struct rpcrdma_msg *rmsgp = rdmab_to_msg(rep->rr_rdmabuf);
139 struct rpcrdma_buffer *buffer = &rep->rr_rxprt->rx_buf;
140 u32 credits;
141
142 if (rep->rr_len < RPCRDMA_HDRLEN_ERR)
143 return;
144
145 credits = be32_to_cpu(rmsgp->rm_credit);
146 if (credits == 0)
147 credits = 1; /* don't deadlock */
148 else if (credits > buffer->rb_max_requests)
149 credits = buffer->rb_max_requests;
150
151 atomic_set(&buffer->rb_credits, credits);
152}
153
Chuck Lever552bf222016-03-04 11:28:36 -0500154/**
Chuck Lever1519e962016-09-15 10:57:49 -0400155 * rpcrdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
Chuck Lever552bf222016-03-04 11:28:36 -0500156 * @cq: completion queue (ignored)
157 * @wc: completed WR
158 *
159 */
Chuck Leverfe97b472015-10-24 17:27:10 -0400160static void
Chuck Lever1519e962016-09-15 10:57:49 -0400161rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
Chuck Leverfc664482014-05-28 10:33:25 -0400162{
Chuck Lever552bf222016-03-04 11:28:36 -0500163 struct ib_cqe *cqe = wc->wr_cqe;
164 struct rpcrdma_rep *rep = container_of(cqe, struct rpcrdma_rep,
165 rr_cqe);
Chuck Leverfc664482014-05-28 10:33:25 -0400166
Chuck Lever85024272015-01-21 11:02:04 -0500167 /* WARNING: Only wr_id and status are reliable at this point */
168 if (wc->status != IB_WC_SUCCESS)
169 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400170
Chuck Lever85024272015-01-21 11:02:04 -0500171 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Leverfc664482014-05-28 10:33:25 -0400172 if (wc->opcode != IB_WC_RECV)
173 return;
174
Chuck Lever85024272015-01-21 11:02:04 -0500175 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
176 __func__, rep, wc->byte_len);
177
Chuck Leverfc664482014-05-28 10:33:25 -0400178 rep->rr_len = wc->byte_len;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400179 rep->rr_wc_flags = wc->wc_flags;
180 rep->rr_inv_rkey = wc->ex.invalidate_rkey;
181
Chuck Lever89e0d1122015-05-26 11:51:56 -0400182 ib_dma_sync_single_for_cpu(rep->rr_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -0500183 rdmab_addr(rep->rr_rdmabuf),
184 rep->rr_len, DMA_FROM_DEVICE);
Chuck Lever23826c72016-03-04 11:28:27 -0500185
186 rpcrdma_update_granted_credits(rep);
Chuck Leverfc664482014-05-28 10:33:25 -0400187
188out_schedule:
Chuck Leverfe97b472015-10-24 17:27:10 -0400189 queue_work(rpcrdma_receive_wq, &rep->rr_work);
Chuck Lever85024272015-01-21 11:02:04 -0500190 return;
Chuck Leverfe97b472015-10-24 17:27:10 -0400191
Chuck Lever85024272015-01-21 11:02:04 -0500192out_fail:
193 if (wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever552bf222016-03-04 11:28:36 -0500194 pr_err("rpcrdma: Recv: %s (%u/0x%x)\n",
195 ib_wc_status_msg(wc->status),
196 wc->status, wc->vendor_err);
Chuck Leverb0e178a2015-10-24 17:26:54 -0400197 rep->rr_len = RPCRDMA_BAD_LEN;
Chuck Lever85024272015-01-21 11:02:04 -0500198 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400199}
200
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400201static void
202rpcrdma_update_connect_private(struct rpcrdma_xprt *r_xprt,
203 struct rdma_conn_param *param)
204{
205 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
206 const struct rpcrdma_connect_private *pmsg = param->private_data;
207 unsigned int rsize, wsize;
208
Chuck Leverc8b920b2016-09-15 10:57:16 -0400209 /* Default settings for RPC-over-RDMA Version One */
210 r_xprt->rx_ia.ri_reminv_expected = false;
Chuck Leverfab6c2c2017-02-08 16:59:54 -0500211 r_xprt->rx_ia.ri_implicit_roundup = xprt_rdma_pad_optimize;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400212 rsize = RPCRDMA_V1_DEF_INLINE_SIZE;
213 wsize = RPCRDMA_V1_DEF_INLINE_SIZE;
214
215 if (pmsg &&
216 pmsg->cp_magic == rpcrdma_cmp_magic &&
217 pmsg->cp_version == RPCRDMA_CMP_VERSION) {
Chuck Leverc8b920b2016-09-15 10:57:16 -0400218 r_xprt->rx_ia.ri_reminv_expected = true;
Chuck Lever73eea1c2017-02-08 17:00:02 -0500219 r_xprt->rx_ia.ri_implicit_roundup = true;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400220 rsize = rpcrdma_decode_buffer_size(pmsg->cp_send_size);
221 wsize = rpcrdma_decode_buffer_size(pmsg->cp_recv_size);
222 }
223
224 if (rsize < cdata->inline_rsize)
225 cdata->inline_rsize = rsize;
226 if (wsize < cdata->inline_wsize)
227 cdata->inline_wsize = wsize;
Chuck Leverd34b6682016-11-29 10:53:13 -0500228 dprintk("RPC: %s: max send %u, max recv %u\n",
229 __func__, cdata->inline_wsize, cdata->inline_rsize);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400230 rpcrdma_set_max_header_sizes(r_xprt);
231}
232
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400233static int
234rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
235{
236 struct rpcrdma_xprt *xprt = id->context;
237 struct rpcrdma_ia *ia = &xprt->rx_ia;
238 struct rpcrdma_ep *ep = &xprt->rx_ep;
Jeff Laytonf895b252014-11-17 16:58:04 -0500239#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400240 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
Ingo Molnarff0db042008-11-25 16:58:42 -0800241#endif
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500242 struct ib_qp_attr *attr = &ia->ri_qp_attr;
243 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400244 int connstate = 0;
245
246 switch (event->event) {
247 case RDMA_CM_EVENT_ADDR_RESOLVED:
248 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400249 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400250 complete(&ia->ri_done);
251 break;
252 case RDMA_CM_EVENT_ADDR_ERROR:
253 ia->ri_async_rc = -EHOSTUNREACH;
254 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
255 __func__, ep);
256 complete(&ia->ri_done);
257 break;
258 case RDMA_CM_EVENT_ROUTE_ERROR:
259 ia->ri_async_rc = -ENETUNREACH;
260 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
261 __func__, ep);
262 complete(&ia->ri_done);
263 break;
264 case RDMA_CM_EVENT_ESTABLISHED:
265 connstate = 1;
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500266 ib_query_qp(ia->ri_id->qp, attr,
267 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
268 iattr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400269 dprintk("RPC: %s: %d responder resources"
270 " (%d initiator)\n",
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500271 __func__, attr->max_dest_rd_atomic,
272 attr->max_rd_atomic);
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400273 rpcrdma_update_connect_private(xprt, &event->param.conn);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400274 goto connected;
275 case RDMA_CM_EVENT_CONNECT_ERROR:
276 connstate = -ENOTCONN;
277 goto connected;
278 case RDMA_CM_EVENT_UNREACHABLE:
279 connstate = -ENETDOWN;
280 goto connected;
281 case RDMA_CM_EVENT_REJECTED:
282 connstate = -ECONNREFUSED;
283 goto connected;
284 case RDMA_CM_EVENT_DISCONNECTED:
285 connstate = -ECONNABORTED;
286 goto connected;
287 case RDMA_CM_EVENT_DEVICE_REMOVAL:
288 connstate = -ENODEV;
289connected:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400290 dprintk("RPC: %s: %sconnected\n",
291 __func__, connstate > 0 ? "" : "dis");
Chuck Lever23826c72016-03-04 11:28:27 -0500292 atomic_set(&xprt->rx_buf.rb_credits, 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400293 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500294 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400295 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400296 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400297 default:
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400298 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
299 __func__, sap, rpc_get_port(sap), ep,
Sagi Grimberg76357c72015-05-18 13:40:32 +0300300 rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400301 break;
302 }
303
Jeff Laytonf895b252014-11-17 16:58:04 -0500304#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400305 if (connstate == 1) {
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500306 int ird = attr->max_dest_rd_atomic;
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400307 int tird = ep->rep_remote_cma.responder_resources;
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400308
Chuck Levera0ce85f2015-03-30 14:34:21 -0400309 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400310 sap, rpc_get_port(sap),
Chuck Lever89e0d1122015-05-26 11:51:56 -0400311 ia->ri_device->name,
Chuck Levera0ce85f2015-03-30 14:34:21 -0400312 ia->ri_ops->ro_displayname,
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400313 xprt->rx_buf.rb_max_requests,
314 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
315 } else if (connstate < 0) {
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400316 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
317 sap, rpc_get_port(sap), connstate);
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400318 }
319#endif
320
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400321 return 0;
322}
323
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400324static void rpcrdma_destroy_id(struct rdma_cm_id *id)
325{
326 if (id) {
327 module_put(id->device->owner);
328 rdma_destroy_id(id);
329 }
330}
331
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400332static struct rdma_cm_id *
333rpcrdma_create_id(struct rpcrdma_xprt *xprt,
334 struct rpcrdma_ia *ia, struct sockaddr *addr)
335{
336 struct rdma_cm_id *id;
337 int rc;
338
Tom Talpey1a954052008-10-09 15:01:31 -0400339 init_completion(&ia->ri_done);
340
Guy Shapirofa201052015-10-22 15:20:10 +0300341 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
342 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400343 if (IS_ERR(id)) {
344 rc = PTR_ERR(id);
345 dprintk("RPC: %s: rdma_create_id() failed %i\n",
346 __func__, rc);
347 return id;
348 }
349
Tom Talpey5675add2008-10-09 15:01:41 -0400350 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400351 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
352 if (rc) {
353 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
354 __func__, rc);
355 goto out;
356 }
Tom Talpey5675add2008-10-09 15:01:41 -0400357 wait_for_completion_interruptible_timeout(&ia->ri_done,
358 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400359
360 /* FIXME:
361 * Until xprtrdma supports DEVICE_REMOVAL, the provider must
362 * be pinned while there are active NFS/RDMA mounts to prevent
363 * hangs and crashes at umount time.
364 */
365 if (!ia->ri_async_rc && !try_module_get(id->device->owner)) {
366 dprintk("RPC: %s: Failed to get device module\n",
367 __func__);
368 ia->ri_async_rc = -ENODEV;
369 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400370 rc = ia->ri_async_rc;
371 if (rc)
372 goto out;
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_route(id, RDMA_RESOLVE_TIMEOUT);
376 if (rc) {
377 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
378 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400379 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400380 }
Tom Talpey5675add2008-10-09 15:01:41 -0400381 wait_for_completion_interruptible_timeout(&ia->ri_done,
382 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400383 rc = ia->ri_async_rc;
384 if (rc)
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400385 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400386
387 return id;
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400388put:
389 module_put(id->device->owner);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400390out:
391 rdma_destroy_id(id);
392 return ERR_PTR(rc);
393}
394
395/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400396 * Exported functions.
397 */
398
399/*
400 * Open and initialize an Interface Adapter.
401 * o initializes fields of struct rpcrdma_ia, including
402 * interface and provider attributes and protection zone.
403 */
404int
405rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
406{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400407 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400408 int rc;
409
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400410 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
411 if (IS_ERR(ia->ri_id)) {
412 rc = PTR_ERR(ia->ri_id);
413 goto out1;
414 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400415 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400416
Christoph Hellwiged082d32016-09-05 12:56:17 +0200417 ia->ri_pd = ib_alloc_pd(ia->ri_device, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400418 if (IS_ERR(ia->ri_pd)) {
419 rc = PTR_ERR(ia->ri_pd);
Chuck Leverb54054c2016-06-29 13:53:27 -0400420 pr_err("rpcrdma: ib_alloc_pd() returned %d\n", rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400421 goto out2;
422 }
423
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400424 switch (memreg) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400425 case RPCRDMA_FRMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400426 if (frwr_is_supported(ia)) {
427 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
428 break;
429 }
430 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400431 case RPCRDMA_MTHCAFMR:
Chuck Leverb54054c2016-06-29 13:53:27 -0400432 if (fmr_is_supported(ia)) {
433 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
434 break;
435 }
436 /*FALLTHROUGH*/
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400437 default:
Chuck Leverb54054c2016-06-29 13:53:27 -0400438 pr_err("rpcrdma: Unsupported memory registration mode: %d\n",
439 memreg);
440 rc = -EINVAL;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500441 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400442 }
443
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400444 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500445
446out3:
447 ib_dealloc_pd(ia->ri_pd);
448 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400449out2:
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400450 rpcrdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400451 ia->ri_id = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400452out1:
453 return rc;
454}
455
456/*
457 * Clean up/close an IA.
458 * o if event handles and PD have been initialized, free them.
459 * o close the IA
460 */
461void
462rpcrdma_ia_close(struct rpcrdma_ia *ia)
463{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400464 dprintk("RPC: %s: entering\n", __func__);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400465 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
466 if (ia->ri_id->qp)
467 rdma_destroy_qp(ia->ri_id);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400468 rpcrdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400469 ia->ri_id = NULL;
470 }
Chuck Lever6d446982015-05-26 11:51:27 -0400471
472 /* If the pd is still busy, xprtrdma missed freeing a resource */
473 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600474 ib_dealloc_pd(ia->ri_pd);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400475}
476
477/*
478 * Create unconnected endpoint.
479 */
480int
481rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
Chuck Lever86840a62017-02-08 17:00:10 -0500482 struct rpcrdma_create_data_internal *cdata)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400483{
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400484 struct rpcrdma_connect_private *pmsg = &ep->rep_cm_private;
Chuck Lever86840a62017-02-08 17:00:10 -0500485 unsigned int max_qp_wr, max_sge;
Chuck Leverfc664482014-05-28 10:33:25 -0400486 struct ib_cq *sendcq, *recvcq;
Chuck Lever2fa8f882016-03-04 11:28:53 -0500487 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400488
Chuck Lever87144ec2017-03-11 15:52:47 -0500489 max_sge = min_t(unsigned int, ia->ri_device->attrs.max_sge,
490 RPCRDMA_MAX_SEND_SGES);
Chuck Lever86840a62017-02-08 17:00:10 -0500491 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
492 pr_warn("rpcrdma: HCA provides only %d send SGEs\n", max_sge);
Chuck Leverb3221d62015-08-03 13:03:39 -0400493 return -ENOMEM;
494 }
Chuck Lever86840a62017-02-08 17:00:10 -0500495 ia->ri_max_send_sges = max_sge - RPCRDMA_MIN_SEND_SGES;
Chuck Leverb3221d62015-08-03 13:03:39 -0400496
Or Gerlitze3e45b12015-12-18 10:59:48 +0200497 if (ia->ri_device->attrs.max_qp_wr <= RPCRDMA_BACKWARD_WRS) {
Chuck Lever124fa172015-10-24 17:27:51 -0400498 dprintk("RPC: %s: insufficient wqe's available\n",
499 __func__);
500 return -ENOMEM;
501 }
Chuck Lever550d7502016-05-02 14:41:47 -0400502 max_qp_wr = ia->ri_device->attrs.max_qp_wr - RPCRDMA_BACKWARD_WRS - 1;
Chuck Lever124fa172015-10-24 17:27:51 -0400503
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400504 /* check provider's send/recv wr limits */
Chuck Lever124fa172015-10-24 17:27:51 -0400505 if (cdata->max_requests > max_qp_wr)
506 cdata->max_requests = max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400507
508 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
509 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400510 ep->rep_attr.srq = NULL;
511 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400512 ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400513 ep->rep_attr.cap.max_send_wr += 1; /* drain cqe */
Chuck Lever3968cb52015-03-30 14:35:26 -0400514 rc = ia->ri_ops->ro_open(ia, ep, cdata);
515 if (rc)
516 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400517 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Lever124fa172015-10-24 17:27:51 -0400518 ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever550d7502016-05-02 14:41:47 -0400519 ep->rep_attr.cap.max_recv_wr += 1; /* drain cqe */
Chuck Lever86840a62017-02-08 17:00:10 -0500520 ep->rep_attr.cap.max_send_sge = max_sge;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400521 ep->rep_attr.cap.max_recv_sge = 1;
522 ep->rep_attr.cap.max_inline_data = 0;
523 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
524 ep->rep_attr.qp_type = IB_QPT_RC;
525 ep->rep_attr.port_num = ~0;
526
527 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
528 "iovs: send %d recv %d\n",
529 __func__,
530 ep->rep_attr.cap.max_send_wr,
531 ep->rep_attr.cap.max_recv_wr,
532 ep->rep_attr.cap.max_send_sge,
533 ep->rep_attr.cap.max_recv_sge);
534
535 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400536 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Lever26ae9d12015-12-16 17:23:20 -0500537 if (ep->rep_cqinit <= 2)
538 ep->rep_cqinit = 0; /* always signal? */
Chuck Lever8ade1c22016-11-29 10:52:16 -0500539 rpcrdma_init_cqcount(ep, 0);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400540 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400541 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400542
Chuck Lever2fa8f882016-03-04 11:28:53 -0500543 sendcq = ib_alloc_cq(ia->ri_device, NULL,
544 ep->rep_attr.cap.max_send_wr + 1,
545 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400546 if (IS_ERR(sendcq)) {
547 rc = PTR_ERR(sendcq);
548 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400549 __func__, rc);
550 goto out1;
551 }
552
Chuck Lever552bf222016-03-04 11:28:36 -0500553 recvcq = ib_alloc_cq(ia->ri_device, NULL,
554 ep->rep_attr.cap.max_recv_wr + 1,
555 0, IB_POLL_SOFTIRQ);
Chuck Leverfc664482014-05-28 10:33:25 -0400556 if (IS_ERR(recvcq)) {
557 rc = PTR_ERR(recvcq);
558 dprintk("RPC: %s: failed to create recv CQ: %i\n",
559 __func__, rc);
560 goto out2;
561 }
562
Chuck Leverfc664482014-05-28 10:33:25 -0400563 ep->rep_attr.send_cq = sendcq;
564 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400565
566 /* Initialize cma parameters */
Chuck Leverb2dde942016-05-02 14:43:03 -0400567 memset(&ep->rep_remote_cma, 0, sizeof(ep->rep_remote_cma));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400568
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400569 /* Prepare RDMA-CM private message */
570 pmsg->cp_magic = rpcrdma_cmp_magic;
571 pmsg->cp_version = RPCRDMA_CMP_VERSION;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400572 pmsg->cp_flags |= ia->ri_ops->ro_send_w_inv_ok;
Chuck Lever87cfb9a2016-09-15 10:57:07 -0400573 pmsg->cp_send_size = rpcrdma_encode_buffer_size(cdata->inline_wsize);
574 pmsg->cp_recv_size = rpcrdma_encode_buffer_size(cdata->inline_rsize);
575 ep->rep_remote_cma.private_data = pmsg;
576 ep->rep_remote_cma.private_data_len = sizeof(*pmsg);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400577
578 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400579 ep->rep_remote_cma.initiator_depth = 0;
Or Gerlitze3e45b12015-12-18 10:59:48 +0200580 if (ia->ri_device->attrs.max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400581 ep->rep_remote_cma.responder_resources = 32;
582 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500583 ep->rep_remote_cma.responder_resources =
Or Gerlitze3e45b12015-12-18 10:59:48 +0200584 ia->ri_device->attrs.max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400585
Chuck Leverb2dde942016-05-02 14:43:03 -0400586 /* Limit transport retries so client can detect server
587 * GID changes quickly. RPC layer handles re-establishing
588 * transport connection and retransmission.
589 */
590 ep->rep_remote_cma.retry_count = 6;
591
592 /* RPC-over-RDMA handles its own flow control. In addition,
593 * make all RNR NAKs visible so we know that RPC-over-RDMA
594 * flow control is working correctly (no NAKs should be seen).
595 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400596 ep->rep_remote_cma.flow_control = 0;
597 ep->rep_remote_cma.rnr_retry_count = 0;
598
599 return 0;
600
601out2:
Chuck Lever2fa8f882016-03-04 11:28:53 -0500602 ib_free_cq(sendcq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400603out1:
604 return rc;
605}
606
607/*
608 * rpcrdma_ep_destroy
609 *
610 * Disconnect and destroy endpoint. After this, the only
611 * valid operations on the ep are to free it (if dynamically
612 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400613 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400614void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400615rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
616{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400617 dprintk("RPC: %s: entering, connected is %d\n",
618 __func__, ep->rep_connected);
619
Chuck Lever254f91e2014-05-28 10:32:17 -0400620 cancel_delayed_work_sync(&ep->rep_connect_worker);
621
Steve Wise72c02172015-09-21 12:24:23 -0500622 if (ia->ri_id->qp) {
Chuck Lever550d7502016-05-02 14:41:47 -0400623 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400624 rdma_destroy_qp(ia->ri_id);
625 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400626 }
627
Chuck Lever552bf222016-03-04 11:28:36 -0500628 ib_free_cq(ep->rep_attr.recv_cq);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500629 ib_free_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400630}
631
632/*
633 * Connect unconnected endpoint.
634 */
635int
636rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
637{
Chuck Lever73806c82014-07-29 17:23:25 -0400638 struct rdma_cm_id *id, *old;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400639 int rc = 0;
640 int retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400641
Tom Talpeyc0555512008-10-10 11:32:45 -0400642 if (ep->rep_connected != 0) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400643 struct rpcrdma_xprt *xprt;
644retry:
Chuck Leverec62f402014-05-28 10:34:07 -0400645 dprintk("RPC: %s: reconnecting...\n", __func__);
Chuck Lever282191c2014-07-29 17:25:55 -0400646
647 rpcrdma_ep_disconnect(ep, ia);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400648
649 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
650 id = rpcrdma_create_id(xprt, ia,
651 (struct sockaddr *)&xprt->rx_data.addr);
652 if (IS_ERR(id)) {
Chuck Leverec62f402014-05-28 10:34:07 -0400653 rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400654 goto out;
655 }
656 /* TEMP TEMP TEMP - fail if new device:
657 * Deregister/remarshal *all* requests!
658 * Close and recreate adapter, pd, etc!
659 * Re-determine all attributes still sane!
660 * More stuff I haven't thought of!
661 * Rrrgh!
662 */
Chuck Lever89e0d1122015-05-26 11:51:56 -0400663 if (ia->ri_device != id->device) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400664 printk("RPC: %s: can't reconnect on "
665 "different device!\n", __func__);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400666 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400667 rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400668 goto out;
669 }
670 /* END TEMP */
Chuck Leverec62f402014-05-28 10:34:07 -0400671 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
672 if (rc) {
673 dprintk("RPC: %s: rdma_create_qp failed %i\n",
674 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400675 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400676 rc = -ENETUNREACH;
677 goto out;
678 }
Chuck Lever73806c82014-07-29 17:23:25 -0400679
Chuck Lever73806c82014-07-29 17:23:25 -0400680 old = ia->ri_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400681 ia->ri_id = id;
Chuck Lever73806c82014-07-29 17:23:25 -0400682
683 rdma_destroy_qp(old);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400684 rpcrdma_destroy_id(old);
Chuck Leverec62f402014-05-28 10:34:07 -0400685 } else {
686 dprintk("RPC: %s: connecting...\n", __func__);
687 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
688 if (rc) {
689 dprintk("RPC: %s: rdma_create_qp failed %i\n",
690 __func__, rc);
691 /* do not update ep->rep_connected */
692 return -ENETUNREACH;
693 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400694 }
695
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400696 ep->rep_connected = 0;
697
698 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
699 if (rc) {
700 dprintk("RPC: %s: rdma_connect() failed with %i\n",
701 __func__, rc);
702 goto out;
703 }
704
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400705 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
706
707 /*
708 * Check state. A non-peer reject indicates no listener
709 * (ECONNREFUSED), which may be a transient state. All
710 * others indicate a transport condition which has already
711 * undergone a best-effort.
712 */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800713 if (ep->rep_connected == -ECONNREFUSED &&
714 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400715 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
716 goto retry;
717 }
718 if (ep->rep_connected <= 0) {
719 /* Sometimes, the only way to reliably connect to remote
720 * CMs is to use same nonzero values for ORD and IRD. */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400721 if (retry_count++ <= RDMA_CONNECT_RETRY_MAX + 1 &&
722 (ep->rep_remote_cma.responder_resources == 0 ||
723 ep->rep_remote_cma.initiator_depth !=
724 ep->rep_remote_cma.responder_resources)) {
725 if (ep->rep_remote_cma.responder_resources == 0)
726 ep->rep_remote_cma.responder_resources = 1;
727 ep->rep_remote_cma.initiator_depth =
728 ep->rep_remote_cma.responder_resources;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400729 goto retry;
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400730 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400731 rc = ep->rep_connected;
732 } else {
Chuck Leverf531a5d2015-10-24 17:27:43 -0400733 struct rpcrdma_xprt *r_xprt;
734 unsigned int extras;
735
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400736 dprintk("RPC: %s: connected\n", __func__);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400737
738 r_xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
739 extras = r_xprt->rx_buf.rb_bc_srv_max_requests;
740
741 if (extras) {
742 rc = rpcrdma_ep_post_extra_recv(r_xprt, extras);
Dan Carpenter38b95bc2015-11-05 11:37:08 +0300743 if (rc) {
Chuck Leverf531a5d2015-10-24 17:27:43 -0400744 pr_warn("%s: rpcrdma_ep_post_extra_recv: %i\n",
745 __func__, rc);
746 rc = 0;
Dan Carpenter38b95bc2015-11-05 11:37:08 +0300747 }
Chuck Leverf531a5d2015-10-24 17:27:43 -0400748 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400749 }
750
751out:
752 if (rc)
753 ep->rep_connected = rc;
754 return rc;
755}
756
757/*
758 * rpcrdma_ep_disconnect
759 *
760 * This is separate from destroy to facilitate the ability
761 * to reconnect without recreating the endpoint.
762 *
763 * This call is not reentrant, and must not be made in parallel
764 * on the same endpoint.
765 */
Chuck Lever282191c2014-07-29 17:25:55 -0400766void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400767rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
768{
769 int rc;
770
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400771 rc = rdma_disconnect(ia->ri_id);
772 if (!rc) {
773 /* returns without wait if not connected */
774 wait_event_interruptible(ep->rep_connect_wait,
775 ep->rep_connected != 1);
776 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
777 (ep->rep_connected == 1) ? "still " : "dis");
778 } else {
779 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
780 ep->rep_connected = rc;
781 }
Chuck Lever550d7502016-05-02 14:41:47 -0400782
783 ib_drain_qp(ia->ri_id->qp);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400784}
785
Chuck Lever505bbe62016-06-29 13:52:54 -0400786static void
787rpcrdma_mr_recovery_worker(struct work_struct *work)
788{
789 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
790 rb_recovery_worker.work);
791 struct rpcrdma_mw *mw;
792
793 spin_lock(&buf->rb_recovery_lock);
794 while (!list_empty(&buf->rb_stale_mrs)) {
795 mw = list_first_entry(&buf->rb_stale_mrs,
796 struct rpcrdma_mw, mw_list);
797 list_del_init(&mw->mw_list);
798 spin_unlock(&buf->rb_recovery_lock);
799
800 dprintk("RPC: %s: recovering MR %p\n", __func__, mw);
801 mw->mw_xprt->rx_ia.ri_ops->ro_recover_mr(mw);
802
803 spin_lock(&buf->rb_recovery_lock);
kbuild test robot53d78522016-07-16 06:02:05 +0800804 }
Chuck Lever505bbe62016-06-29 13:52:54 -0400805 spin_unlock(&buf->rb_recovery_lock);
806}
807
808void
809rpcrdma_defer_mr_recovery(struct rpcrdma_mw *mw)
810{
811 struct rpcrdma_xprt *r_xprt = mw->mw_xprt;
812 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
813
814 spin_lock(&buf->rb_recovery_lock);
815 list_add(&mw->mw_list, &buf->rb_stale_mrs);
816 spin_unlock(&buf->rb_recovery_lock);
817
818 schedule_delayed_work(&buf->rb_recovery_worker, 0);
819}
820
Chuck Levere2ac2362016-06-29 13:54:00 -0400821static void
822rpcrdma_create_mrs(struct rpcrdma_xprt *r_xprt)
823{
824 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
825 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
826 unsigned int count;
827 LIST_HEAD(free);
828 LIST_HEAD(all);
829
830 for (count = 0; count < 32; count++) {
831 struct rpcrdma_mw *mw;
832 int rc;
833
834 mw = kzalloc(sizeof(*mw), GFP_KERNEL);
835 if (!mw)
836 break;
837
838 rc = ia->ri_ops->ro_init_mr(ia, mw);
839 if (rc) {
840 kfree(mw);
841 break;
842 }
843
844 mw->mw_xprt = r_xprt;
845
846 list_add(&mw->mw_list, &free);
847 list_add(&mw->mw_all, &all);
848 }
849
850 spin_lock(&buf->rb_mwlock);
851 list_splice(&free, &buf->rb_mws);
852 list_splice(&all, &buf->rb_all);
853 r_xprt->rx_stats.mrs_allocated += count;
854 spin_unlock(&buf->rb_mwlock);
855
856 dprintk("RPC: %s: created %u MRs\n", __func__, count);
857}
858
859static void
860rpcrdma_mr_refresh_worker(struct work_struct *work)
861{
862 struct rpcrdma_buffer *buf = container_of(work, struct rpcrdma_buffer,
863 rb_refresh_worker.work);
864 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
865 rx_buf);
866
867 rpcrdma_create_mrs(r_xprt);
868}
869
Chuck Leverf531a5d2015-10-24 17:27:43 -0400870struct rpcrdma_req *
Chuck Lever13924022015-01-21 11:03:52 -0500871rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
872{
Chuck Leverf531a5d2015-10-24 17:27:43 -0400873 struct rpcrdma_buffer *buffer = &r_xprt->rx_buf;
Chuck Lever13924022015-01-21 11:03:52 -0500874 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500875
Chuck Lever85275c82015-01-21 11:04:16 -0500876 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500877 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -0500878 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -0500879
Chuck Leverf531a5d2015-10-24 17:27:43 -0400880 INIT_LIST_HEAD(&req->rl_free);
881 spin_lock(&buffer->rb_reqslock);
882 list_add(&req->rl_all, &buffer->rb_allreqs);
883 spin_unlock(&buffer->rb_reqslock);
Chuck Lever2fa8f882016-03-04 11:28:53 -0500884 req->rl_cqe.done = rpcrdma_wc_send;
Chuck Lever13924022015-01-21 11:03:52 -0500885 req->rl_buffer = &r_xprt->rx_buf;
Chuck Lever9d6b0402016-06-29 13:54:16 -0400886 INIT_LIST_HEAD(&req->rl_registered);
Chuck Lever90aab602016-09-15 10:56:43 -0400887 req->rl_send_wr.next = NULL;
888 req->rl_send_wr.wr_cqe = &req->rl_cqe;
Chuck Lever655fec62016-09-15 10:57:24 -0400889 req->rl_send_wr.sg_list = req->rl_send_sge;
Chuck Lever90aab602016-09-15 10:56:43 -0400890 req->rl_send_wr.opcode = IB_WR_SEND;
Chuck Lever13924022015-01-21 11:03:52 -0500891 return req;
Chuck Lever13924022015-01-21 11:03:52 -0500892}
893
Chuck Leverf531a5d2015-10-24 17:27:43 -0400894struct rpcrdma_rep *
Chuck Lever13924022015-01-21 11:03:52 -0500895rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
896{
897 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -0500898 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
899 struct rpcrdma_rep *rep;
900 int rc;
901
902 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500903 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500904 if (rep == NULL)
905 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500906
Chuck Lever13650c22016-09-15 10:56:26 -0400907 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(cdata->inline_rsize,
Chuck Lever99ef4db2016-09-15 10:56:10 -0400908 DMA_FROM_DEVICE, GFP_KERNEL);
Chuck Lever6b1184c2015-01-21 11:04:25 -0500909 if (IS_ERR(rep->rr_rdmabuf)) {
910 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500911 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500912 }
Chuck Lever13924022015-01-21 11:03:52 -0500913
Chuck Lever89e0d1122015-05-26 11:51:56 -0400914 rep->rr_device = ia->ri_device;
Chuck Lever1519e962016-09-15 10:57:49 -0400915 rep->rr_cqe.done = rpcrdma_wc_receive;
Chuck Leverfed171b2015-05-26 11:51:37 -0400916 rep->rr_rxprt = r_xprt;
Chuck Lever496b77a2016-09-15 10:57:57 -0400917 INIT_WORK(&rep->rr_work, rpcrdma_reply_handler);
Chuck Lever6ea8e712016-09-15 10:56:51 -0400918 rep->rr_recv_wr.next = NULL;
919 rep->rr_recv_wr.wr_cqe = &rep->rr_cqe;
920 rep->rr_recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
921 rep->rr_recv_wr.num_sge = 1;
Chuck Lever13924022015-01-21 11:03:52 -0500922 return rep;
923
924out_free:
925 kfree(rep);
926out:
927 return ERR_PTR(rc);
928}
929
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400930int
Chuck Leverac920d02015-01-21 11:03:44 -0500931rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400932{
Chuck Leverac920d02015-01-21 11:03:44 -0500933 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400934 int i, rc;
935
Chuck Lever1e465fd2015-10-24 17:27:02 -0400936 buf->rb_max_requests = r_xprt->rx_data.max_requests;
Chuck Leverf531a5d2015-10-24 17:27:43 -0400937 buf->rb_bc_srv_max_requests = 0;
Chuck Lever23826c72016-03-04 11:28:27 -0500938 atomic_set(&buf->rb_credits, 1);
Chuck Levere2ac2362016-06-29 13:54:00 -0400939 spin_lock_init(&buf->rb_mwlock);
Chuck Lever505bbe62016-06-29 13:52:54 -0400940 spin_lock_init(&buf->rb_lock);
941 spin_lock_init(&buf->rb_recovery_lock);
Chuck Levere2ac2362016-06-29 13:54:00 -0400942 INIT_LIST_HEAD(&buf->rb_mws);
943 INIT_LIST_HEAD(&buf->rb_all);
Chuck Lever505bbe62016-06-29 13:52:54 -0400944 INIT_LIST_HEAD(&buf->rb_stale_mrs);
Chuck Levere2ac2362016-06-29 13:54:00 -0400945 INIT_DELAYED_WORK(&buf->rb_refresh_worker,
946 rpcrdma_mr_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -0400947 INIT_DELAYED_WORK(&buf->rb_recovery_worker,
948 rpcrdma_mr_recovery_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400949
Chuck Levere2ac2362016-06-29 13:54:00 -0400950 rpcrdma_create_mrs(r_xprt);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400951
Chuck Lever1e465fd2015-10-24 17:27:02 -0400952 INIT_LIST_HEAD(&buf->rb_send_bufs);
Chuck Leverf531a5d2015-10-24 17:27:43 -0400953 INIT_LIST_HEAD(&buf->rb_allreqs);
954 spin_lock_init(&buf->rb_reqslock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400955 for (i = 0; i < buf->rb_max_requests; i++) {
956 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400957
Chuck Lever13924022015-01-21 11:03:52 -0500958 req = rpcrdma_create_req(r_xprt);
959 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400960 dprintk("RPC: %s: request buffer %d alloc"
961 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -0500962 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400963 goto out;
964 }
Chuck Leverf531a5d2015-10-24 17:27:43 -0400965 req->rl_backchannel = false;
Chuck Lever1e465fd2015-10-24 17:27:02 -0400966 list_add(&req->rl_free, &buf->rb_send_bufs);
967 }
968
969 INIT_LIST_HEAD(&buf->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -0400970 for (i = 0; i < buf->rb_max_requests + RPCRDMA_MAX_BC_REQUESTS; i++) {
Chuck Lever1e465fd2015-10-24 17:27:02 -0400971 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400972
Chuck Lever13924022015-01-21 11:03:52 -0500973 rep = rpcrdma_create_rep(r_xprt);
974 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400975 dprintk("RPC: %s: reply buffer %d alloc failed\n",
976 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -0500977 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400978 goto out;
979 }
Chuck Lever1e465fd2015-10-24 17:27:02 -0400980 list_add(&rep->rr_list, &buf->rb_recv_bufs);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400981 }
Chuck Lever13924022015-01-21 11:03:52 -0500982
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400983 return 0;
984out:
985 rpcrdma_buffer_destroy(buf);
986 return rc;
987}
988
Chuck Lever1e465fd2015-10-24 17:27:02 -0400989static struct rpcrdma_req *
990rpcrdma_buffer_get_req_locked(struct rpcrdma_buffer *buf)
991{
992 struct rpcrdma_req *req;
993
994 req = list_first_entry(&buf->rb_send_bufs,
995 struct rpcrdma_req, rl_free);
996 list_del(&req->rl_free);
997 return req;
998}
999
1000static struct rpcrdma_rep *
1001rpcrdma_buffer_get_rep_locked(struct rpcrdma_buffer *buf)
1002{
1003 struct rpcrdma_rep *rep;
1004
1005 rep = list_first_entry(&buf->rb_recv_bufs,
1006 struct rpcrdma_rep, rr_list);
1007 list_del(&rep->rr_list);
1008 return rep;
1009}
1010
Chuck Lever2e845222014-07-29 17:25:38 -04001011static void
Chuck Lever13650c22016-09-15 10:56:26 -04001012rpcrdma_destroy_rep(struct rpcrdma_rep *rep)
Chuck Lever13924022015-01-21 11:03:52 -05001013{
Chuck Lever13650c22016-09-15 10:56:26 -04001014 rpcrdma_free_regbuf(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001015 kfree(rep);
1016}
1017
Chuck Leverf531a5d2015-10-24 17:27:43 -04001018void
Chuck Lever13650c22016-09-15 10:56:26 -04001019rpcrdma_destroy_req(struct rpcrdma_req *req)
Chuck Lever13924022015-01-21 11:03:52 -05001020{
Chuck Lever13650c22016-09-15 10:56:26 -04001021 rpcrdma_free_regbuf(req->rl_recvbuf);
1022 rpcrdma_free_regbuf(req->rl_sendbuf);
1023 rpcrdma_free_regbuf(req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001024 kfree(req);
1025}
1026
Chuck Levere2ac2362016-06-29 13:54:00 -04001027static void
1028rpcrdma_destroy_mrs(struct rpcrdma_buffer *buf)
1029{
1030 struct rpcrdma_xprt *r_xprt = container_of(buf, struct rpcrdma_xprt,
1031 rx_buf);
1032 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
1033 struct rpcrdma_mw *mw;
1034 unsigned int count;
1035
1036 count = 0;
1037 spin_lock(&buf->rb_mwlock);
1038 while (!list_empty(&buf->rb_all)) {
1039 mw = list_entry(buf->rb_all.next, struct rpcrdma_mw, mw_all);
1040 list_del(&mw->mw_all);
1041
1042 spin_unlock(&buf->rb_mwlock);
1043 ia->ri_ops->ro_release_mr(mw);
1044 count++;
1045 spin_lock(&buf->rb_mwlock);
1046 }
1047 spin_unlock(&buf->rb_mwlock);
1048 r_xprt->rx_stats.mrs_allocated = 0;
1049
1050 dprintk("RPC: %s: released %u MRs\n", __func__, count);
1051}
1052
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001053void
1054rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1055{
Chuck Lever505bbe62016-06-29 13:52:54 -04001056 cancel_delayed_work_sync(&buf->rb_recovery_worker);
Chuck Leverabdb8812017-04-11 13:22:29 -04001057 cancel_delayed_work_sync(&buf->rb_refresh_worker);
Chuck Lever505bbe62016-06-29 13:52:54 -04001058
Chuck Lever1e465fd2015-10-24 17:27:02 -04001059 while (!list_empty(&buf->rb_recv_bufs)) {
1060 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001061
Chuck Lever1e465fd2015-10-24 17:27:02 -04001062 rep = rpcrdma_buffer_get_rep_locked(buf);
Chuck Lever13650c22016-09-15 10:56:26 -04001063 rpcrdma_destroy_rep(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001064 }
Chuck Lever05c97462016-09-06 11:22:58 -04001065 buf->rb_send_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001066
Chuck Leverf531a5d2015-10-24 17:27:43 -04001067 spin_lock(&buf->rb_reqslock);
1068 while (!list_empty(&buf->rb_allreqs)) {
Chuck Lever1e465fd2015-10-24 17:27:02 -04001069 struct rpcrdma_req *req;
Allen Andrews4034ba02014-05-28 10:32:09 -04001070
Chuck Leverf531a5d2015-10-24 17:27:43 -04001071 req = list_first_entry(&buf->rb_allreqs,
1072 struct rpcrdma_req, rl_all);
1073 list_del(&req->rl_all);
1074
1075 spin_unlock(&buf->rb_reqslock);
Chuck Lever13650c22016-09-15 10:56:26 -04001076 rpcrdma_destroy_req(req);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001077 spin_lock(&buf->rb_reqslock);
Chuck Lever9f9d8022014-07-29 17:24:45 -04001078 }
Chuck Leverf531a5d2015-10-24 17:27:43 -04001079 spin_unlock(&buf->rb_reqslock);
Chuck Lever05c97462016-09-06 11:22:58 -04001080 buf->rb_recv_count = 0;
Chuck Lever9f9d8022014-07-29 17:24:45 -04001081
Chuck Levere2ac2362016-06-29 13:54:00 -04001082 rpcrdma_destroy_mrs(buf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001083}
1084
Chuck Lever346aa662015-05-26 11:52:06 -04001085struct rpcrdma_mw *
1086rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001087{
Chuck Lever346aa662015-05-26 11:52:06 -04001088 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1089 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001090
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001091 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001092 if (!list_empty(&buf->rb_mws)) {
1093 mw = list_first_entry(&buf->rb_mws,
1094 struct rpcrdma_mw, mw_list);
1095 list_del_init(&mw->mw_list);
Chuck Leverc2922c02014-07-29 17:24:36 -04001096 }
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001097 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001098
1099 if (!mw)
Chuck Levere2ac2362016-06-29 13:54:00 -04001100 goto out_nomws;
Chuck Lever346aa662015-05-26 11:52:06 -04001101 return mw;
Chuck Levere2ac2362016-06-29 13:54:00 -04001102
1103out_nomws:
1104 dprintk("RPC: %s: no MWs available\n", __func__);
1105 schedule_delayed_work(&buf->rb_refresh_worker, 0);
1106
1107 /* Allow the reply handler and refresh worker to run */
1108 cond_resched();
1109
1110 return NULL;
Chuck Leverc2922c02014-07-29 17:24:36 -04001111}
1112
Chuck Lever346aa662015-05-26 11:52:06 -04001113void
1114rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -04001115{
Chuck Lever346aa662015-05-26 11:52:06 -04001116 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -04001117
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001118 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001119 list_add_tail(&mw->mw_list, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001120 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -04001121}
1122
Chuck Lever05c97462016-09-06 11:22:58 -04001123static struct rpcrdma_rep *
1124rpcrdma_buffer_get_rep(struct rpcrdma_buffer *buffers)
1125{
1126 /* If an RPC previously completed without a reply (say, a
1127 * credential problem or a soft timeout occurs) then hold off
1128 * on supplying more Receive buffers until the number of new
1129 * pending RPCs catches up to the number of posted Receives.
1130 */
1131 if (unlikely(buffers->rb_send_count < buffers->rb_recv_count))
1132 return NULL;
1133
1134 if (unlikely(list_empty(&buffers->rb_recv_bufs)))
1135 return NULL;
1136 buffers->rb_recv_count++;
1137 return rpcrdma_buffer_get_rep_locked(buffers);
1138}
1139
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001140/*
1141 * Get a set of request/reply buffers.
Chuck Lever78d506e2016-09-06 11:22:49 -04001142 *
1143 * Reply buffer (if available) is attached to send buffer upon return.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001144 */
1145struct rpcrdma_req *
1146rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1147{
1148 struct rpcrdma_req *req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001149
Chuck Levera5b027e2015-10-24 17:27:27 -04001150 spin_lock(&buffers->rb_lock);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001151 if (list_empty(&buffers->rb_send_bufs))
1152 goto out_reqbuf;
Chuck Lever05c97462016-09-06 11:22:58 -04001153 buffers->rb_send_count++;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001154 req = rpcrdma_buffer_get_req_locked(buffers);
Chuck Lever05c97462016-09-06 11:22:58 -04001155 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001156 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001157 return req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001158
Chuck Lever1e465fd2015-10-24 17:27:02 -04001159out_reqbuf:
Chuck Levera5b027e2015-10-24 17:27:27 -04001160 spin_unlock(&buffers->rb_lock);
Chuck Lever78d506e2016-09-06 11:22:49 -04001161 pr_warn("RPC: %s: out of request buffers\n", __func__);
Chuck Lever1e465fd2015-10-24 17:27:02 -04001162 return NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001163}
1164
1165/*
1166 * Put request/reply buffers back into pool.
1167 * Pre-decrement counter/array index.
1168 */
1169void
1170rpcrdma_buffer_put(struct rpcrdma_req *req)
1171{
1172 struct rpcrdma_buffer *buffers = req->rl_buffer;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001173 struct rpcrdma_rep *rep = req->rl_reply;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001174
Chuck Lever90aab602016-09-15 10:56:43 -04001175 req->rl_send_wr.num_sge = 0;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001176 req->rl_reply = NULL;
1177
Chuck Levera5b027e2015-10-24 17:27:27 -04001178 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001179 buffers->rb_send_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001180 list_add_tail(&req->rl_free, &buffers->rb_send_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001181 if (rep) {
1182 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001183 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Lever05c97462016-09-06 11:22:58 -04001184 }
Chuck Levera5b027e2015-10-24 17:27:27 -04001185 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001186}
1187
1188/*
1189 * Recover reply buffers from pool.
Chuck Lever1e465fd2015-10-24 17:27:02 -04001190 * This happens when recovering from disconnect.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001191 */
1192void
1193rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1194{
1195 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001196
Chuck Levera5b027e2015-10-24 17:27:27 -04001197 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001198 req->rl_reply = rpcrdma_buffer_get_rep(buffers);
Chuck Levera5b027e2015-10-24 17:27:27 -04001199 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001200}
1201
1202/*
1203 * Put reply buffers back into pool when not attached to
1204 * request. This happens in error conditions.
1205 */
1206void
1207rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1208{
Chuck Leverfed171b2015-05-26 11:51:37 -04001209 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001210
Chuck Levera5b027e2015-10-24 17:27:27 -04001211 spin_lock(&buffers->rb_lock);
Chuck Lever05c97462016-09-06 11:22:58 -04001212 buffers->rb_recv_count--;
Chuck Lever1e465fd2015-10-24 17:27:02 -04001213 list_add_tail(&rep->rr_list, &buffers->rb_recv_bufs);
Chuck Levera5b027e2015-10-24 17:27:27 -04001214 spin_unlock(&buffers->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001215}
1216
Chuck Lever9128c3e2015-01-21 11:04:00 -05001217/**
Chuck Lever99ef4db2016-09-15 10:56:10 -04001218 * rpcrdma_alloc_regbuf - allocate and DMA-map memory for SEND/RECV buffers
Chuck Lever9128c3e2015-01-21 11:04:00 -05001219 * @size: size of buffer to be allocated, in bytes
Chuck Lever99ef4db2016-09-15 10:56:10 -04001220 * @direction: direction of data movement
Chuck Lever9128c3e2015-01-21 11:04:00 -05001221 * @flags: GFP flags
1222 *
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001223 * Returns an ERR_PTR, or a pointer to a regbuf, a buffer that
1224 * can be persistently DMA-mapped for I/O.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001225 *
1226 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
Chuck Lever99ef4db2016-09-15 10:56:10 -04001227 * receiving the payload of RDMA RECV operations. During Long Calls
1228 * or Replies they may be registered externally via ro_map.
Chuck Lever9128c3e2015-01-21 11:04:00 -05001229 */
1230struct rpcrdma_regbuf *
Chuck Lever13650c22016-09-15 10:56:26 -04001231rpcrdma_alloc_regbuf(size_t size, enum dma_data_direction direction,
1232 gfp_t flags)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001233{
1234 struct rpcrdma_regbuf *rb;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001235
Chuck Lever9128c3e2015-01-21 11:04:00 -05001236 rb = kmalloc(sizeof(*rb) + size, flags);
1237 if (rb == NULL)
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001238 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001239
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001240 rb->rg_device = NULL;
Chuck Lever99ef4db2016-09-15 10:56:10 -04001241 rb->rg_direction = direction;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001242 rb->rg_iov.length = size;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001243
1244 return rb;
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001245}
Chuck Lever9128c3e2015-01-21 11:04:00 -05001246
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001247/**
1248 * __rpcrdma_map_regbuf - DMA-map a regbuf
1249 * @ia: controlling rpcrdma_ia
1250 * @rb: regbuf to be mapped
1251 */
1252bool
1253__rpcrdma_dma_map_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1254{
1255 if (rb->rg_direction == DMA_NONE)
1256 return false;
1257
1258 rb->rg_iov.addr = ib_dma_map_single(ia->ri_device,
1259 (void *)rb->rg_base,
1260 rdmab_length(rb),
1261 rb->rg_direction);
1262 if (ib_dma_mapping_error(ia->ri_device, rdmab_addr(rb)))
1263 return false;
1264
1265 rb->rg_device = ia->ri_device;
1266 rb->rg_iov.lkey = ia->ri_pd->local_dma_lkey;
1267 return true;
1268}
1269
1270static void
1271rpcrdma_dma_unmap_regbuf(struct rpcrdma_regbuf *rb)
1272{
1273 if (!rpcrdma_regbuf_is_mapped(rb))
1274 return;
1275
1276 ib_dma_unmap_single(rb->rg_device, rdmab_addr(rb),
1277 rdmab_length(rb), rb->rg_direction);
1278 rb->rg_device = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001279}
1280
1281/**
1282 * rpcrdma_free_regbuf - deregister and free registered buffer
Chuck Lever9128c3e2015-01-21 11:04:00 -05001283 * @rb: regbuf to be deregistered and freed
1284 */
1285void
Chuck Lever13650c22016-09-15 10:56:26 -04001286rpcrdma_free_regbuf(struct rpcrdma_regbuf *rb)
Chuck Lever9128c3e2015-01-21 11:04:00 -05001287{
Chuck Levere531dca2015-08-03 13:03:20 -04001288 if (!rb)
1289 return;
1290
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001291 rpcrdma_dma_unmap_regbuf(rb);
Chuck Levere531dca2015-08-03 13:03:20 -04001292 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001293}
1294
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001295/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001296 * Prepost any receive buffer, then post send.
1297 *
1298 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1299 */
1300int
1301rpcrdma_ep_post(struct rpcrdma_ia *ia,
1302 struct rpcrdma_ep *ep,
1303 struct rpcrdma_req *req)
1304{
Chuck Lever90aab602016-09-15 10:56:43 -04001305 struct ib_send_wr *send_wr = &req->rl_send_wr;
1306 struct ib_send_wr *send_wr_fail;
Chuck Lever655fec62016-09-15 10:57:24 -04001307 int rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001308
Chuck Lever90aab602016-09-15 10:56:43 -04001309 if (req->rl_reply) {
1310 rc = rpcrdma_ep_post_recv(ia, req->rl_reply);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001311 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001312 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001313 req->rl_reply = NULL;
1314 }
1315
Chuck Leverb3221d62015-08-03 13:03:39 -04001316 dprintk("RPC: %s: posting %d s/g entries\n",
Chuck Lever90aab602016-09-15 10:56:43 -04001317 __func__, send_wr->num_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001318
Chuck Lever8ade1c22016-11-29 10:52:16 -05001319 rpcrdma_set_signaled(ep, send_wr);
Chuck Lever90aab602016-09-15 10:56:43 -04001320 rc = ib_post_send(ia->ri_id->qp, send_wr, &send_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001321 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001322 goto out_postsend_err;
1323 return 0;
1324
1325out_postsend_err:
1326 pr_err("rpcrdma: RDMA Send ib_post_send returned %i\n", rc);
1327 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001328}
1329
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001330int
1331rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001332 struct rpcrdma_rep *rep)
1333{
Chuck Lever6ea8e712016-09-15 10:56:51 -04001334 struct ib_recv_wr *recv_wr_fail;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001335 int rc;
1336
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001337 if (!rpcrdma_dma_map_regbuf(ia, rep->rr_rdmabuf))
1338 goto out_map;
Chuck Lever6ea8e712016-09-15 10:56:51 -04001339 rc = ib_post_recv(ia->ri_id->qp, &rep->rr_recv_wr, &recv_wr_fail);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001340 if (rc)
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001341 goto out_postrecv;
1342 return 0;
1343
Chuck Lever54cbd6b2016-09-15 10:56:18 -04001344out_map:
1345 pr_err("rpcrdma: failed to DMA map the Receive buffer\n");
1346 return -EIO;
1347
Chuck Lever7a89f9c2016-06-29 13:53:43 -04001348out_postrecv:
1349 pr_err("rpcrdma: ib_post_recv returned %i\n", rc);
1350 return -ENOTCONN;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001351}
Chuck Lever43e95982014-07-29 17:23:34 -04001352
Chuck Leverf531a5d2015-10-24 17:27:43 -04001353/**
1354 * rpcrdma_ep_post_extra_recv - Post buffers for incoming backchannel requests
1355 * @r_xprt: transport associated with these backchannel resources
1356 * @min_reqs: minimum number of incoming requests expected
1357 *
1358 * Returns zero if all requested buffers were posted, or a negative errno.
1359 */
1360int
1361rpcrdma_ep_post_extra_recv(struct rpcrdma_xprt *r_xprt, unsigned int count)
1362{
1363 struct rpcrdma_buffer *buffers = &r_xprt->rx_buf;
1364 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001365 struct rpcrdma_rep *rep;
Chuck Leverf531a5d2015-10-24 17:27:43 -04001366 int rc;
1367
1368 while (count--) {
Chuck Lever9b066882015-12-16 17:22:06 -05001369 spin_lock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001370 if (list_empty(&buffers->rb_recv_bufs))
1371 goto out_reqbuf;
1372 rep = rpcrdma_buffer_get_rep_locked(buffers);
Chuck Lever9b066882015-12-16 17:22:06 -05001373 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001374
Chuck Leverb1573802016-09-15 10:56:35 -04001375 rc = rpcrdma_ep_post_recv(ia, rep);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001376 if (rc)
1377 goto out_rc;
1378 }
1379
1380 return 0;
1381
1382out_reqbuf:
Chuck Lever9b066882015-12-16 17:22:06 -05001383 spin_unlock(&buffers->rb_lock);
Chuck Leverf531a5d2015-10-24 17:27:43 -04001384 pr_warn("%s: no extra receive buffers\n", __func__);
1385 return -ENOMEM;
1386
1387out_rc:
1388 rpcrdma_recv_buffer_put(rep);
1389 return rc;
1390}