blob: da184f98fdf97033fad724e37e4a50332c8927e0 [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{
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400496 int rc, mem_priv;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400497 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Lever7bc79722015-01-21 11:03:27 -0500498 struct ib_device_attr *devattr = &ia->ri_devattr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400499
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400500 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
501 if (IS_ERR(ia->ri_id)) {
502 rc = PTR_ERR(ia->ri_id);
503 goto out1;
504 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400505 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400506
Chuck Lever89e0d1122015-05-26 11:51:56 -0400507 ia->ri_pd = ib_alloc_pd(ia->ri_device);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400508 if (IS_ERR(ia->ri_pd)) {
509 rc = PTR_ERR(ia->ri_pd);
510 dprintk("RPC: %s: ib_alloc_pd() failed %i\n",
511 __func__, rc);
512 goto out2;
513 }
514
Chuck Lever89e0d1122015-05-26 11:51:56 -0400515 rc = ib_query_device(ia->ri_device, devattr);
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400516 if (rc) {
517 dprintk("RPC: %s: ib_query_device failed %d\n",
518 __func__, rc);
Chuck Lever5ae711a2015-01-21 11:03:19 -0500519 goto out3;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400520 }
521
Chuck Lever7bc79722015-01-21 11:03:27 -0500522 if (devattr->device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY) {
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400523 ia->ri_have_dma_lkey = 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400524 ia->ri_dma_lkey = ia->ri_device->local_dma_lkey;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400525 }
526
Chuck Leverf10eafd2014-05-28 10:32:51 -0400527 if (memreg == RPCRDMA_FRMR) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400528 /* Requires both frmr reg and local dma lkey */
Chuck Lever41f97022015-03-30 14:34:12 -0400529 if (((devattr->device_cap_flags &
Tom Talpey3197d3092008-10-09 15:00:20 -0400530 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) !=
Chuck Lever41f97022015-03-30 14:34:12 -0400531 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) ||
532 (devattr->max_fast_reg_page_list_len == 0)) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400533 dprintk("RPC: %s: FRMR registration "
Chuck Leverf10eafd2014-05-28 10:32:51 -0400534 "not supported by HCA\n", __func__);
535 memreg = RPCRDMA_MTHCAFMR;
Tom Talpey3197d3092008-10-09 15:00:20 -0400536 }
Chuck Leverf10eafd2014-05-28 10:32:51 -0400537 }
538 if (memreg == RPCRDMA_MTHCAFMR) {
Chuck Lever89e0d1122015-05-26 11:51:56 -0400539 if (!ia->ri_device->alloc_fmr) {
Chuck Leverf10eafd2014-05-28 10:32:51 -0400540 dprintk("RPC: %s: MTHCAFMR registration "
541 "not supported by HCA\n", __func__);
Chuck Leverd2310932015-08-03 13:03:09 -0400542 goto out3;
Chuck Leverf10eafd2014-05-28 10:32:51 -0400543 }
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400544 }
545
546 /*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400547 * Optionally obtain an underlying physical identity mapping in
548 * order to do a memory window-based bind. This base registration
549 * is protected from remote access - that is enabled only by binding
550 * for the specific bytes targeted during each RPC operation, and
551 * revoked after the corresponding completion similar to a storage
552 * adapter.
553 */
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400554 switch (memreg) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400555 case RPCRDMA_FRMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400556 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400557 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400558 case RPCRDMA_ALLPHYSICAL:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400559 ia->ri_ops = &rpcrdma_physical_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400560 mem_priv = IB_ACCESS_LOCAL_WRITE |
561 IB_ACCESS_REMOTE_WRITE |
562 IB_ACCESS_REMOTE_READ;
563 goto register_setup;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400564 case RPCRDMA_MTHCAFMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400565 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400566 if (ia->ri_have_dma_lkey)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400567 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400568 mem_priv = IB_ACCESS_LOCAL_WRITE;
569 register_setup:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400570 ia->ri_bind_mem = ib_get_dma_mr(ia->ri_pd, mem_priv);
571 if (IS_ERR(ia->ri_bind_mem)) {
572 printk(KERN_ALERT "%s: ib_get_dma_mr for "
Chuck Lever0ac531c2014-05-28 10:32:43 -0400573 "phys register failed with %lX\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400574 __func__, PTR_ERR(ia->ri_bind_mem));
Chuck Lever0ac531c2014-05-28 10:32:43 -0400575 rc = -ENOMEM;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500576 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400577 }
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400578 break;
579 default:
Chuck Levercdd9ade2014-05-28 10:33:00 -0400580 printk(KERN_ERR "RPC: Unsupported memory "
581 "registration mode: %d\n", memreg);
582 rc = -ENOMEM;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500583 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400584 }
Chuck Levera0ce85f2015-03-30 14:34:21 -0400585 dprintk("RPC: %s: memory registration strategy is '%s'\n",
586 __func__, ia->ri_ops->ro_displayname);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400587
Chuck Lever73806c82014-07-29 17:23:25 -0400588 rwlock_init(&ia->ri_qplock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400589 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500590
591out3:
592 ib_dealloc_pd(ia->ri_pd);
593 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400594out2:
595 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400596 ia->ri_id = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400597out1:
598 return rc;
599}
600
601/*
602 * Clean up/close an IA.
603 * o if event handles and PD have been initialized, free them.
604 * o close the IA
605 */
606void
607rpcrdma_ia_close(struct rpcrdma_ia *ia)
608{
609 int rc;
610
611 dprintk("RPC: %s: entering\n", __func__);
612 if (ia->ri_bind_mem != NULL) {
613 rc = ib_dereg_mr(ia->ri_bind_mem);
614 dprintk("RPC: %s: ib_dereg_mr returned %i\n",
615 __func__, rc);
616 }
Chuck Lever6d446982015-05-26 11:51:27 -0400617
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400618 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
619 if (ia->ri_id->qp)
620 rdma_destroy_qp(ia->ri_id);
621 rdma_destroy_id(ia->ri_id);
622 ia->ri_id = NULL;
623 }
Chuck Lever6d446982015-05-26 11:51:27 -0400624
625 /* If the pd is still busy, xprtrdma missed freeing a resource */
626 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
627 WARN_ON(ib_dealloc_pd(ia->ri_pd));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400628}
629
630/*
631 * Create unconnected endpoint.
632 */
633int
634rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
635 struct rpcrdma_create_data_internal *cdata)
636{
Chuck Lever7bc79722015-01-21 11:03:27 -0500637 struct ib_device_attr *devattr = &ia->ri_devattr;
Chuck Leverfc664482014-05-28 10:33:25 -0400638 struct ib_cq *sendcq, *recvcq;
Matan Barak8e372102015-06-11 16:35:21 +0300639 struct ib_cq_init_attr cq_attr = {};
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400640 int rc, err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400641
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400642 /* check provider's send/recv wr limits */
Chuck Lever7bc79722015-01-21 11:03:27 -0500643 if (cdata->max_requests > devattr->max_qp_wr)
644 cdata->max_requests = devattr->max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400645
646 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
647 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400648 ep->rep_attr.srq = NULL;
649 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever3968cb52015-03-30 14:35:26 -0400650 rc = ia->ri_ops->ro_open(ia, ep, cdata);
651 if (rc)
652 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400653 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
654 ep->rep_attr.cap.max_send_sge = (cdata->padding ? 4 : 2);
655 ep->rep_attr.cap.max_recv_sge = 1;
656 ep->rep_attr.cap.max_inline_data = 0;
657 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
658 ep->rep_attr.qp_type = IB_QPT_RC;
659 ep->rep_attr.port_num = ~0;
660
Chuck Leverc05fbb52015-01-21 11:04:33 -0500661 if (cdata->padding) {
662 ep->rep_padbuf = rpcrdma_alloc_regbuf(ia, cdata->padding,
663 GFP_KERNEL);
664 if (IS_ERR(ep->rep_padbuf))
665 return PTR_ERR(ep->rep_padbuf);
666 } else
667 ep->rep_padbuf = NULL;
668
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400669 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
670 "iovs: send %d recv %d\n",
671 __func__,
672 ep->rep_attr.cap.max_send_wr,
673 ep->rep_attr.cap.max_recv_wr,
674 ep->rep_attr.cap.max_send_sge,
675 ep->rep_attr.cap.max_recv_sge);
676
677 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400678 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Levere7104a22014-11-08 20:14:20 -0500679 if (ep->rep_cqinit > RPCRDMA_MAX_UNSIGNALED_SENDS)
680 ep->rep_cqinit = RPCRDMA_MAX_UNSIGNALED_SENDS;
681 else if (ep->rep_cqinit <= 2)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400682 ep->rep_cqinit = 0;
683 INIT_CQCOUNT(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400684 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400685 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400686
Matan Barak8e372102015-06-11 16:35:21 +0300687 cq_attr.cqe = ep->rep_attr.cap.max_send_wr + 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400688 sendcq = ib_create_cq(ia->ri_device, rpcrdma_sendcq_upcall,
Linus Torvalds8688d952015-07-02 11:32:23 -0700689 rpcrdma_cq_async_error_upcall, ep, &cq_attr);
Chuck Leverfc664482014-05-28 10:33:25 -0400690 if (IS_ERR(sendcq)) {
691 rc = PTR_ERR(sendcq);
692 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400693 __func__, rc);
694 goto out1;
695 }
696
Chuck Leverfc664482014-05-28 10:33:25 -0400697 rc = ib_req_notify_cq(sendcq, IB_CQ_NEXT_COMP);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400698 if (rc) {
699 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
700 __func__, rc);
701 goto out2;
702 }
703
Matan Barak8e372102015-06-11 16:35:21 +0300704 cq_attr.cqe = ep->rep_attr.cap.max_recv_wr + 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400705 recvcq = ib_create_cq(ia->ri_device, rpcrdma_recvcq_upcall,
Linus Torvalds8688d952015-07-02 11:32:23 -0700706 rpcrdma_cq_async_error_upcall, ep, &cq_attr);
Chuck Leverfc664482014-05-28 10:33:25 -0400707 if (IS_ERR(recvcq)) {
708 rc = PTR_ERR(recvcq);
709 dprintk("RPC: %s: failed to create recv CQ: %i\n",
710 __func__, rc);
711 goto out2;
712 }
713
714 rc = ib_req_notify_cq(recvcq, IB_CQ_NEXT_COMP);
715 if (rc) {
716 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
717 __func__, rc);
718 ib_destroy_cq(recvcq);
719 goto out2;
720 }
721
722 ep->rep_attr.send_cq = sendcq;
723 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400724
725 /* Initialize cma parameters */
726
727 /* RPC/RDMA does not use private data */
728 ep->rep_remote_cma.private_data = NULL;
729 ep->rep_remote_cma.private_data_len = 0;
730
731 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732 ep->rep_remote_cma.initiator_depth = 0;
Chuck Lever7bc79722015-01-21 11:03:27 -0500733 if (devattr->max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400734 ep->rep_remote_cma.responder_resources = 32;
735 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500736 ep->rep_remote_cma.responder_resources =
737 devattr->max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400738
739 ep->rep_remote_cma.retry_count = 7;
740 ep->rep_remote_cma.flow_control = 0;
741 ep->rep_remote_cma.rnr_retry_count = 0;
742
743 return 0;
744
745out2:
Chuck Leverfc664482014-05-28 10:33:25 -0400746 err = ib_destroy_cq(sendcq);
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400747 if (err)
748 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
749 __func__, err);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400750out1:
Chuck Leverc05fbb52015-01-21 11:04:33 -0500751 rpcrdma_free_regbuf(ia, ep->rep_padbuf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400752 return rc;
753}
754
755/*
756 * rpcrdma_ep_destroy
757 *
758 * Disconnect and destroy endpoint. After this, the only
759 * valid operations on the ep are to free it (if dynamically
760 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400761 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400762void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400763rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
764{
765 int rc;
766
767 dprintk("RPC: %s: entering, connected is %d\n",
768 __func__, ep->rep_connected);
769
Chuck Lever254f91e2014-05-28 10:32:17 -0400770 cancel_delayed_work_sync(&ep->rep_connect_worker);
771
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400772 if (ia->ri_id->qp) {
Chuck Lever282191c2014-07-29 17:25:55 -0400773 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400774 rdma_destroy_qp(ia->ri_id);
775 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400776 }
777
Chuck Leverc05fbb52015-01-21 11:04:33 -0500778 rpcrdma_free_regbuf(ia, ep->rep_padbuf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400779
Chuck Leverfc664482014-05-28 10:33:25 -0400780 rpcrdma_clean_cq(ep->rep_attr.recv_cq);
781 rc = ib_destroy_cq(ep->rep_attr.recv_cq);
782 if (rc)
783 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
784 __func__, rc);
785
786 rpcrdma_clean_cq(ep->rep_attr.send_cq);
787 rc = ib_destroy_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400788 if (rc)
789 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
790 __func__, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400791}
792
793/*
794 * Connect unconnected endpoint.
795 */
796int
797rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
798{
Chuck Lever73806c82014-07-29 17:23:25 -0400799 struct rdma_cm_id *id, *old;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400800 int rc = 0;
801 int retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400802
Tom Talpeyc0555512008-10-10 11:32:45 -0400803 if (ep->rep_connected != 0) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400804 struct rpcrdma_xprt *xprt;
805retry:
Chuck Leverec62f402014-05-28 10:34:07 -0400806 dprintk("RPC: %s: reconnecting...\n", __func__);
Chuck Lever282191c2014-07-29 17:25:55 -0400807
808 rpcrdma_ep_disconnect(ep, ia);
Chuck Levera7bc2112014-07-29 17:23:52 -0400809 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400810
811 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
812 id = rpcrdma_create_id(xprt, ia,
813 (struct sockaddr *)&xprt->rx_data.addr);
814 if (IS_ERR(id)) {
Chuck Leverec62f402014-05-28 10:34:07 -0400815 rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400816 goto out;
817 }
818 /* TEMP TEMP TEMP - fail if new device:
819 * Deregister/remarshal *all* requests!
820 * Close and recreate adapter, pd, etc!
821 * Re-determine all attributes still sane!
822 * More stuff I haven't thought of!
823 * Rrrgh!
824 */
Chuck Lever89e0d1122015-05-26 11:51:56 -0400825 if (ia->ri_device != id->device) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400826 printk("RPC: %s: can't reconnect on "
827 "different device!\n", __func__);
828 rdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400829 rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400830 goto out;
831 }
832 /* END TEMP */
Chuck Leverec62f402014-05-28 10:34:07 -0400833 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
834 if (rc) {
835 dprintk("RPC: %s: rdma_create_qp failed %i\n",
836 __func__, rc);
837 rdma_destroy_id(id);
838 rc = -ENETUNREACH;
839 goto out;
840 }
Chuck Lever73806c82014-07-29 17:23:25 -0400841
842 write_lock(&ia->ri_qplock);
843 old = ia->ri_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400844 ia->ri_id = id;
Chuck Lever73806c82014-07-29 17:23:25 -0400845 write_unlock(&ia->ri_qplock);
846
847 rdma_destroy_qp(old);
848 rdma_destroy_id(old);
Chuck Leverec62f402014-05-28 10:34:07 -0400849 } else {
850 dprintk("RPC: %s: connecting...\n", __func__);
851 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
852 if (rc) {
853 dprintk("RPC: %s: rdma_create_qp failed %i\n",
854 __func__, rc);
855 /* do not update ep->rep_connected */
856 return -ENETUNREACH;
857 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400858 }
859
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400860 ep->rep_connected = 0;
861
862 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
863 if (rc) {
864 dprintk("RPC: %s: rdma_connect() failed with %i\n",
865 __func__, rc);
866 goto out;
867 }
868
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400869 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
870
871 /*
872 * Check state. A non-peer reject indicates no listener
873 * (ECONNREFUSED), which may be a transient state. All
874 * others indicate a transport condition which has already
875 * undergone a best-effort.
876 */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800877 if (ep->rep_connected == -ECONNREFUSED &&
878 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400879 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
880 goto retry;
881 }
882 if (ep->rep_connected <= 0) {
883 /* Sometimes, the only way to reliably connect to remote
884 * CMs is to use same nonzero values for ORD and IRD. */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400885 if (retry_count++ <= RDMA_CONNECT_RETRY_MAX + 1 &&
886 (ep->rep_remote_cma.responder_resources == 0 ||
887 ep->rep_remote_cma.initiator_depth !=
888 ep->rep_remote_cma.responder_resources)) {
889 if (ep->rep_remote_cma.responder_resources == 0)
890 ep->rep_remote_cma.responder_resources = 1;
891 ep->rep_remote_cma.initiator_depth =
892 ep->rep_remote_cma.responder_resources;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400893 goto retry;
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400894 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400895 rc = ep->rep_connected;
896 } else {
897 dprintk("RPC: %s: connected\n", __func__);
898 }
899
900out:
901 if (rc)
902 ep->rep_connected = rc;
903 return rc;
904}
905
906/*
907 * rpcrdma_ep_disconnect
908 *
909 * This is separate from destroy to facilitate the ability
910 * to reconnect without recreating the endpoint.
911 *
912 * This call is not reentrant, and must not be made in parallel
913 * on the same endpoint.
914 */
Chuck Lever282191c2014-07-29 17:25:55 -0400915void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400916rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
917{
918 int rc;
919
Chuck Levera7bc2112014-07-29 17:23:52 -0400920 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400921 rc = rdma_disconnect(ia->ri_id);
922 if (!rc) {
923 /* returns without wait if not connected */
924 wait_event_interruptible(ep->rep_connect_wait,
925 ep->rep_connected != 1);
926 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
927 (ep->rep_connected == 1) ? "still " : "dis");
928 } else {
929 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
930 ep->rep_connected = rc;
931 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400932}
933
Chuck Lever13924022015-01-21 11:03:52 -0500934static struct rpcrdma_req *
935rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
936{
Chuck Lever13924022015-01-21 11:03:52 -0500937 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500938
Chuck Lever85275c82015-01-21 11:04:16 -0500939 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500940 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -0500941 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -0500942
Chuck Lever13924022015-01-21 11:03:52 -0500943 req->rl_buffer = &r_xprt->rx_buf;
944 return req;
Chuck Lever13924022015-01-21 11:03:52 -0500945}
946
947static struct rpcrdma_rep *
948rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
949{
950 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -0500951 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
952 struct rpcrdma_rep *rep;
953 int rc;
954
955 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500956 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500957 if (rep == NULL)
958 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500959
Chuck Lever6b1184c2015-01-21 11:04:25 -0500960 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(ia, cdata->inline_rsize,
961 GFP_KERNEL);
962 if (IS_ERR(rep->rr_rdmabuf)) {
963 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500964 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500965 }
Chuck Lever13924022015-01-21 11:03:52 -0500966
Chuck Lever89e0d1122015-05-26 11:51:56 -0400967 rep->rr_device = ia->ri_device;
Chuck Leverfed171b2015-05-26 11:51:37 -0400968 rep->rr_rxprt = r_xprt;
Chuck Lever13924022015-01-21 11:03:52 -0500969 return rep;
970
971out_free:
972 kfree(rep);
973out:
974 return ERR_PTR(rc);
975}
976
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400977int
Chuck Leverac920d02015-01-21 11:03:44 -0500978rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400979{
Chuck Leverac920d02015-01-21 11:03:44 -0500980 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
981 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
982 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400983 char *p;
Chuck Lever13924022015-01-21 11:03:52 -0500984 size_t len;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400985 int i, rc;
986
987 buf->rb_max_requests = cdata->max_requests;
988 spin_lock_init(&buf->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400989
990 /* Need to allocate:
991 * 1. arrays for send and recv pointers
992 * 2. arrays of struct rpcrdma_req to fill in pointers
993 * 3. array of struct rpcrdma_rep for replies
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400994 * Send/recv buffers in req/rep need to be registered
995 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400996 len = buf->rb_max_requests *
997 (sizeof(struct rpcrdma_req *) + sizeof(struct rpcrdma_rep *));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400998
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400999 p = kzalloc(len, GFP_KERNEL);
1000 if (p == NULL) {
1001 dprintk("RPC: %s: req_t/rep_t/pad kzalloc(%zd) failed\n",
1002 __func__, len);
1003 rc = -ENOMEM;
1004 goto out;
1005 }
1006 buf->rb_pool = p; /* for freeing it later */
1007
1008 buf->rb_send_bufs = (struct rpcrdma_req **) p;
1009 p = (char *) &buf->rb_send_bufs[buf->rb_max_requests];
1010 buf->rb_recv_bufs = (struct rpcrdma_rep **) p;
1011 p = (char *) &buf->rb_recv_bufs[buf->rb_max_requests];
1012
Chuck Lever91e70e72015-03-30 14:34:58 -04001013 rc = ia->ri_ops->ro_init(r_xprt);
1014 if (rc)
1015 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001016
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001017 for (i = 0; i < buf->rb_max_requests; i++) {
1018 struct rpcrdma_req *req;
1019 struct rpcrdma_rep *rep;
1020
Chuck Lever13924022015-01-21 11:03:52 -05001021 req = rpcrdma_create_req(r_xprt);
1022 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001023 dprintk("RPC: %s: request buffer %d alloc"
1024 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001025 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001026 goto out;
1027 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001028 buf->rb_send_bufs[i] = req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001029
Chuck Lever13924022015-01-21 11:03:52 -05001030 rep = rpcrdma_create_rep(r_xprt);
1031 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001032 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1033 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001034 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001035 goto out;
1036 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001037 buf->rb_recv_bufs[i] = rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001038 }
Chuck Lever13924022015-01-21 11:03:52 -05001039
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001040 return 0;
1041out:
1042 rpcrdma_buffer_destroy(buf);
1043 return rc;
1044}
1045
Chuck Lever2e845222014-07-29 17:25:38 -04001046static void
Chuck Lever13924022015-01-21 11:03:52 -05001047rpcrdma_destroy_rep(struct rpcrdma_ia *ia, struct rpcrdma_rep *rep)
1048{
1049 if (!rep)
1050 return;
1051
Chuck Lever6b1184c2015-01-21 11:04:25 -05001052 rpcrdma_free_regbuf(ia, rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001053 kfree(rep);
1054}
1055
1056static void
1057rpcrdma_destroy_req(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
1058{
1059 if (!req)
1060 return;
1061
Chuck Lever0ca77dc2015-01-21 11:04:08 -05001062 rpcrdma_free_regbuf(ia, req->rl_sendbuf);
Chuck Lever85275c82015-01-21 11:04:16 -05001063 rpcrdma_free_regbuf(ia, req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001064 kfree(req);
1065}
1066
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001067void
1068rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1069{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001070 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever2e845222014-07-29 17:25:38 -04001071 int i;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001072
1073 /* clean up in reverse order from create
1074 * 1. recv mr memory (mr free, then kfree)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001075 * 2. send mr memory (mr free, then kfree)
Chuck Lever2e845222014-07-29 17:25:38 -04001076 * 3. MWs
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001077 */
1078 dprintk("RPC: %s: entering\n", __func__);
1079
1080 for (i = 0; i < buf->rb_max_requests; i++) {
Chuck Lever13924022015-01-21 11:03:52 -05001081 if (buf->rb_recv_bufs)
1082 rpcrdma_destroy_rep(ia, buf->rb_recv_bufs[i]);
1083 if (buf->rb_send_bufs)
1084 rpcrdma_destroy_req(ia, buf->rb_send_bufs[i]);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001085 }
1086
Chuck Lever4561f342015-03-30 14:35:17 -04001087 ia->ri_ops->ro_destroy(buf);
Allen Andrews4034ba02014-05-28 10:32:09 -04001088
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001089 kfree(buf->rb_pool);
1090}
1091
Chuck Lever346aa662015-05-26 11:52:06 -04001092struct rpcrdma_mw *
1093rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001094{
Chuck Lever346aa662015-05-26 11:52:06 -04001095 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1096 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001097
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001098 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001099 if (!list_empty(&buf->rb_mws)) {
1100 mw = list_first_entry(&buf->rb_mws,
1101 struct rpcrdma_mw, mw_list);
1102 list_del_init(&mw->mw_list);
Chuck Leverc2922c02014-07-29 17:24:36 -04001103 }
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001104 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001105
1106 if (!mw)
1107 pr_err("RPC: %s: no MWs available\n", __func__);
1108 return mw;
Chuck Leverc2922c02014-07-29 17:24:36 -04001109}
1110
Chuck Lever346aa662015-05-26 11:52:06 -04001111void
1112rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -04001113{
Chuck Lever346aa662015-05-26 11:52:06 -04001114 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -04001115
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001116 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001117 list_add_tail(&mw->mw_list, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001118 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -04001119}
1120
1121static void
1122rpcrdma_buffer_put_sendbuf(struct rpcrdma_req *req, struct rpcrdma_buffer *buf)
1123{
1124 buf->rb_send_bufs[--buf->rb_send_index] = req;
1125 req->rl_niovs = 0;
1126 if (req->rl_reply) {
1127 buf->rb_recv_bufs[--buf->rb_recv_index] = req->rl_reply;
Chuck Leverc2922c02014-07-29 17:24:36 -04001128 req->rl_reply = NULL;
1129 }
1130}
1131
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001132/*
1133 * Get a set of request/reply buffers.
1134 *
1135 * Reply buffer (if needed) is attached to send buffer upon return.
1136 * Rule:
1137 * rb_send_index and rb_recv_index MUST always be pointing to the
1138 * *next* available buffer (non-NULL). They are incremented after
1139 * removing buffers, and decremented *before* returning them.
1140 */
1141struct rpcrdma_req *
1142rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1143{
1144 struct rpcrdma_req *req;
1145 unsigned long flags;
1146
1147 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc14d86e2015-05-26 11:52:35 -04001148
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001149 if (buffers->rb_send_index == buffers->rb_max_requests) {
1150 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1151 dprintk("RPC: %s: out of request buffers\n", __func__);
1152 return ((struct rpcrdma_req *)NULL);
1153 }
1154
1155 req = buffers->rb_send_bufs[buffers->rb_send_index];
1156 if (buffers->rb_send_index < buffers->rb_recv_index) {
1157 dprintk("RPC: %s: %d extra receives outstanding (ok)\n",
1158 __func__,
1159 buffers->rb_recv_index - buffers->rb_send_index);
1160 req->rl_reply = NULL;
1161 } else {
1162 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1163 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1164 }
1165 buffers->rb_send_bufs[buffers->rb_send_index++] = NULL;
Chuck Leverddb6beb2014-07-29 17:24:54 -04001166
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001167 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1168 return req;
1169}
1170
1171/*
1172 * Put request/reply buffers back into pool.
1173 * Pre-decrement counter/array index.
1174 */
1175void
1176rpcrdma_buffer_put(struct rpcrdma_req *req)
1177{
1178 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001179 unsigned long flags;
1180
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001181 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc2922c02014-07-29 17:24:36 -04001182 rpcrdma_buffer_put_sendbuf(req, buffers);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001183 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1184}
1185
1186/*
1187 * Recover reply buffers from pool.
1188 * This happens when recovering from error conditions.
1189 * Post-increment counter/array index.
1190 */
1191void
1192rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1193{
1194 struct rpcrdma_buffer *buffers = req->rl_buffer;
1195 unsigned long flags;
1196
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001197 spin_lock_irqsave(&buffers->rb_lock, flags);
1198 if (buffers->rb_recv_index < buffers->rb_max_requests) {
1199 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1200 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1201 }
1202 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1203}
1204
1205/*
1206 * Put reply buffers back into pool when not attached to
Chuck Leverb45ccfd2014-05-28 10:32:34 -04001207 * request. This happens in error conditions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001208 */
1209void
1210rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1211{
Chuck Leverfed171b2015-05-26 11:51:37 -04001212 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001213 unsigned long flags;
1214
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001215 spin_lock_irqsave(&buffers->rb_lock, flags);
1216 buffers->rb_recv_bufs[--buffers->rb_recv_index] = rep;
1217 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1218}
1219
1220/*
1221 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1222 */
1223
Chuck Leverd6547882015-03-30 14:35:44 -04001224void
1225rpcrdma_mapping_error(struct rpcrdma_mr_seg *seg)
1226{
1227 dprintk("RPC: map_one: offset %p iova %llx len %zu\n",
1228 seg->mr_offset,
1229 (unsigned long long)seg->mr_dma, seg->mr_dmalen);
1230}
1231
Chuck Lever9128c3e2015-01-21 11:04:00 -05001232/**
1233 * rpcrdma_alloc_regbuf - kmalloc and register memory for SEND/RECV buffers
1234 * @ia: controlling rpcrdma_ia
1235 * @size: size of buffer to be allocated, in bytes
1236 * @flags: GFP flags
1237 *
1238 * Returns pointer to private header of an area of internally
1239 * registered memory, or an ERR_PTR. The registered buffer follows
1240 * the end of the private header.
1241 *
1242 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1243 * receiving the payload of RDMA RECV operations. regbufs are not
1244 * used for RDMA READ/WRITE operations, thus are registered only for
1245 * LOCAL access.
1246 */
1247struct rpcrdma_regbuf *
1248rpcrdma_alloc_regbuf(struct rpcrdma_ia *ia, size_t size, gfp_t flags)
1249{
1250 struct rpcrdma_regbuf *rb;
Chuck Levere531dca2015-08-03 13:03:20 -04001251 struct ib_sge *iov;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001252
Chuck Lever9128c3e2015-01-21 11:04:00 -05001253 rb = kmalloc(sizeof(*rb) + size, flags);
1254 if (rb == NULL)
1255 goto out;
1256
Chuck Levere531dca2015-08-03 13:03:20 -04001257 iov = &rb->rg_iov;
1258 iov->addr = ib_dma_map_single(ia->ri_device,
1259 (void *)rb->rg_base, size,
1260 DMA_BIDIRECTIONAL);
1261 if (ib_dma_mapping_error(ia->ri_device, iov->addr))
Chuck Lever9128c3e2015-01-21 11:04:00 -05001262 goto out_free;
1263
Chuck Levere531dca2015-08-03 13:03:20 -04001264 iov->length = size;
1265 iov->lkey = ia->ri_have_dma_lkey ?
1266 ia->ri_dma_lkey : ia->ri_bind_mem->lkey;
1267 rb->rg_size = size;
1268 rb->rg_owner = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001269 return rb;
1270
1271out_free:
1272 kfree(rb);
1273out:
Chuck Levere531dca2015-08-03 13:03:20 -04001274 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001275}
1276
1277/**
1278 * rpcrdma_free_regbuf - deregister and free registered buffer
1279 * @ia: controlling rpcrdma_ia
1280 * @rb: regbuf to be deregistered and freed
1281 */
1282void
1283rpcrdma_free_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1284{
Chuck Levere531dca2015-08-03 13:03:20 -04001285 struct ib_sge *iov;
1286
1287 if (!rb)
1288 return;
1289
1290 iov = &rb->rg_iov;
1291 ib_dma_unmap_single(ia->ri_device,
1292 iov->addr, iov->length, DMA_BIDIRECTIONAL);
1293 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001294}
1295
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001296/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001297 * Prepost any receive buffer, then post send.
1298 *
1299 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1300 */
1301int
1302rpcrdma_ep_post(struct rpcrdma_ia *ia,
1303 struct rpcrdma_ep *ep,
1304 struct rpcrdma_req *req)
1305{
1306 struct ib_send_wr send_wr, *send_wr_fail;
1307 struct rpcrdma_rep *rep = req->rl_reply;
1308 int rc;
1309
1310 if (rep) {
1311 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1312 if (rc)
1313 goto out;
1314 req->rl_reply = NULL;
1315 }
1316
1317 send_wr.next = NULL;
Chuck Levere46ac342015-03-30 14:35:35 -04001318 send_wr.wr_id = RPCRDMA_IGNORE_COMPLETION;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001319 send_wr.sg_list = req->rl_send_iov;
1320 send_wr.num_sge = req->rl_niovs;
1321 send_wr.opcode = IB_WR_SEND;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001322 if (send_wr.num_sge == 4) /* no need to sync any pad (constant) */
Chuck Lever89e0d1122015-05-26 11:51:56 -04001323 ib_dma_sync_single_for_device(ia->ri_device,
1324 req->rl_send_iov[3].addr,
1325 req->rl_send_iov[3].length,
1326 DMA_TO_DEVICE);
1327 ib_dma_sync_single_for_device(ia->ri_device,
1328 req->rl_send_iov[1].addr,
1329 req->rl_send_iov[1].length,
1330 DMA_TO_DEVICE);
1331 ib_dma_sync_single_for_device(ia->ri_device,
1332 req->rl_send_iov[0].addr,
1333 req->rl_send_iov[0].length,
1334 DMA_TO_DEVICE);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001335
1336 if (DECR_CQCOUNT(ep) > 0)
1337 send_wr.send_flags = 0;
1338 else { /* Provider must take a send completion every now and then */
1339 INIT_CQCOUNT(ep);
1340 send_wr.send_flags = IB_SEND_SIGNALED;
1341 }
1342
1343 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail);
1344 if (rc)
1345 dprintk("RPC: %s: ib_post_send returned %i\n", __func__,
1346 rc);
1347out:
1348 return rc;
1349}
1350
1351/*
1352 * (Re)post a receive buffer.
1353 */
1354int
1355rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
1356 struct rpcrdma_ep *ep,
1357 struct rpcrdma_rep *rep)
1358{
1359 struct ib_recv_wr recv_wr, *recv_wr_fail;
1360 int rc;
1361
1362 recv_wr.next = NULL;
1363 recv_wr.wr_id = (u64) (unsigned long) rep;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001364 recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001365 recv_wr.num_sge = 1;
1366
Chuck Lever89e0d1122015-05-26 11:51:56 -04001367 ib_dma_sync_single_for_cpu(ia->ri_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -05001368 rdmab_addr(rep->rr_rdmabuf),
1369 rdmab_length(rep->rr_rdmabuf),
1370 DMA_BIDIRECTIONAL);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001371
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001372 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
1373
1374 if (rc)
1375 dprintk("RPC: %s: ib_post_recv returned %i\n", __func__,
1376 rc);
1377 return rc;
1378}
Chuck Lever43e95982014-07-29 17:23:34 -04001379
Chuck Lever1c9351e2015-03-30 14:34:30 -04001380/* How many chunk list items fit within our inline buffers?
Chuck Lever43e95982014-07-29 17:23:34 -04001381 */
Chuck Lever1c9351e2015-03-30 14:34:30 -04001382unsigned int
1383rpcrdma_max_segments(struct rpcrdma_xprt *r_xprt)
Chuck Lever43e95982014-07-29 17:23:34 -04001384{
1385 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever1c9351e2015-03-30 14:34:30 -04001386 int bytes, segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001387
Chuck Lever1c9351e2015-03-30 14:34:30 -04001388 bytes = min_t(unsigned int, cdata->inline_wsize, cdata->inline_rsize);
1389 bytes -= RPCRDMA_HDRLEN_MIN;
1390 if (bytes < sizeof(struct rpcrdma_segment) * 2) {
1391 pr_warn("RPC: %s: inline threshold too small\n",
1392 __func__);
1393 return 0;
Chuck Lever43e95982014-07-29 17:23:34 -04001394 }
Chuck Lever1c9351e2015-03-30 14:34:30 -04001395
1396 segments = 1 << (fls(bytes / sizeof(struct rpcrdma_segment)) - 1);
1397 dprintk("RPC: %s: max chunk list size = %d segments\n",
1398 __func__, segments);
1399 return segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001400}