blob: 8516d98945996b3d99a398ea302f59c668e45ab7 [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 Lever65866f82014-05-28 10:33:59 -040054#include <asm/bitops.h>
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040055
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040056#include "xprt_rdma.h"
57
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040058/*
59 * Globals/Macros
60 */
61
Jeff Laytonf895b252014-11-17 16:58:04 -050062#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040063# define RPCDBG_FACILITY RPCDBG_TRANS
64#endif
65
66/*
67 * internal functions
68 */
69
70/*
71 * handle replies in tasklet context, using a single, global list
72 * rdma tasklet function -- just turn around and call the func
73 * for all replies on the list
74 */
75
76static DEFINE_SPINLOCK(rpcrdma_tk_lock_g);
77static LIST_HEAD(rpcrdma_tasklets_g);
78
79static void
80rpcrdma_run_tasklet(unsigned long data)
81{
82 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040083 unsigned long flags;
84
85 data = data;
86 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
87 while (!list_empty(&rpcrdma_tasklets_g)) {
88 rep = list_entry(rpcrdma_tasklets_g.next,
89 struct rpcrdma_rep, rr_list);
90 list_del(&rep->rr_list);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040091 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
92
Chuck Lever494ae302015-05-26 11:51:46 -040093 rpcrdma_reply_handler(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040094
95 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
96 }
97 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
98}
99
100static DECLARE_TASKLET(rpcrdma_tasklet_g, rpcrdma_run_tasklet, 0UL);
101
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400102static void
Chuck Leverf1a03b72014-11-08 20:14:37 -0500103rpcrdma_schedule_tasklet(struct list_head *sched_list)
104{
105 unsigned long flags;
106
107 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
108 list_splice_tail(sched_list, &rpcrdma_tasklets_g);
109 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
110 tasklet_schedule(&rpcrdma_tasklet_g);
111}
112
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400113static void
114rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
115{
116 struct rpcrdma_ep *ep = context;
117
Chuck Lever7ff11de2014-11-08 20:15:01 -0500118 pr_err("RPC: %s: %s on device %s ep %p\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300119 __func__, ib_event_msg(event->event),
Chuck Lever7ff11de2014-11-08 20:15:01 -0500120 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400121 if (ep->rep_connected == 1) {
122 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500123 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400124 wake_up_all(&ep->rep_connect_wait);
125 }
126}
127
128static void
129rpcrdma_cq_async_error_upcall(struct ib_event *event, void *context)
130{
131 struct rpcrdma_ep *ep = context;
132
Chuck Lever7ff11de2014-11-08 20:15:01 -0500133 pr_err("RPC: %s: %s on device %s ep %p\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300134 __func__, ib_event_msg(event->event),
Chuck Lever7ff11de2014-11-08 20:15:01 -0500135 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400136 if (ep->rep_connected == 1) {
137 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500138 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400139 wake_up_all(&ep->rep_connect_wait);
140 }
141}
142
Chuck Leverfc664482014-05-28 10:33:25 -0400143static void
144rpcrdma_sendcq_process_wc(struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400145{
Chuck Lever85024272015-01-21 11:02:04 -0500146 /* WARNING: Only wr_id and status are reliable at this point */
Chuck Levere46ac342015-03-30 14:35:35 -0400147 if (wc->wr_id == RPCRDMA_IGNORE_COMPLETION) {
148 if (wc->status != IB_WC_SUCCESS &&
149 wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever85024272015-01-21 11:02:04 -0500150 pr_err("RPC: %s: SEND: %s\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300151 __func__, ib_wc_status_msg(wc->status));
Chuck Lever85024272015-01-21 11:02:04 -0500152 } else {
153 struct rpcrdma_mw *r;
154
155 r = (struct rpcrdma_mw *)(unsigned long)wc->wr_id;
Chuck Levere46ac342015-03-30 14:35:35 -0400156 r->mw_sendcompletion(wc);
Chuck Lever85024272015-01-21 11:02:04 -0500157 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400158}
159
Chuck Leverfc664482014-05-28 10:33:25 -0400160static int
Chuck Lever1c00dd02014-05-28 10:33:42 -0400161rpcrdma_sendcq_poll(struct ib_cq *cq, struct rpcrdma_ep *ep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400162{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400163 struct ib_wc *wcs;
Chuck Lever8301a2c2014-05-28 10:33:51 -0400164 int budget, count, rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400165
Chuck Lever8301a2c2014-05-28 10:33:51 -0400166 budget = RPCRDMA_WC_BUDGET / RPCRDMA_POLLSIZE;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400167 do {
168 wcs = ep->rep_send_wcs;
169
170 rc = ib_poll_cq(cq, RPCRDMA_POLLSIZE, wcs);
171 if (rc <= 0)
172 return rc;
173
174 count = rc;
175 while (count-- > 0)
176 rpcrdma_sendcq_process_wc(wcs++);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400177 } while (rc == RPCRDMA_POLLSIZE && --budget);
Chuck Lever1c00dd02014-05-28 10:33:42 -0400178 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400179}
180
181/*
Chuck Leverfc664482014-05-28 10:33:25 -0400182 * Handle send, fast_reg_mr, and local_inv completions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400183 *
Chuck Leverfc664482014-05-28 10:33:25 -0400184 * Send events are typically suppressed and thus do not result
185 * in an upcall. Occasionally one is signaled, however. This
186 * prevents the provider's completion queue from wrapping and
187 * losing a completion.
188 */
189static void
190rpcrdma_sendcq_upcall(struct ib_cq *cq, void *cq_context)
191{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400192 struct rpcrdma_ep *ep = (struct rpcrdma_ep *)cq_context;
Chuck Leverfc664482014-05-28 10:33:25 -0400193 int rc;
194
Chuck Lever1c00dd02014-05-28 10:33:42 -0400195 rc = rpcrdma_sendcq_poll(cq, ep);
Chuck Leverfc664482014-05-28 10:33:25 -0400196 if (rc) {
197 dprintk("RPC: %s: ib_poll_cq failed: %i\n",
198 __func__, rc);
199 return;
200 }
201
Chuck Lever7f23f6f2014-05-28 10:33:34 -0400202 rc = ib_req_notify_cq(cq,
203 IB_CQ_NEXT_COMP | IB_CQ_REPORT_MISSED_EVENTS);
204 if (rc == 0)
205 return;
206 if (rc < 0) {
Chuck Leverfc664482014-05-28 10:33:25 -0400207 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
208 __func__, rc);
209 return;
210 }
211
Chuck Lever1c00dd02014-05-28 10:33:42 -0400212 rpcrdma_sendcq_poll(cq, ep);
Chuck Leverfc664482014-05-28 10:33:25 -0400213}
214
215static void
Chuck Leverbb961932014-07-29 17:25:46 -0400216rpcrdma_recvcq_process_wc(struct ib_wc *wc, struct list_head *sched_list)
Chuck Leverfc664482014-05-28 10:33:25 -0400217{
218 struct rpcrdma_rep *rep =
219 (struct rpcrdma_rep *)(unsigned long)wc->wr_id;
220
Chuck Lever85024272015-01-21 11:02:04 -0500221 /* WARNING: Only wr_id and status are reliable at this point */
222 if (wc->status != IB_WC_SUCCESS)
223 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400224
Chuck Lever85024272015-01-21 11:02:04 -0500225 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Leverfc664482014-05-28 10:33:25 -0400226 if (wc->opcode != IB_WC_RECV)
227 return;
228
Chuck Lever85024272015-01-21 11:02:04 -0500229 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
230 __func__, rep, wc->byte_len);
231
Chuck Leverfc664482014-05-28 10:33:25 -0400232 rep->rr_len = wc->byte_len;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400233 ib_dma_sync_single_for_cpu(rep->rr_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -0500234 rdmab_addr(rep->rr_rdmabuf),
235 rep->rr_len, DMA_FROM_DEVICE);
236 prefetch(rdmab_to_msg(rep->rr_rdmabuf));
Chuck Leverfc664482014-05-28 10:33:25 -0400237
238out_schedule:
Chuck Leverbb961932014-07-29 17:25:46 -0400239 list_add_tail(&rep->rr_list, sched_list);
Chuck Lever85024272015-01-21 11:02:04 -0500240 return;
241out_fail:
242 if (wc->status != IB_WC_WR_FLUSH_ERR)
243 pr_err("RPC: %s: rep %p: %s\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300244 __func__, rep, ib_wc_status_msg(wc->status));
Chuck Lever85024272015-01-21 11:02:04 -0500245 rep->rr_len = ~0U;
246 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400247}
248
249static int
Chuck Lever1c00dd02014-05-28 10:33:42 -0400250rpcrdma_recvcq_poll(struct ib_cq *cq, struct rpcrdma_ep *ep)
Chuck Leverfc664482014-05-28 10:33:25 -0400251{
Chuck Leverbb961932014-07-29 17:25:46 -0400252 struct list_head sched_list;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400253 struct ib_wc *wcs;
Chuck Lever8301a2c2014-05-28 10:33:51 -0400254 int budget, count, rc;
Chuck Leverfc664482014-05-28 10:33:25 -0400255
Chuck Leverbb961932014-07-29 17:25:46 -0400256 INIT_LIST_HEAD(&sched_list);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400257 budget = RPCRDMA_WC_BUDGET / RPCRDMA_POLLSIZE;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400258 do {
259 wcs = ep->rep_recv_wcs;
260
261 rc = ib_poll_cq(cq, RPCRDMA_POLLSIZE, wcs);
262 if (rc <= 0)
Chuck Leverbb961932014-07-29 17:25:46 -0400263 goto out_schedule;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400264
265 count = rc;
266 while (count-- > 0)
Chuck Leverbb961932014-07-29 17:25:46 -0400267 rpcrdma_recvcq_process_wc(wcs++, &sched_list);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400268 } while (rc == RPCRDMA_POLLSIZE && --budget);
Chuck Leverbb961932014-07-29 17:25:46 -0400269 rc = 0;
270
271out_schedule:
Chuck Leverf1a03b72014-11-08 20:14:37 -0500272 rpcrdma_schedule_tasklet(&sched_list);
Chuck Leverbb961932014-07-29 17:25:46 -0400273 return rc;
Chuck Leverfc664482014-05-28 10:33:25 -0400274}
275
276/*
277 * Handle receive completions.
278 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400279 * It is reentrant but processes single events in order to maintain
280 * ordering of receives to keep server credits.
281 *
282 * It is the responsibility of the scheduled tasklet to return
283 * recv buffers to the pool. NOTE: this affects synchronization of
284 * connection shutdown. That is, the structures required for
285 * the completion of the reply handler must remain intact until
286 * all memory has been reclaimed.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400287 */
288static void
Chuck Leverfc664482014-05-28 10:33:25 -0400289rpcrdma_recvcq_upcall(struct ib_cq *cq, void *cq_context)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400290{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400291 struct rpcrdma_ep *ep = (struct rpcrdma_ep *)cq_context;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400292 int rc;
293
Chuck Lever1c00dd02014-05-28 10:33:42 -0400294 rc = rpcrdma_recvcq_poll(cq, ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400295 if (rc) {
Chuck Leverfc664482014-05-28 10:33:25 -0400296 dprintk("RPC: %s: ib_poll_cq failed: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400297 __func__, rc);
298 return;
299 }
300
Chuck Lever7f23f6f2014-05-28 10:33:34 -0400301 rc = ib_req_notify_cq(cq,
302 IB_CQ_NEXT_COMP | IB_CQ_REPORT_MISSED_EVENTS);
303 if (rc == 0)
304 return;
305 if (rc < 0) {
Chuck Leverfc664482014-05-28 10:33:25 -0400306 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
307 __func__, rc);
308 return;
309 }
310
Chuck Lever1c00dd02014-05-28 10:33:42 -0400311 rpcrdma_recvcq_poll(cq, ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400312}
313
Chuck Levera7bc2112014-07-29 17:23:52 -0400314static void
315rpcrdma_flush_cqs(struct rpcrdma_ep *ep)
316{
Chuck Lever5c166be2014-11-08 20:14:45 -0500317 struct ib_wc wc;
318 LIST_HEAD(sched_list);
319
320 while (ib_poll_cq(ep->rep_attr.recv_cq, 1, &wc) > 0)
321 rpcrdma_recvcq_process_wc(&wc, &sched_list);
322 if (!list_empty(&sched_list))
323 rpcrdma_schedule_tasklet(&sched_list);
324 while (ib_poll_cq(ep->rep_attr.send_cq, 1, &wc) > 0)
325 rpcrdma_sendcq_process_wc(&wc);
Chuck Levera7bc2112014-07-29 17:23:52 -0400326}
327
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400328static int
329rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
330{
331 struct rpcrdma_xprt *xprt = id->context;
332 struct rpcrdma_ia *ia = &xprt->rx_ia;
333 struct rpcrdma_ep *ep = &xprt->rx_ep;
Jeff Laytonf895b252014-11-17 16:58:04 -0500334#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400335 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
Ingo Molnarff0db042008-11-25 16:58:42 -0800336#endif
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500337 struct ib_qp_attr *attr = &ia->ri_qp_attr;
338 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400339 int connstate = 0;
340
341 switch (event->event) {
342 case RDMA_CM_EVENT_ADDR_RESOLVED:
343 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400344 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400345 complete(&ia->ri_done);
346 break;
347 case RDMA_CM_EVENT_ADDR_ERROR:
348 ia->ri_async_rc = -EHOSTUNREACH;
349 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
350 __func__, ep);
351 complete(&ia->ri_done);
352 break;
353 case RDMA_CM_EVENT_ROUTE_ERROR:
354 ia->ri_async_rc = -ENETUNREACH;
355 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
356 __func__, ep);
357 complete(&ia->ri_done);
358 break;
359 case RDMA_CM_EVENT_ESTABLISHED:
360 connstate = 1;
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500361 ib_query_qp(ia->ri_id->qp, attr,
362 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
363 iattr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400364 dprintk("RPC: %s: %d responder resources"
365 " (%d initiator)\n",
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500366 __func__, attr->max_dest_rd_atomic,
367 attr->max_rd_atomic);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400368 goto connected;
369 case RDMA_CM_EVENT_CONNECT_ERROR:
370 connstate = -ENOTCONN;
371 goto connected;
372 case RDMA_CM_EVENT_UNREACHABLE:
373 connstate = -ENETDOWN;
374 goto connected;
375 case RDMA_CM_EVENT_REJECTED:
376 connstate = -ECONNREFUSED;
377 goto connected;
378 case RDMA_CM_EVENT_DISCONNECTED:
379 connstate = -ECONNABORTED;
380 goto connected;
381 case RDMA_CM_EVENT_DEVICE_REMOVAL:
382 connstate = -ENODEV;
383connected:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400384 dprintk("RPC: %s: %sconnected\n",
385 __func__, connstate > 0 ? "" : "dis");
386 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500387 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400388 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400389 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400390 default:
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400391 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
392 __func__, sap, rpc_get_port(sap), ep,
Sagi Grimberg76357c72015-05-18 13:40:32 +0300393 rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400394 break;
395 }
396
Jeff Laytonf895b252014-11-17 16:58:04 -0500397#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400398 if (connstate == 1) {
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500399 int ird = attr->max_dest_rd_atomic;
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400400 int tird = ep->rep_remote_cma.responder_resources;
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400401
Chuck Levera0ce85f2015-03-30 14:34:21 -0400402 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400403 sap, rpc_get_port(sap),
Chuck Lever89e0d1122015-05-26 11:51:56 -0400404 ia->ri_device->name,
Chuck Levera0ce85f2015-03-30 14:34:21 -0400405 ia->ri_ops->ro_displayname,
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400406 xprt->rx_buf.rb_max_requests,
407 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
408 } else if (connstate < 0) {
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400409 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
410 sap, rpc_get_port(sap), connstate);
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400411 }
412#endif
413
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400414 return 0;
415}
416
417static struct rdma_cm_id *
418rpcrdma_create_id(struct rpcrdma_xprt *xprt,
419 struct rpcrdma_ia *ia, struct sockaddr *addr)
420{
421 struct rdma_cm_id *id;
422 int rc;
423
Tom Talpey1a954052008-10-09 15:01:31 -0400424 init_completion(&ia->ri_done);
425
Sean Heftyb26f9b92010-04-01 17:08:41 +0000426 id = rdma_create_id(rpcrdma_conn_upcall, xprt, RDMA_PS_TCP, IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400427 if (IS_ERR(id)) {
428 rc = PTR_ERR(id);
429 dprintk("RPC: %s: rdma_create_id() failed %i\n",
430 __func__, rc);
431 return id;
432 }
433
Tom Talpey5675add2008-10-09 15:01:41 -0400434 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400435 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
436 if (rc) {
437 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
438 __func__, rc);
439 goto out;
440 }
Tom Talpey5675add2008-10-09 15:01:41 -0400441 wait_for_completion_interruptible_timeout(&ia->ri_done,
442 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400443 rc = ia->ri_async_rc;
444 if (rc)
445 goto out;
446
Tom Talpey5675add2008-10-09 15:01:41 -0400447 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400448 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
449 if (rc) {
450 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
451 __func__, rc);
452 goto out;
453 }
Tom Talpey5675add2008-10-09 15:01:41 -0400454 wait_for_completion_interruptible_timeout(&ia->ri_done,
455 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400456 rc = ia->ri_async_rc;
457 if (rc)
458 goto out;
459
460 return id;
461
462out:
463 rdma_destroy_id(id);
464 return ERR_PTR(rc);
465}
466
467/*
468 * Drain any cq, prior to teardown.
469 */
470static void
471rpcrdma_clean_cq(struct ib_cq *cq)
472{
473 struct ib_wc wc;
474 int count = 0;
475
476 while (1 == ib_poll_cq(cq, 1, &wc))
477 ++count;
478
479 if (count)
480 dprintk("RPC: %s: flushed %d events (last 0x%x)\n",
481 __func__, count, wc.opcode);
482}
483
484/*
485 * Exported functions.
486 */
487
488/*
489 * Open and initialize an Interface Adapter.
490 * o initializes fields of struct rpcrdma_ia, including
491 * interface and provider attributes and protection zone.
492 */
493int
494rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
495{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400496 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Lever7bc79722015-01-21 11:03:27 -0500497 struct ib_device_attr *devattr = &ia->ri_devattr;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400498 int rc;
499
500 ia->ri_dma_mr = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400501
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400502 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
503 if (IS_ERR(ia->ri_id)) {
504 rc = PTR_ERR(ia->ri_id);
505 goto out1;
506 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400507 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400508
Chuck Lever89e0d1122015-05-26 11:51:56 -0400509 ia->ri_pd = ib_alloc_pd(ia->ri_device);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400510 if (IS_ERR(ia->ri_pd)) {
511 rc = PTR_ERR(ia->ri_pd);
512 dprintk("RPC: %s: ib_alloc_pd() failed %i\n",
513 __func__, rc);
514 goto out2;
515 }
516
Chuck Lever89e0d1122015-05-26 11:51:56 -0400517 rc = ib_query_device(ia->ri_device, devattr);
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400518 if (rc) {
519 dprintk("RPC: %s: ib_query_device failed %d\n",
520 __func__, rc);
Chuck Lever5ae711a2015-01-21 11:03:19 -0500521 goto out3;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400522 }
523
Chuck Leverf10eafd2014-05-28 10:32:51 -0400524 if (memreg == RPCRDMA_FRMR) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400525 /* Requires both frmr reg and local dma lkey */
Chuck Lever41f97022015-03-30 14:34:12 -0400526 if (((devattr->device_cap_flags &
Tom Talpey3197d3092008-10-09 15:00:20 -0400527 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) !=
Chuck Lever41f97022015-03-30 14:34:12 -0400528 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) ||
529 (devattr->max_fast_reg_page_list_len == 0)) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400530 dprintk("RPC: %s: FRMR registration "
Chuck Leverf10eafd2014-05-28 10:32:51 -0400531 "not supported by HCA\n", __func__);
532 memreg = RPCRDMA_MTHCAFMR;
Tom Talpey3197d3092008-10-09 15:00:20 -0400533 }
Chuck Leverf10eafd2014-05-28 10:32:51 -0400534 }
535 if (memreg == RPCRDMA_MTHCAFMR) {
Chuck Lever89e0d1122015-05-26 11:51:56 -0400536 if (!ia->ri_device->alloc_fmr) {
Chuck Leverf10eafd2014-05-28 10:32:51 -0400537 dprintk("RPC: %s: MTHCAFMR registration "
538 "not supported by HCA\n", __func__);
Chuck Leverd2310932015-08-03 13:03:09 -0400539 goto out3;
Chuck Leverf10eafd2014-05-28 10:32:51 -0400540 }
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400541 }
542
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400543 switch (memreg) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400544 case RPCRDMA_FRMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400545 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400546 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400547 case RPCRDMA_ALLPHYSICAL:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400548 ia->ri_ops = &rpcrdma_physical_memreg_ops;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400549 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400550 case RPCRDMA_MTHCAFMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400551 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400552 break;
553 default:
Chuck Levercdd9ade2014-05-28 10:33:00 -0400554 printk(KERN_ERR "RPC: Unsupported memory "
555 "registration mode: %d\n", memreg);
556 rc = -ENOMEM;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500557 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400558 }
Chuck Levera0ce85f2015-03-30 14:34:21 -0400559 dprintk("RPC: %s: memory registration strategy is '%s'\n",
560 __func__, ia->ri_ops->ro_displayname);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400561
Chuck Lever73806c82014-07-29 17:23:25 -0400562 rwlock_init(&ia->ri_qplock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400563 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500564
565out3:
566 ib_dealloc_pd(ia->ri_pd);
567 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400568out2:
569 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400570 ia->ri_id = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400571out1:
572 return rc;
573}
574
575/*
576 * Clean up/close an IA.
577 * o if event handles and PD have been initialized, free them.
578 * o close the IA
579 */
580void
581rpcrdma_ia_close(struct rpcrdma_ia *ia)
582{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400583 dprintk("RPC: %s: entering\n", __func__);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400584 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
585 if (ia->ri_id->qp)
586 rdma_destroy_qp(ia->ri_id);
587 rdma_destroy_id(ia->ri_id);
588 ia->ri_id = NULL;
589 }
Chuck Lever6d446982015-05-26 11:51:27 -0400590
591 /* If the pd is still busy, xprtrdma missed freeing a resource */
592 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
593 WARN_ON(ib_dealloc_pd(ia->ri_pd));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400594}
595
596/*
597 * Create unconnected endpoint.
598 */
599int
600rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
601 struct rpcrdma_create_data_internal *cdata)
602{
Chuck Lever7bc79722015-01-21 11:03:27 -0500603 struct ib_device_attr *devattr = &ia->ri_devattr;
Chuck Leverfc664482014-05-28 10:33:25 -0400604 struct ib_cq *sendcq, *recvcq;
Matan Barak8e372102015-06-11 16:35:21 +0300605 struct ib_cq_init_attr cq_attr = {};
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400606 int rc, err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400607
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400608 /* check provider's send/recv wr limits */
Chuck Lever7bc79722015-01-21 11:03:27 -0500609 if (cdata->max_requests > devattr->max_qp_wr)
610 cdata->max_requests = devattr->max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400611
612 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
613 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400614 ep->rep_attr.srq = NULL;
615 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever3968cb52015-03-30 14:35:26 -0400616 rc = ia->ri_ops->ro_open(ia, ep, cdata);
617 if (rc)
618 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400619 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
620 ep->rep_attr.cap.max_send_sge = (cdata->padding ? 4 : 2);
621 ep->rep_attr.cap.max_recv_sge = 1;
622 ep->rep_attr.cap.max_inline_data = 0;
623 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
624 ep->rep_attr.qp_type = IB_QPT_RC;
625 ep->rep_attr.port_num = ~0;
626
Chuck Leverc05fbb52015-01-21 11:04:33 -0500627 if (cdata->padding) {
628 ep->rep_padbuf = rpcrdma_alloc_regbuf(ia, cdata->padding,
629 GFP_KERNEL);
Chuck Leverd1ed8572015-08-03 13:03:30 -0400630 if (IS_ERR(ep->rep_padbuf)) {
631 rc = PTR_ERR(ep->rep_padbuf);
632 goto out0;
633 }
Chuck Leverc05fbb52015-01-21 11:04:33 -0500634 } else
635 ep->rep_padbuf = NULL;
636
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400637 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
638 "iovs: send %d recv %d\n",
639 __func__,
640 ep->rep_attr.cap.max_send_wr,
641 ep->rep_attr.cap.max_recv_wr,
642 ep->rep_attr.cap.max_send_sge,
643 ep->rep_attr.cap.max_recv_sge);
644
645 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400646 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Levere7104a22014-11-08 20:14:20 -0500647 if (ep->rep_cqinit > RPCRDMA_MAX_UNSIGNALED_SENDS)
648 ep->rep_cqinit = RPCRDMA_MAX_UNSIGNALED_SENDS;
649 else if (ep->rep_cqinit <= 2)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400650 ep->rep_cqinit = 0;
651 INIT_CQCOUNT(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400652 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400653 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400654
Matan Barak8e372102015-06-11 16:35:21 +0300655 cq_attr.cqe = ep->rep_attr.cap.max_send_wr + 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400656 sendcq = ib_create_cq(ia->ri_device, rpcrdma_sendcq_upcall,
Linus Torvalds8688d952015-07-02 11:32:23 -0700657 rpcrdma_cq_async_error_upcall, ep, &cq_attr);
Chuck Leverfc664482014-05-28 10:33:25 -0400658 if (IS_ERR(sendcq)) {
659 rc = PTR_ERR(sendcq);
660 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400661 __func__, rc);
662 goto out1;
663 }
664
Chuck Leverfc664482014-05-28 10:33:25 -0400665 rc = ib_req_notify_cq(sendcq, IB_CQ_NEXT_COMP);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400666 if (rc) {
667 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
668 __func__, rc);
669 goto out2;
670 }
671
Matan Barak8e372102015-06-11 16:35:21 +0300672 cq_attr.cqe = ep->rep_attr.cap.max_recv_wr + 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400673 recvcq = ib_create_cq(ia->ri_device, rpcrdma_recvcq_upcall,
Linus Torvalds8688d952015-07-02 11:32:23 -0700674 rpcrdma_cq_async_error_upcall, ep, &cq_attr);
Chuck Leverfc664482014-05-28 10:33:25 -0400675 if (IS_ERR(recvcq)) {
676 rc = PTR_ERR(recvcq);
677 dprintk("RPC: %s: failed to create recv CQ: %i\n",
678 __func__, rc);
679 goto out2;
680 }
681
682 rc = ib_req_notify_cq(recvcq, IB_CQ_NEXT_COMP);
683 if (rc) {
684 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
685 __func__, rc);
686 ib_destroy_cq(recvcq);
687 goto out2;
688 }
689
690 ep->rep_attr.send_cq = sendcq;
691 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400692
693 /* Initialize cma parameters */
694
695 /* RPC/RDMA does not use private data */
696 ep->rep_remote_cma.private_data = NULL;
697 ep->rep_remote_cma.private_data_len = 0;
698
699 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400700 ep->rep_remote_cma.initiator_depth = 0;
Chuck Lever7bc79722015-01-21 11:03:27 -0500701 if (devattr->max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400702 ep->rep_remote_cma.responder_resources = 32;
703 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500704 ep->rep_remote_cma.responder_resources =
705 devattr->max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400706
707 ep->rep_remote_cma.retry_count = 7;
708 ep->rep_remote_cma.flow_control = 0;
709 ep->rep_remote_cma.rnr_retry_count = 0;
710
711 return 0;
712
713out2:
Chuck Leverfc664482014-05-28 10:33:25 -0400714 err = ib_destroy_cq(sendcq);
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400715 if (err)
716 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
717 __func__, err);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400718out1:
Chuck Leverc05fbb52015-01-21 11:04:33 -0500719 rpcrdma_free_regbuf(ia, ep->rep_padbuf);
Chuck Leverd1ed8572015-08-03 13:03:30 -0400720out0:
721 if (ia->ri_dma_mr)
722 ib_dereg_mr(ia->ri_dma_mr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400723 return rc;
724}
725
726/*
727 * rpcrdma_ep_destroy
728 *
729 * Disconnect and destroy endpoint. After this, the only
730 * valid operations on the ep are to free it (if dynamically
731 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400733void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400734rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
735{
736 int rc;
737
738 dprintk("RPC: %s: entering, connected is %d\n",
739 __func__, ep->rep_connected);
740
Chuck Lever254f91e2014-05-28 10:32:17 -0400741 cancel_delayed_work_sync(&ep->rep_connect_worker);
742
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400743 if (ia->ri_id->qp) {
Chuck Lever282191c2014-07-29 17:25:55 -0400744 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400745 rdma_destroy_qp(ia->ri_id);
746 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400747 }
748
Chuck Leverc05fbb52015-01-21 11:04:33 -0500749 rpcrdma_free_regbuf(ia, ep->rep_padbuf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400750
Chuck Leverfc664482014-05-28 10:33:25 -0400751 rpcrdma_clean_cq(ep->rep_attr.recv_cq);
752 rc = ib_destroy_cq(ep->rep_attr.recv_cq);
753 if (rc)
754 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
755 __func__, rc);
756
757 rpcrdma_clean_cq(ep->rep_attr.send_cq);
758 rc = ib_destroy_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400759 if (rc)
760 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
761 __func__, rc);
Chuck Leverd1ed8572015-08-03 13:03:30 -0400762
763 if (ia->ri_dma_mr) {
764 rc = ib_dereg_mr(ia->ri_dma_mr);
765 dprintk("RPC: %s: ib_dereg_mr returned %i\n",
766 __func__, rc);
767 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400768}
769
770/*
771 * Connect unconnected endpoint.
772 */
773int
774rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
775{
Chuck Lever73806c82014-07-29 17:23:25 -0400776 struct rdma_cm_id *id, *old;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400777 int rc = 0;
778 int retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400779
Tom Talpeyc0555512008-10-10 11:32:45 -0400780 if (ep->rep_connected != 0) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400781 struct rpcrdma_xprt *xprt;
782retry:
Chuck Leverec62f402014-05-28 10:34:07 -0400783 dprintk("RPC: %s: reconnecting...\n", __func__);
Chuck Lever282191c2014-07-29 17:25:55 -0400784
785 rpcrdma_ep_disconnect(ep, ia);
Chuck Levera7bc2112014-07-29 17:23:52 -0400786 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400787
788 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
789 id = rpcrdma_create_id(xprt, ia,
790 (struct sockaddr *)&xprt->rx_data.addr);
791 if (IS_ERR(id)) {
Chuck Leverec62f402014-05-28 10:34:07 -0400792 rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400793 goto out;
794 }
795 /* TEMP TEMP TEMP - fail if new device:
796 * Deregister/remarshal *all* requests!
797 * Close and recreate adapter, pd, etc!
798 * Re-determine all attributes still sane!
799 * More stuff I haven't thought of!
800 * Rrrgh!
801 */
Chuck Lever89e0d1122015-05-26 11:51:56 -0400802 if (ia->ri_device != id->device) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400803 printk("RPC: %s: can't reconnect on "
804 "different device!\n", __func__);
805 rdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400806 rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400807 goto out;
808 }
809 /* END TEMP */
Chuck Leverec62f402014-05-28 10:34:07 -0400810 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
811 if (rc) {
812 dprintk("RPC: %s: rdma_create_qp failed %i\n",
813 __func__, rc);
814 rdma_destroy_id(id);
815 rc = -ENETUNREACH;
816 goto out;
817 }
Chuck Lever73806c82014-07-29 17:23:25 -0400818
819 write_lock(&ia->ri_qplock);
820 old = ia->ri_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400821 ia->ri_id = id;
Chuck Lever73806c82014-07-29 17:23:25 -0400822 write_unlock(&ia->ri_qplock);
823
824 rdma_destroy_qp(old);
825 rdma_destroy_id(old);
Chuck Leverec62f402014-05-28 10:34:07 -0400826 } else {
827 dprintk("RPC: %s: connecting...\n", __func__);
828 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
829 if (rc) {
830 dprintk("RPC: %s: rdma_create_qp failed %i\n",
831 __func__, rc);
832 /* do not update ep->rep_connected */
833 return -ENETUNREACH;
834 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400835 }
836
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400837 ep->rep_connected = 0;
838
839 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
840 if (rc) {
841 dprintk("RPC: %s: rdma_connect() failed with %i\n",
842 __func__, rc);
843 goto out;
844 }
845
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400846 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
847
848 /*
849 * Check state. A non-peer reject indicates no listener
850 * (ECONNREFUSED), which may be a transient state. All
851 * others indicate a transport condition which has already
852 * undergone a best-effort.
853 */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800854 if (ep->rep_connected == -ECONNREFUSED &&
855 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400856 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
857 goto retry;
858 }
859 if (ep->rep_connected <= 0) {
860 /* Sometimes, the only way to reliably connect to remote
861 * CMs is to use same nonzero values for ORD and IRD. */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400862 if (retry_count++ <= RDMA_CONNECT_RETRY_MAX + 1 &&
863 (ep->rep_remote_cma.responder_resources == 0 ||
864 ep->rep_remote_cma.initiator_depth !=
865 ep->rep_remote_cma.responder_resources)) {
866 if (ep->rep_remote_cma.responder_resources == 0)
867 ep->rep_remote_cma.responder_resources = 1;
868 ep->rep_remote_cma.initiator_depth =
869 ep->rep_remote_cma.responder_resources;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400870 goto retry;
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400871 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400872 rc = ep->rep_connected;
873 } else {
874 dprintk("RPC: %s: connected\n", __func__);
875 }
876
877out:
878 if (rc)
879 ep->rep_connected = rc;
880 return rc;
881}
882
883/*
884 * rpcrdma_ep_disconnect
885 *
886 * This is separate from destroy to facilitate the ability
887 * to reconnect without recreating the endpoint.
888 *
889 * This call is not reentrant, and must not be made in parallel
890 * on the same endpoint.
891 */
Chuck Lever282191c2014-07-29 17:25:55 -0400892void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400893rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
894{
895 int rc;
896
Chuck Levera7bc2112014-07-29 17:23:52 -0400897 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400898 rc = rdma_disconnect(ia->ri_id);
899 if (!rc) {
900 /* returns without wait if not connected */
901 wait_event_interruptible(ep->rep_connect_wait,
902 ep->rep_connected != 1);
903 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
904 (ep->rep_connected == 1) ? "still " : "dis");
905 } else {
906 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
907 ep->rep_connected = rc;
908 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400909}
910
Chuck Lever13924022015-01-21 11:03:52 -0500911static struct rpcrdma_req *
912rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
913{
Chuck Lever13924022015-01-21 11:03:52 -0500914 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500915
Chuck Lever85275c82015-01-21 11:04:16 -0500916 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500917 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -0500918 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -0500919
Chuck Lever13924022015-01-21 11:03:52 -0500920 req->rl_buffer = &r_xprt->rx_buf;
921 return req;
Chuck Lever13924022015-01-21 11:03:52 -0500922}
923
924static struct rpcrdma_rep *
925rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
926{
927 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -0500928 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
929 struct rpcrdma_rep *rep;
930 int rc;
931
932 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500933 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500934 if (rep == NULL)
935 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500936
Chuck Lever6b1184c2015-01-21 11:04:25 -0500937 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(ia, cdata->inline_rsize,
938 GFP_KERNEL);
939 if (IS_ERR(rep->rr_rdmabuf)) {
940 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500941 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500942 }
Chuck Lever13924022015-01-21 11:03:52 -0500943
Chuck Lever89e0d1122015-05-26 11:51:56 -0400944 rep->rr_device = ia->ri_device;
Chuck Leverfed171b2015-05-26 11:51:37 -0400945 rep->rr_rxprt = r_xprt;
Chuck Lever13924022015-01-21 11:03:52 -0500946 return rep;
947
948out_free:
949 kfree(rep);
950out:
951 return ERR_PTR(rc);
952}
953
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400954int
Chuck Leverac920d02015-01-21 11:03:44 -0500955rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400956{
Chuck Leverac920d02015-01-21 11:03:44 -0500957 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
958 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
959 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400960 char *p;
Chuck Lever13924022015-01-21 11:03:52 -0500961 size_t len;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400962 int i, rc;
963
964 buf->rb_max_requests = cdata->max_requests;
965 spin_lock_init(&buf->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400966
967 /* Need to allocate:
968 * 1. arrays for send and recv pointers
969 * 2. arrays of struct rpcrdma_req to fill in pointers
970 * 3. array of struct rpcrdma_rep for replies
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400971 * Send/recv buffers in req/rep need to be registered
972 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400973 len = buf->rb_max_requests *
974 (sizeof(struct rpcrdma_req *) + sizeof(struct rpcrdma_rep *));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400975
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400976 p = kzalloc(len, GFP_KERNEL);
977 if (p == NULL) {
978 dprintk("RPC: %s: req_t/rep_t/pad kzalloc(%zd) failed\n",
979 __func__, len);
980 rc = -ENOMEM;
981 goto out;
982 }
983 buf->rb_pool = p; /* for freeing it later */
984
985 buf->rb_send_bufs = (struct rpcrdma_req **) p;
986 p = (char *) &buf->rb_send_bufs[buf->rb_max_requests];
987 buf->rb_recv_bufs = (struct rpcrdma_rep **) p;
988 p = (char *) &buf->rb_recv_bufs[buf->rb_max_requests];
989
Chuck Lever91e70e72015-03-30 14:34:58 -0400990 rc = ia->ri_ops->ro_init(r_xprt);
991 if (rc)
992 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400993
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400994 for (i = 0; i < buf->rb_max_requests; i++) {
995 struct rpcrdma_req *req;
996 struct rpcrdma_rep *rep;
997
Chuck Lever13924022015-01-21 11:03:52 -0500998 req = rpcrdma_create_req(r_xprt);
999 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001000 dprintk("RPC: %s: request buffer %d alloc"
1001 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001002 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001003 goto out;
1004 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001005 buf->rb_send_bufs[i] = req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001006
Chuck Lever13924022015-01-21 11:03:52 -05001007 rep = rpcrdma_create_rep(r_xprt);
1008 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001009 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1010 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001011 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001012 goto out;
1013 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001014 buf->rb_recv_bufs[i] = rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001015 }
Chuck Lever13924022015-01-21 11:03:52 -05001016
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001017 return 0;
1018out:
1019 rpcrdma_buffer_destroy(buf);
1020 return rc;
1021}
1022
Chuck Lever2e845222014-07-29 17:25:38 -04001023static void
Chuck Lever13924022015-01-21 11:03:52 -05001024rpcrdma_destroy_rep(struct rpcrdma_ia *ia, struct rpcrdma_rep *rep)
1025{
1026 if (!rep)
1027 return;
1028
Chuck Lever6b1184c2015-01-21 11:04:25 -05001029 rpcrdma_free_regbuf(ia, rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001030 kfree(rep);
1031}
1032
1033static void
1034rpcrdma_destroy_req(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
1035{
1036 if (!req)
1037 return;
1038
Chuck Lever0ca77dc2015-01-21 11:04:08 -05001039 rpcrdma_free_regbuf(ia, req->rl_sendbuf);
Chuck Lever85275c82015-01-21 11:04:16 -05001040 rpcrdma_free_regbuf(ia, req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001041 kfree(req);
1042}
1043
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001044void
1045rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1046{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001047 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever2e845222014-07-29 17:25:38 -04001048 int i;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001049
1050 /* clean up in reverse order from create
1051 * 1. recv mr memory (mr free, then kfree)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001052 * 2. send mr memory (mr free, then kfree)
Chuck Lever2e845222014-07-29 17:25:38 -04001053 * 3. MWs
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001054 */
1055 dprintk("RPC: %s: entering\n", __func__);
1056
1057 for (i = 0; i < buf->rb_max_requests; i++) {
Chuck Lever13924022015-01-21 11:03:52 -05001058 if (buf->rb_recv_bufs)
1059 rpcrdma_destroy_rep(ia, buf->rb_recv_bufs[i]);
1060 if (buf->rb_send_bufs)
1061 rpcrdma_destroy_req(ia, buf->rb_send_bufs[i]);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001062 }
1063
Chuck Lever4561f342015-03-30 14:35:17 -04001064 ia->ri_ops->ro_destroy(buf);
Allen Andrews4034ba02014-05-28 10:32:09 -04001065
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001066 kfree(buf->rb_pool);
1067}
1068
Chuck Lever346aa662015-05-26 11:52:06 -04001069struct rpcrdma_mw *
1070rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001071{
Chuck Lever346aa662015-05-26 11:52:06 -04001072 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1073 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001074
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001075 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001076 if (!list_empty(&buf->rb_mws)) {
1077 mw = list_first_entry(&buf->rb_mws,
1078 struct rpcrdma_mw, mw_list);
1079 list_del_init(&mw->mw_list);
Chuck Leverc2922c02014-07-29 17:24:36 -04001080 }
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001081 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001082
1083 if (!mw)
1084 pr_err("RPC: %s: no MWs available\n", __func__);
1085 return mw;
Chuck Leverc2922c02014-07-29 17:24:36 -04001086}
1087
Chuck Lever346aa662015-05-26 11:52:06 -04001088void
1089rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -04001090{
Chuck Lever346aa662015-05-26 11:52:06 -04001091 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -04001092
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001093 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001094 list_add_tail(&mw->mw_list, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001095 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -04001096}
1097
1098static void
1099rpcrdma_buffer_put_sendbuf(struct rpcrdma_req *req, struct rpcrdma_buffer *buf)
1100{
1101 buf->rb_send_bufs[--buf->rb_send_index] = req;
1102 req->rl_niovs = 0;
1103 if (req->rl_reply) {
1104 buf->rb_recv_bufs[--buf->rb_recv_index] = req->rl_reply;
Chuck Leverc2922c02014-07-29 17:24:36 -04001105 req->rl_reply = NULL;
1106 }
1107}
1108
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001109/*
1110 * Get a set of request/reply buffers.
1111 *
1112 * Reply buffer (if needed) is attached to send buffer upon return.
1113 * Rule:
1114 * rb_send_index and rb_recv_index MUST always be pointing to the
1115 * *next* available buffer (non-NULL). They are incremented after
1116 * removing buffers, and decremented *before* returning them.
1117 */
1118struct rpcrdma_req *
1119rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1120{
1121 struct rpcrdma_req *req;
1122 unsigned long flags;
1123
1124 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc14d86e2015-05-26 11:52:35 -04001125
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001126 if (buffers->rb_send_index == buffers->rb_max_requests) {
1127 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1128 dprintk("RPC: %s: out of request buffers\n", __func__);
1129 return ((struct rpcrdma_req *)NULL);
1130 }
1131
1132 req = buffers->rb_send_bufs[buffers->rb_send_index];
1133 if (buffers->rb_send_index < buffers->rb_recv_index) {
1134 dprintk("RPC: %s: %d extra receives outstanding (ok)\n",
1135 __func__,
1136 buffers->rb_recv_index - buffers->rb_send_index);
1137 req->rl_reply = NULL;
1138 } else {
1139 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1140 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1141 }
1142 buffers->rb_send_bufs[buffers->rb_send_index++] = NULL;
Chuck Leverddb6beb2014-07-29 17:24:54 -04001143
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001144 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1145 return req;
1146}
1147
1148/*
1149 * Put request/reply buffers back into pool.
1150 * Pre-decrement counter/array index.
1151 */
1152void
1153rpcrdma_buffer_put(struct rpcrdma_req *req)
1154{
1155 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001156 unsigned long flags;
1157
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001158 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc2922c02014-07-29 17:24:36 -04001159 rpcrdma_buffer_put_sendbuf(req, buffers);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001160 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1161}
1162
1163/*
1164 * Recover reply buffers from pool.
1165 * This happens when recovering from error conditions.
1166 * Post-increment counter/array index.
1167 */
1168void
1169rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1170{
1171 struct rpcrdma_buffer *buffers = req->rl_buffer;
1172 unsigned long flags;
1173
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001174 spin_lock_irqsave(&buffers->rb_lock, flags);
1175 if (buffers->rb_recv_index < buffers->rb_max_requests) {
1176 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1177 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1178 }
1179 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1180}
1181
1182/*
1183 * Put reply buffers back into pool when not attached to
Chuck Leverb45ccfd2014-05-28 10:32:34 -04001184 * request. This happens in error conditions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001185 */
1186void
1187rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1188{
Chuck Leverfed171b2015-05-26 11:51:37 -04001189 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001190 unsigned long flags;
1191
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001192 spin_lock_irqsave(&buffers->rb_lock, flags);
1193 buffers->rb_recv_bufs[--buffers->rb_recv_index] = rep;
1194 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1195}
1196
1197/*
1198 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1199 */
1200
Chuck Leverd6547882015-03-30 14:35:44 -04001201void
1202rpcrdma_mapping_error(struct rpcrdma_mr_seg *seg)
1203{
1204 dprintk("RPC: map_one: offset %p iova %llx len %zu\n",
1205 seg->mr_offset,
1206 (unsigned long long)seg->mr_dma, seg->mr_dmalen);
1207}
1208
Chuck Lever9128c3e2015-01-21 11:04:00 -05001209/**
1210 * rpcrdma_alloc_regbuf - kmalloc and register memory for SEND/RECV buffers
1211 * @ia: controlling rpcrdma_ia
1212 * @size: size of buffer to be allocated, in bytes
1213 * @flags: GFP flags
1214 *
1215 * Returns pointer to private header of an area of internally
1216 * registered memory, or an ERR_PTR. The registered buffer follows
1217 * the end of the private header.
1218 *
1219 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1220 * receiving the payload of RDMA RECV operations. regbufs are not
1221 * used for RDMA READ/WRITE operations, thus are registered only for
1222 * LOCAL access.
1223 */
1224struct rpcrdma_regbuf *
1225rpcrdma_alloc_regbuf(struct rpcrdma_ia *ia, size_t size, gfp_t flags)
1226{
1227 struct rpcrdma_regbuf *rb;
Chuck Levere531dca2015-08-03 13:03:20 -04001228 struct ib_sge *iov;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001229
Chuck Lever9128c3e2015-01-21 11:04:00 -05001230 rb = kmalloc(sizeof(*rb) + size, flags);
1231 if (rb == NULL)
1232 goto out;
1233
Chuck Levere531dca2015-08-03 13:03:20 -04001234 iov = &rb->rg_iov;
1235 iov->addr = ib_dma_map_single(ia->ri_device,
1236 (void *)rb->rg_base, size,
1237 DMA_BIDIRECTIONAL);
1238 if (ib_dma_mapping_error(ia->ri_device, iov->addr))
Chuck Lever9128c3e2015-01-21 11:04:00 -05001239 goto out_free;
1240
Chuck Levere531dca2015-08-03 13:03:20 -04001241 iov->length = size;
Chuck Leverd1ed8572015-08-03 13:03:30 -04001242 iov->lkey = ia->ri_dma_lkey;
Chuck Levere531dca2015-08-03 13:03:20 -04001243 rb->rg_size = size;
1244 rb->rg_owner = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001245 return rb;
1246
1247out_free:
1248 kfree(rb);
1249out:
Chuck Levere531dca2015-08-03 13:03:20 -04001250 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001251}
1252
1253/**
1254 * rpcrdma_free_regbuf - deregister and free registered buffer
1255 * @ia: controlling rpcrdma_ia
1256 * @rb: regbuf to be deregistered and freed
1257 */
1258void
1259rpcrdma_free_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1260{
Chuck Levere531dca2015-08-03 13:03:20 -04001261 struct ib_sge *iov;
1262
1263 if (!rb)
1264 return;
1265
1266 iov = &rb->rg_iov;
1267 ib_dma_unmap_single(ia->ri_device,
1268 iov->addr, iov->length, DMA_BIDIRECTIONAL);
1269 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001270}
1271
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001272/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001273 * Prepost any receive buffer, then post send.
1274 *
1275 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1276 */
1277int
1278rpcrdma_ep_post(struct rpcrdma_ia *ia,
1279 struct rpcrdma_ep *ep,
1280 struct rpcrdma_req *req)
1281{
1282 struct ib_send_wr send_wr, *send_wr_fail;
1283 struct rpcrdma_rep *rep = req->rl_reply;
1284 int rc;
1285
1286 if (rep) {
1287 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1288 if (rc)
1289 goto out;
1290 req->rl_reply = NULL;
1291 }
1292
1293 send_wr.next = NULL;
Chuck Levere46ac342015-03-30 14:35:35 -04001294 send_wr.wr_id = RPCRDMA_IGNORE_COMPLETION;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001295 send_wr.sg_list = req->rl_send_iov;
1296 send_wr.num_sge = req->rl_niovs;
1297 send_wr.opcode = IB_WR_SEND;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001298 if (send_wr.num_sge == 4) /* no need to sync any pad (constant) */
Chuck Lever89e0d1122015-05-26 11:51:56 -04001299 ib_dma_sync_single_for_device(ia->ri_device,
1300 req->rl_send_iov[3].addr,
1301 req->rl_send_iov[3].length,
1302 DMA_TO_DEVICE);
1303 ib_dma_sync_single_for_device(ia->ri_device,
1304 req->rl_send_iov[1].addr,
1305 req->rl_send_iov[1].length,
1306 DMA_TO_DEVICE);
1307 ib_dma_sync_single_for_device(ia->ri_device,
1308 req->rl_send_iov[0].addr,
1309 req->rl_send_iov[0].length,
1310 DMA_TO_DEVICE);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001311
1312 if (DECR_CQCOUNT(ep) > 0)
1313 send_wr.send_flags = 0;
1314 else { /* Provider must take a send completion every now and then */
1315 INIT_CQCOUNT(ep);
1316 send_wr.send_flags = IB_SEND_SIGNALED;
1317 }
1318
1319 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail);
1320 if (rc)
1321 dprintk("RPC: %s: ib_post_send returned %i\n", __func__,
1322 rc);
1323out:
1324 return rc;
1325}
1326
1327/*
1328 * (Re)post a receive buffer.
1329 */
1330int
1331rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
1332 struct rpcrdma_ep *ep,
1333 struct rpcrdma_rep *rep)
1334{
1335 struct ib_recv_wr recv_wr, *recv_wr_fail;
1336 int rc;
1337
1338 recv_wr.next = NULL;
1339 recv_wr.wr_id = (u64) (unsigned long) rep;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001340 recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001341 recv_wr.num_sge = 1;
1342
Chuck Lever89e0d1122015-05-26 11:51:56 -04001343 ib_dma_sync_single_for_cpu(ia->ri_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -05001344 rdmab_addr(rep->rr_rdmabuf),
1345 rdmab_length(rep->rr_rdmabuf),
1346 DMA_BIDIRECTIONAL);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001347
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001348 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
1349
1350 if (rc)
1351 dprintk("RPC: %s: ib_post_recv returned %i\n", __func__,
1352 rc);
1353 return rc;
1354}
Chuck Lever43e95982014-07-29 17:23:34 -04001355
Chuck Lever1c9351e2015-03-30 14:34:30 -04001356/* How many chunk list items fit within our inline buffers?
Chuck Lever43e95982014-07-29 17:23:34 -04001357 */
Chuck Lever1c9351e2015-03-30 14:34:30 -04001358unsigned int
1359rpcrdma_max_segments(struct rpcrdma_xprt *r_xprt)
Chuck Lever43e95982014-07-29 17:23:34 -04001360{
1361 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever1c9351e2015-03-30 14:34:30 -04001362 int bytes, segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001363
Chuck Lever1c9351e2015-03-30 14:34:30 -04001364 bytes = min_t(unsigned int, cdata->inline_wsize, cdata->inline_rsize);
1365 bytes -= RPCRDMA_HDRLEN_MIN;
1366 if (bytes < sizeof(struct rpcrdma_segment) * 2) {
1367 pr_warn("RPC: %s: inline threshold too small\n",
1368 __func__);
1369 return 0;
Chuck Lever43e95982014-07-29 17:23:34 -04001370 }
Chuck Lever1c9351e2015-03-30 14:34:30 -04001371
1372 segments = 1 << (fls(bytes / sizeof(struct rpcrdma_segment)) - 1);
1373 dprintk("RPC: %s: max chunk list size = %d segments\n",
1374 __func__, segments);
1375 return segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001376}