blob: 6c06ba088feac757812cd84309b84b45be75e7bf [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>
Devesh Sharmad0f36c42015-08-03 13:05:04 -040055#include <linux/module.h> /* try_module_get()/module_put() */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040056
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040057#include "xprt_rdma.h"
58
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040059/*
60 * Globals/Macros
61 */
62
Jeff Laytonf895b252014-11-17 16:58:04 -050063#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040064# define RPCDBG_FACILITY RPCDBG_TRANS
65#endif
66
67/*
68 * internal functions
69 */
70
71/*
72 * handle replies in tasklet context, using a single, global list
73 * rdma tasklet function -- just turn around and call the func
74 * for all replies on the list
75 */
76
77static DEFINE_SPINLOCK(rpcrdma_tk_lock_g);
78static LIST_HEAD(rpcrdma_tasklets_g);
79
80static void
81rpcrdma_run_tasklet(unsigned long data)
82{
83 struct rpcrdma_rep *rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040084 unsigned long flags;
85
86 data = data;
87 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
88 while (!list_empty(&rpcrdma_tasklets_g)) {
89 rep = list_entry(rpcrdma_tasklets_g.next,
90 struct rpcrdma_rep, rr_list);
91 list_del(&rep->rr_list);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040092 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
93
Chuck Lever494ae302015-05-26 11:51:46 -040094 rpcrdma_reply_handler(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -040095
96 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
97 }
98 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
99}
100
101static DECLARE_TASKLET(rpcrdma_tasklet_g, rpcrdma_run_tasklet, 0UL);
102
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400103static void
Chuck Leverf1a03b72014-11-08 20:14:37 -0500104rpcrdma_schedule_tasklet(struct list_head *sched_list)
105{
106 unsigned long flags;
107
108 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
109 list_splice_tail(sched_list, &rpcrdma_tasklets_g);
110 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
111 tasklet_schedule(&rpcrdma_tasklet_g);
112}
113
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400114static void
115rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
116{
117 struct rpcrdma_ep *ep = context;
118
Chuck Lever7ff11de2014-11-08 20:15:01 -0500119 pr_err("RPC: %s: %s on device %s ep %p\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300120 __func__, ib_event_msg(event->event),
Chuck Lever7ff11de2014-11-08 20:15:01 -0500121 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400122 if (ep->rep_connected == 1) {
123 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500124 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400125 wake_up_all(&ep->rep_connect_wait);
126 }
127}
128
129static void
130rpcrdma_cq_async_error_upcall(struct ib_event *event, void *context)
131{
132 struct rpcrdma_ep *ep = context;
133
Chuck Lever7ff11de2014-11-08 20:15:01 -0500134 pr_err("RPC: %s: %s on device %s ep %p\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300135 __func__, ib_event_msg(event->event),
Chuck Lever7ff11de2014-11-08 20:15:01 -0500136 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400137 if (ep->rep_connected == 1) {
138 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500139 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400140 wake_up_all(&ep->rep_connect_wait);
141 }
142}
143
Chuck Leverfc664482014-05-28 10:33:25 -0400144static void
145rpcrdma_sendcq_process_wc(struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400146{
Chuck Lever85024272015-01-21 11:02:04 -0500147 /* WARNING: Only wr_id and status are reliable at this point */
Chuck Levere46ac342015-03-30 14:35:35 -0400148 if (wc->wr_id == RPCRDMA_IGNORE_COMPLETION) {
149 if (wc->status != IB_WC_SUCCESS &&
150 wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever85024272015-01-21 11:02:04 -0500151 pr_err("RPC: %s: SEND: %s\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300152 __func__, ib_wc_status_msg(wc->status));
Chuck Lever85024272015-01-21 11:02:04 -0500153 } else {
154 struct rpcrdma_mw *r;
155
156 r = (struct rpcrdma_mw *)(unsigned long)wc->wr_id;
Chuck Levere46ac342015-03-30 14:35:35 -0400157 r->mw_sendcompletion(wc);
Chuck Lever85024272015-01-21 11:02:04 -0500158 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400159}
160
Chuck Leverfc664482014-05-28 10:33:25 -0400161static int
Chuck Lever1c00dd02014-05-28 10:33:42 -0400162rpcrdma_sendcq_poll(struct ib_cq *cq, struct rpcrdma_ep *ep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400163{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400164 struct ib_wc *wcs;
Chuck Lever8301a2c2014-05-28 10:33:51 -0400165 int budget, count, rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400166
Chuck Lever8301a2c2014-05-28 10:33:51 -0400167 budget = RPCRDMA_WC_BUDGET / RPCRDMA_POLLSIZE;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400168 do {
169 wcs = ep->rep_send_wcs;
170
171 rc = ib_poll_cq(cq, RPCRDMA_POLLSIZE, wcs);
172 if (rc <= 0)
173 return rc;
174
175 count = rc;
176 while (count-- > 0)
177 rpcrdma_sendcq_process_wc(wcs++);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400178 } while (rc == RPCRDMA_POLLSIZE && --budget);
Chuck Lever1c00dd02014-05-28 10:33:42 -0400179 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400180}
181
182/*
Chuck Leverfc664482014-05-28 10:33:25 -0400183 * Handle send, fast_reg_mr, and local_inv completions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400184 *
Chuck Leverfc664482014-05-28 10:33:25 -0400185 * Send events are typically suppressed and thus do not result
186 * in an upcall. Occasionally one is signaled, however. This
187 * prevents the provider's completion queue from wrapping and
188 * losing a completion.
189 */
190static void
191rpcrdma_sendcq_upcall(struct ib_cq *cq, void *cq_context)
192{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400193 struct rpcrdma_ep *ep = (struct rpcrdma_ep *)cq_context;
Chuck Leverfc664482014-05-28 10:33:25 -0400194 int rc;
195
Chuck Lever1c00dd02014-05-28 10:33:42 -0400196 rc = rpcrdma_sendcq_poll(cq, ep);
Chuck Leverfc664482014-05-28 10:33:25 -0400197 if (rc) {
198 dprintk("RPC: %s: ib_poll_cq failed: %i\n",
199 __func__, rc);
200 return;
201 }
202
Chuck Lever7f23f6f2014-05-28 10:33:34 -0400203 rc = ib_req_notify_cq(cq,
204 IB_CQ_NEXT_COMP | IB_CQ_REPORT_MISSED_EVENTS);
205 if (rc == 0)
206 return;
207 if (rc < 0) {
Chuck Leverfc664482014-05-28 10:33:25 -0400208 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
209 __func__, rc);
210 return;
211 }
212
Chuck Lever1c00dd02014-05-28 10:33:42 -0400213 rpcrdma_sendcq_poll(cq, ep);
Chuck Leverfc664482014-05-28 10:33:25 -0400214}
215
216static void
Chuck Leverbb961932014-07-29 17:25:46 -0400217rpcrdma_recvcq_process_wc(struct ib_wc *wc, struct list_head *sched_list)
Chuck Leverfc664482014-05-28 10:33:25 -0400218{
219 struct rpcrdma_rep *rep =
220 (struct rpcrdma_rep *)(unsigned long)wc->wr_id;
221
Chuck Lever85024272015-01-21 11:02:04 -0500222 /* WARNING: Only wr_id and status are reliable at this point */
223 if (wc->status != IB_WC_SUCCESS)
224 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400225
Chuck Lever85024272015-01-21 11:02:04 -0500226 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Leverfc664482014-05-28 10:33:25 -0400227 if (wc->opcode != IB_WC_RECV)
228 return;
229
Chuck Lever85024272015-01-21 11:02:04 -0500230 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
231 __func__, rep, wc->byte_len);
232
Chuck Leverfc664482014-05-28 10:33:25 -0400233 rep->rr_len = wc->byte_len;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400234 ib_dma_sync_single_for_cpu(rep->rr_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -0500235 rdmab_addr(rep->rr_rdmabuf),
236 rep->rr_len, DMA_FROM_DEVICE);
237 prefetch(rdmab_to_msg(rep->rr_rdmabuf));
Chuck Leverfc664482014-05-28 10:33:25 -0400238
239out_schedule:
Chuck Leverbb961932014-07-29 17:25:46 -0400240 list_add_tail(&rep->rr_list, sched_list);
Chuck Lever85024272015-01-21 11:02:04 -0500241 return;
242out_fail:
243 if (wc->status != IB_WC_WR_FLUSH_ERR)
244 pr_err("RPC: %s: rep %p: %s\n",
Sagi Grimberg76357c72015-05-18 13:40:32 +0300245 __func__, rep, ib_wc_status_msg(wc->status));
Chuck Lever85024272015-01-21 11:02:04 -0500246 rep->rr_len = ~0U;
247 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400248}
249
250static int
Chuck Lever1c00dd02014-05-28 10:33:42 -0400251rpcrdma_recvcq_poll(struct ib_cq *cq, struct rpcrdma_ep *ep)
Chuck Leverfc664482014-05-28 10:33:25 -0400252{
Chuck Leverbb961932014-07-29 17:25:46 -0400253 struct list_head sched_list;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400254 struct ib_wc *wcs;
Chuck Lever8301a2c2014-05-28 10:33:51 -0400255 int budget, count, rc;
Chuck Leverfc664482014-05-28 10:33:25 -0400256
Chuck Leverbb961932014-07-29 17:25:46 -0400257 INIT_LIST_HEAD(&sched_list);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400258 budget = RPCRDMA_WC_BUDGET / RPCRDMA_POLLSIZE;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400259 do {
260 wcs = ep->rep_recv_wcs;
261
262 rc = ib_poll_cq(cq, RPCRDMA_POLLSIZE, wcs);
263 if (rc <= 0)
Chuck Leverbb961932014-07-29 17:25:46 -0400264 goto out_schedule;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400265
266 count = rc;
267 while (count-- > 0)
Chuck Leverbb961932014-07-29 17:25:46 -0400268 rpcrdma_recvcq_process_wc(wcs++, &sched_list);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400269 } while (rc == RPCRDMA_POLLSIZE && --budget);
Chuck Leverbb961932014-07-29 17:25:46 -0400270 rc = 0;
271
272out_schedule:
Chuck Leverf1a03b72014-11-08 20:14:37 -0500273 rpcrdma_schedule_tasklet(&sched_list);
Chuck Leverbb961932014-07-29 17:25:46 -0400274 return rc;
Chuck Leverfc664482014-05-28 10:33:25 -0400275}
276
277/*
278 * Handle receive completions.
279 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400280 * It is reentrant but processes single events in order to maintain
281 * ordering of receives to keep server credits.
282 *
283 * It is the responsibility of the scheduled tasklet to return
284 * recv buffers to the pool. NOTE: this affects synchronization of
285 * connection shutdown. That is, the structures required for
286 * the completion of the reply handler must remain intact until
287 * all memory has been reclaimed.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400288 */
289static void
Chuck Leverfc664482014-05-28 10:33:25 -0400290rpcrdma_recvcq_upcall(struct ib_cq *cq, void *cq_context)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400291{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400292 struct rpcrdma_ep *ep = (struct rpcrdma_ep *)cq_context;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400293 int rc;
294
Chuck Lever1c00dd02014-05-28 10:33:42 -0400295 rc = rpcrdma_recvcq_poll(cq, ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400296 if (rc) {
Chuck Leverfc664482014-05-28 10:33:25 -0400297 dprintk("RPC: %s: ib_poll_cq failed: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400298 __func__, rc);
299 return;
300 }
301
Chuck Lever7f23f6f2014-05-28 10:33:34 -0400302 rc = ib_req_notify_cq(cq,
303 IB_CQ_NEXT_COMP | IB_CQ_REPORT_MISSED_EVENTS);
304 if (rc == 0)
305 return;
306 if (rc < 0) {
Chuck Leverfc664482014-05-28 10:33:25 -0400307 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
308 __func__, rc);
309 return;
310 }
311
Chuck Lever1c00dd02014-05-28 10:33:42 -0400312 rpcrdma_recvcq_poll(cq, ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400313}
314
Chuck Levera7bc2112014-07-29 17:23:52 -0400315static void
316rpcrdma_flush_cqs(struct rpcrdma_ep *ep)
317{
Chuck Lever5c166be2014-11-08 20:14:45 -0500318 struct ib_wc wc;
319 LIST_HEAD(sched_list);
320
321 while (ib_poll_cq(ep->rep_attr.recv_cq, 1, &wc) > 0)
322 rpcrdma_recvcq_process_wc(&wc, &sched_list);
323 if (!list_empty(&sched_list))
324 rpcrdma_schedule_tasklet(&sched_list);
325 while (ib_poll_cq(ep->rep_attr.send_cq, 1, &wc) > 0)
326 rpcrdma_sendcq_process_wc(&wc);
Chuck Levera7bc2112014-07-29 17:23:52 -0400327}
328
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400329static int
330rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
331{
332 struct rpcrdma_xprt *xprt = id->context;
333 struct rpcrdma_ia *ia = &xprt->rx_ia;
334 struct rpcrdma_ep *ep = &xprt->rx_ep;
Jeff Laytonf895b252014-11-17 16:58:04 -0500335#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400336 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
Ingo Molnarff0db042008-11-25 16:58:42 -0800337#endif
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500338 struct ib_qp_attr *attr = &ia->ri_qp_attr;
339 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400340 int connstate = 0;
341
342 switch (event->event) {
343 case RDMA_CM_EVENT_ADDR_RESOLVED:
344 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400345 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400346 complete(&ia->ri_done);
347 break;
348 case RDMA_CM_EVENT_ADDR_ERROR:
349 ia->ri_async_rc = -EHOSTUNREACH;
350 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
351 __func__, ep);
352 complete(&ia->ri_done);
353 break;
354 case RDMA_CM_EVENT_ROUTE_ERROR:
355 ia->ri_async_rc = -ENETUNREACH;
356 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
357 __func__, ep);
358 complete(&ia->ri_done);
359 break;
360 case RDMA_CM_EVENT_ESTABLISHED:
361 connstate = 1;
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500362 ib_query_qp(ia->ri_id->qp, attr,
363 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
364 iattr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400365 dprintk("RPC: %s: %d responder resources"
366 " (%d initiator)\n",
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500367 __func__, attr->max_dest_rd_atomic,
368 attr->max_rd_atomic);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400369 goto connected;
370 case RDMA_CM_EVENT_CONNECT_ERROR:
371 connstate = -ENOTCONN;
372 goto connected;
373 case RDMA_CM_EVENT_UNREACHABLE:
374 connstate = -ENETDOWN;
375 goto connected;
376 case RDMA_CM_EVENT_REJECTED:
377 connstate = -ECONNREFUSED;
378 goto connected;
379 case RDMA_CM_EVENT_DISCONNECTED:
380 connstate = -ECONNABORTED;
381 goto connected;
382 case RDMA_CM_EVENT_DEVICE_REMOVAL:
383 connstate = -ENODEV;
384connected:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400385 dprintk("RPC: %s: %sconnected\n",
386 __func__, connstate > 0 ? "" : "dis");
387 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500388 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400389 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400390 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400391 default:
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400392 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
393 __func__, sap, rpc_get_port(sap), ep,
Sagi Grimberg76357c72015-05-18 13:40:32 +0300394 rdma_event_msg(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400395 break;
396 }
397
Jeff Laytonf895b252014-11-17 16:58:04 -0500398#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400399 if (connstate == 1) {
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500400 int ird = attr->max_dest_rd_atomic;
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400401 int tird = ep->rep_remote_cma.responder_resources;
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400402
Chuck Levera0ce85f2015-03-30 14:34:21 -0400403 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400404 sap, rpc_get_port(sap),
Chuck Lever89e0d1122015-05-26 11:51:56 -0400405 ia->ri_device->name,
Chuck Levera0ce85f2015-03-30 14:34:21 -0400406 ia->ri_ops->ro_displayname,
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400407 xprt->rx_buf.rb_max_requests,
408 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
409 } else if (connstate < 0) {
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400410 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
411 sap, rpc_get_port(sap), connstate);
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400412 }
413#endif
414
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400415 return 0;
416}
417
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400418static void rpcrdma_destroy_id(struct rdma_cm_id *id)
419{
420 if (id) {
421 module_put(id->device->owner);
422 rdma_destroy_id(id);
423 }
424}
425
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400426static struct rdma_cm_id *
427rpcrdma_create_id(struct rpcrdma_xprt *xprt,
428 struct rpcrdma_ia *ia, struct sockaddr *addr)
429{
430 struct rdma_cm_id *id;
431 int rc;
432
Tom Talpey1a954052008-10-09 15:01:31 -0400433 init_completion(&ia->ri_done);
434
Guy Shapirofa201052015-10-22 15:20:10 +0300435 id = rdma_create_id(&init_net, rpcrdma_conn_upcall, xprt, RDMA_PS_TCP,
436 IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400437 if (IS_ERR(id)) {
438 rc = PTR_ERR(id);
439 dprintk("RPC: %s: rdma_create_id() failed %i\n",
440 __func__, rc);
441 return id;
442 }
443
Tom Talpey5675add2008-10-09 15:01:41 -0400444 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400445 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
446 if (rc) {
447 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
448 __func__, rc);
449 goto out;
450 }
Tom Talpey5675add2008-10-09 15:01:41 -0400451 wait_for_completion_interruptible_timeout(&ia->ri_done,
452 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400453
454 /* FIXME:
455 * Until xprtrdma supports DEVICE_REMOVAL, the provider must
456 * be pinned while there are active NFS/RDMA mounts to prevent
457 * hangs and crashes at umount time.
458 */
459 if (!ia->ri_async_rc && !try_module_get(id->device->owner)) {
460 dprintk("RPC: %s: Failed to get device module\n",
461 __func__);
462 ia->ri_async_rc = -ENODEV;
463 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400464 rc = ia->ri_async_rc;
465 if (rc)
466 goto out;
467
Tom Talpey5675add2008-10-09 15:01:41 -0400468 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400469 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
470 if (rc) {
471 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
472 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400473 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400474 }
Tom Talpey5675add2008-10-09 15:01:41 -0400475 wait_for_completion_interruptible_timeout(&ia->ri_done,
476 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400477 rc = ia->ri_async_rc;
478 if (rc)
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400479 goto put;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400480
481 return id;
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400482put:
483 module_put(id->device->owner);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400484out:
485 rdma_destroy_id(id);
486 return ERR_PTR(rc);
487}
488
489/*
490 * Drain any cq, prior to teardown.
491 */
492static void
493rpcrdma_clean_cq(struct ib_cq *cq)
494{
495 struct ib_wc wc;
496 int count = 0;
497
498 while (1 == ib_poll_cq(cq, 1, &wc))
499 ++count;
500
501 if (count)
502 dprintk("RPC: %s: flushed %d events (last 0x%x)\n",
503 __func__, count, wc.opcode);
504}
505
506/*
507 * Exported functions.
508 */
509
510/*
511 * Open and initialize an Interface Adapter.
512 * o initializes fields of struct rpcrdma_ia, including
513 * interface and provider attributes and protection zone.
514 */
515int
516rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
517{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400518 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Lever7bc79722015-01-21 11:03:27 -0500519 struct ib_device_attr *devattr = &ia->ri_devattr;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400520 int rc;
521
522 ia->ri_dma_mr = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400523
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400524 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
525 if (IS_ERR(ia->ri_id)) {
526 rc = PTR_ERR(ia->ri_id);
527 goto out1;
528 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400529 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400530
Chuck Lever89e0d1122015-05-26 11:51:56 -0400531 ia->ri_pd = ib_alloc_pd(ia->ri_device);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400532 if (IS_ERR(ia->ri_pd)) {
533 rc = PTR_ERR(ia->ri_pd);
534 dprintk("RPC: %s: ib_alloc_pd() failed %i\n",
535 __func__, rc);
536 goto out2;
537 }
538
Chuck Lever89e0d1122015-05-26 11:51:56 -0400539 rc = ib_query_device(ia->ri_device, devattr);
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400540 if (rc) {
541 dprintk("RPC: %s: ib_query_device failed %d\n",
542 __func__, rc);
Chuck Lever5ae711a2015-01-21 11:03:19 -0500543 goto out3;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400544 }
545
Chuck Leverf10eafd2014-05-28 10:32:51 -0400546 if (memreg == RPCRDMA_FRMR) {
Sagi Grimbergf022fa82015-10-06 19:52:37 +0300547 if (!(devattr->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS) ||
548 (devattr->max_fast_reg_page_list_len == 0)) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400549 dprintk("RPC: %s: FRMR registration "
Chuck Leverf10eafd2014-05-28 10:32:51 -0400550 "not supported by HCA\n", __func__);
551 memreg = RPCRDMA_MTHCAFMR;
Tom Talpey3197d3092008-10-09 15:00:20 -0400552 }
Chuck Leverf10eafd2014-05-28 10:32:51 -0400553 }
554 if (memreg == RPCRDMA_MTHCAFMR) {
Chuck Lever89e0d1122015-05-26 11:51:56 -0400555 if (!ia->ri_device->alloc_fmr) {
Chuck Leverf10eafd2014-05-28 10:32:51 -0400556 dprintk("RPC: %s: MTHCAFMR registration "
557 "not supported by HCA\n", __func__);
Sagi Grimbergf022fa82015-10-06 19:52:37 +0300558 rc = -EINVAL;
Chuck Leverd2310932015-08-03 13:03:09 -0400559 goto out3;
Chuck Leverf10eafd2014-05-28 10:32:51 -0400560 }
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400561 }
562
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400563 switch (memreg) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400564 case RPCRDMA_FRMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400565 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400566 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400567 case RPCRDMA_ALLPHYSICAL:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400568 ia->ri_ops = &rpcrdma_physical_memreg_ops;
Chuck Leverd1ed8572015-08-03 13:03:30 -0400569 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400570 case RPCRDMA_MTHCAFMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400571 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400572 break;
573 default:
Chuck Levercdd9ade2014-05-28 10:33:00 -0400574 printk(KERN_ERR "RPC: Unsupported memory "
575 "registration mode: %d\n", memreg);
576 rc = -ENOMEM;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500577 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400578 }
Chuck Levera0ce85f2015-03-30 14:34:21 -0400579 dprintk("RPC: %s: memory registration strategy is '%s'\n",
580 __func__, ia->ri_ops->ro_displayname);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400581
Chuck Lever73806c82014-07-29 17:23:25 -0400582 rwlock_init(&ia->ri_qplock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400583 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500584
585out3:
586 ib_dealloc_pd(ia->ri_pd);
587 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400588out2:
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400589 rpcrdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400590 ia->ri_id = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400591out1:
592 return rc;
593}
594
595/*
596 * Clean up/close an IA.
597 * o if event handles and PD have been initialized, free them.
598 * o close the IA
599 */
600void
601rpcrdma_ia_close(struct rpcrdma_ia *ia)
602{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400603 dprintk("RPC: %s: entering\n", __func__);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400604 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
605 if (ia->ri_id->qp)
606 rdma_destroy_qp(ia->ri_id);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400607 rpcrdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400608 ia->ri_id = NULL;
609 }
Chuck Lever6d446982015-05-26 11:51:27 -0400610
611 /* If the pd is still busy, xprtrdma missed freeing a resource */
612 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600613 ib_dealloc_pd(ia->ri_pd);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400614}
615
616/*
617 * Create unconnected endpoint.
618 */
619int
620rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
621 struct rpcrdma_create_data_internal *cdata)
622{
Chuck Lever7bc79722015-01-21 11:03:27 -0500623 struct ib_device_attr *devattr = &ia->ri_devattr;
Chuck Leverfc664482014-05-28 10:33:25 -0400624 struct ib_cq *sendcq, *recvcq;
Matan Barak8e372102015-06-11 16:35:21 +0300625 struct ib_cq_init_attr cq_attr = {};
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400626 int rc, err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400627
Chuck Leverb3221d62015-08-03 13:03:39 -0400628 if (devattr->max_sge < RPCRDMA_MAX_IOVS) {
629 dprintk("RPC: %s: insufficient sge's available\n",
630 __func__);
631 return -ENOMEM;
632 }
633
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400634 /* check provider's send/recv wr limits */
Chuck Lever7bc79722015-01-21 11:03:27 -0500635 if (cdata->max_requests > devattr->max_qp_wr)
636 cdata->max_requests = devattr->max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400637
638 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
639 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400640 ep->rep_attr.srq = NULL;
641 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever3968cb52015-03-30 14:35:26 -0400642 rc = ia->ri_ops->ro_open(ia, ep, cdata);
643 if (rc)
644 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400645 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
Chuck Leverb3221d62015-08-03 13:03:39 -0400646 ep->rep_attr.cap.max_send_sge = RPCRDMA_MAX_IOVS;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400647 ep->rep_attr.cap.max_recv_sge = 1;
648 ep->rep_attr.cap.max_inline_data = 0;
649 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
650 ep->rep_attr.qp_type = IB_QPT_RC;
651 ep->rep_attr.port_num = ~0;
652
653 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
654 "iovs: send %d recv %d\n",
655 __func__,
656 ep->rep_attr.cap.max_send_wr,
657 ep->rep_attr.cap.max_recv_wr,
658 ep->rep_attr.cap.max_send_sge,
659 ep->rep_attr.cap.max_recv_sge);
660
661 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400662 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Levere7104a22014-11-08 20:14:20 -0500663 if (ep->rep_cqinit > RPCRDMA_MAX_UNSIGNALED_SENDS)
664 ep->rep_cqinit = RPCRDMA_MAX_UNSIGNALED_SENDS;
665 else if (ep->rep_cqinit <= 2)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400666 ep->rep_cqinit = 0;
667 INIT_CQCOUNT(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400668 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400669 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400670
Matan Barak8e372102015-06-11 16:35:21 +0300671 cq_attr.cqe = ep->rep_attr.cap.max_send_wr + 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400672 sendcq = ib_create_cq(ia->ri_device, rpcrdma_sendcq_upcall,
Linus Torvalds8688d952015-07-02 11:32:23 -0700673 rpcrdma_cq_async_error_upcall, ep, &cq_attr);
Chuck Leverfc664482014-05-28 10:33:25 -0400674 if (IS_ERR(sendcq)) {
675 rc = PTR_ERR(sendcq);
676 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400677 __func__, rc);
678 goto out1;
679 }
680
Chuck Leverfc664482014-05-28 10:33:25 -0400681 rc = ib_req_notify_cq(sendcq, IB_CQ_NEXT_COMP);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400682 if (rc) {
683 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
684 __func__, rc);
685 goto out2;
686 }
687
Matan Barak8e372102015-06-11 16:35:21 +0300688 cq_attr.cqe = ep->rep_attr.cap.max_recv_wr + 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400689 recvcq = ib_create_cq(ia->ri_device, rpcrdma_recvcq_upcall,
Linus Torvalds8688d952015-07-02 11:32:23 -0700690 rpcrdma_cq_async_error_upcall, ep, &cq_attr);
Chuck Leverfc664482014-05-28 10:33:25 -0400691 if (IS_ERR(recvcq)) {
692 rc = PTR_ERR(recvcq);
693 dprintk("RPC: %s: failed to create recv CQ: %i\n",
694 __func__, rc);
695 goto out2;
696 }
697
698 rc = ib_req_notify_cq(recvcq, IB_CQ_NEXT_COMP);
699 if (rc) {
700 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
701 __func__, rc);
702 ib_destroy_cq(recvcq);
703 goto out2;
704 }
705
706 ep->rep_attr.send_cq = sendcq;
707 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400708
709 /* Initialize cma parameters */
710
711 /* RPC/RDMA does not use private data */
712 ep->rep_remote_cma.private_data = NULL;
713 ep->rep_remote_cma.private_data_len = 0;
714
715 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400716 ep->rep_remote_cma.initiator_depth = 0;
Chuck Lever7bc79722015-01-21 11:03:27 -0500717 if (devattr->max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400718 ep->rep_remote_cma.responder_resources = 32;
719 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500720 ep->rep_remote_cma.responder_resources =
721 devattr->max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400722
723 ep->rep_remote_cma.retry_count = 7;
724 ep->rep_remote_cma.flow_control = 0;
725 ep->rep_remote_cma.rnr_retry_count = 0;
726
727 return 0;
728
729out2:
Chuck Leverfc664482014-05-28 10:33:25 -0400730 err = ib_destroy_cq(sendcq);
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400731 if (err)
732 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
733 __func__, err);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400734out1:
Chuck Leverd1ed8572015-08-03 13:03:30 -0400735 if (ia->ri_dma_mr)
736 ib_dereg_mr(ia->ri_dma_mr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400737 return rc;
738}
739
740/*
741 * rpcrdma_ep_destroy
742 *
743 * Disconnect and destroy endpoint. After this, the only
744 * valid operations on the ep are to free it (if dynamically
745 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400746 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400747void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400748rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
749{
750 int rc;
751
752 dprintk("RPC: %s: entering, connected is %d\n",
753 __func__, ep->rep_connected);
754
Chuck Lever254f91e2014-05-28 10:32:17 -0400755 cancel_delayed_work_sync(&ep->rep_connect_worker);
756
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400757 if (ia->ri_id->qp) {
Chuck Lever282191c2014-07-29 17:25:55 -0400758 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400759 rdma_destroy_qp(ia->ri_id);
760 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400761 }
762
Chuck Leverfc664482014-05-28 10:33:25 -0400763 rpcrdma_clean_cq(ep->rep_attr.recv_cq);
764 rc = ib_destroy_cq(ep->rep_attr.recv_cq);
765 if (rc)
766 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
767 __func__, rc);
768
769 rpcrdma_clean_cq(ep->rep_attr.send_cq);
770 rc = ib_destroy_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400771 if (rc)
772 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
773 __func__, rc);
Chuck Leverd1ed8572015-08-03 13:03:30 -0400774
775 if (ia->ri_dma_mr) {
776 rc = ib_dereg_mr(ia->ri_dma_mr);
777 dprintk("RPC: %s: ib_dereg_mr returned %i\n",
778 __func__, rc);
779 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400780}
781
782/*
783 * Connect unconnected endpoint.
784 */
785int
786rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
787{
Chuck Lever73806c82014-07-29 17:23:25 -0400788 struct rdma_cm_id *id, *old;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400789 int rc = 0;
790 int retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400791
Tom Talpeyc0555512008-10-10 11:32:45 -0400792 if (ep->rep_connected != 0) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400793 struct rpcrdma_xprt *xprt;
794retry:
Chuck Leverec62f402014-05-28 10:34:07 -0400795 dprintk("RPC: %s: reconnecting...\n", __func__);
Chuck Lever282191c2014-07-29 17:25:55 -0400796
797 rpcrdma_ep_disconnect(ep, ia);
Chuck Levera7bc2112014-07-29 17:23:52 -0400798 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400799
800 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
801 id = rpcrdma_create_id(xprt, ia,
802 (struct sockaddr *)&xprt->rx_data.addr);
803 if (IS_ERR(id)) {
Chuck Leverec62f402014-05-28 10:34:07 -0400804 rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400805 goto out;
806 }
807 /* TEMP TEMP TEMP - fail if new device:
808 * Deregister/remarshal *all* requests!
809 * Close and recreate adapter, pd, etc!
810 * Re-determine all attributes still sane!
811 * More stuff I haven't thought of!
812 * Rrrgh!
813 */
Chuck Lever89e0d1122015-05-26 11:51:56 -0400814 if (ia->ri_device != id->device) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400815 printk("RPC: %s: can't reconnect on "
816 "different device!\n", __func__);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400817 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400818 rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400819 goto out;
820 }
821 /* END TEMP */
Chuck Leverec62f402014-05-28 10:34:07 -0400822 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
823 if (rc) {
824 dprintk("RPC: %s: rdma_create_qp failed %i\n",
825 __func__, rc);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400826 rpcrdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400827 rc = -ENETUNREACH;
828 goto out;
829 }
Chuck Lever73806c82014-07-29 17:23:25 -0400830
831 write_lock(&ia->ri_qplock);
832 old = ia->ri_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400833 ia->ri_id = id;
Chuck Lever73806c82014-07-29 17:23:25 -0400834 write_unlock(&ia->ri_qplock);
835
836 rdma_destroy_qp(old);
Devesh Sharmad0f36c42015-08-03 13:05:04 -0400837 rpcrdma_destroy_id(old);
Chuck Leverec62f402014-05-28 10:34:07 -0400838 } else {
839 dprintk("RPC: %s: connecting...\n", __func__);
840 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
841 if (rc) {
842 dprintk("RPC: %s: rdma_create_qp failed %i\n",
843 __func__, rc);
844 /* do not update ep->rep_connected */
845 return -ENETUNREACH;
846 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400847 }
848
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400849 ep->rep_connected = 0;
850
851 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
852 if (rc) {
853 dprintk("RPC: %s: rdma_connect() failed with %i\n",
854 __func__, rc);
855 goto out;
856 }
857
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400858 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
859
860 /*
861 * Check state. A non-peer reject indicates no listener
862 * (ECONNREFUSED), which may be a transient state. All
863 * others indicate a transport condition which has already
864 * undergone a best-effort.
865 */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800866 if (ep->rep_connected == -ECONNREFUSED &&
867 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400868 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
869 goto retry;
870 }
871 if (ep->rep_connected <= 0) {
872 /* Sometimes, the only way to reliably connect to remote
873 * CMs is to use same nonzero values for ORD and IRD. */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400874 if (retry_count++ <= RDMA_CONNECT_RETRY_MAX + 1 &&
875 (ep->rep_remote_cma.responder_resources == 0 ||
876 ep->rep_remote_cma.initiator_depth !=
877 ep->rep_remote_cma.responder_resources)) {
878 if (ep->rep_remote_cma.responder_resources == 0)
879 ep->rep_remote_cma.responder_resources = 1;
880 ep->rep_remote_cma.initiator_depth =
881 ep->rep_remote_cma.responder_resources;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400882 goto retry;
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400883 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400884 rc = ep->rep_connected;
885 } else {
886 dprintk("RPC: %s: connected\n", __func__);
887 }
888
889out:
890 if (rc)
891 ep->rep_connected = rc;
892 return rc;
893}
894
895/*
896 * rpcrdma_ep_disconnect
897 *
898 * This is separate from destroy to facilitate the ability
899 * to reconnect without recreating the endpoint.
900 *
901 * This call is not reentrant, and must not be made in parallel
902 * on the same endpoint.
903 */
Chuck Lever282191c2014-07-29 17:25:55 -0400904void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400905rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
906{
907 int rc;
908
Chuck Levera7bc2112014-07-29 17:23:52 -0400909 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400910 rc = rdma_disconnect(ia->ri_id);
911 if (!rc) {
912 /* returns without wait if not connected */
913 wait_event_interruptible(ep->rep_connect_wait,
914 ep->rep_connected != 1);
915 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
916 (ep->rep_connected == 1) ? "still " : "dis");
917 } else {
918 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
919 ep->rep_connected = rc;
920 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400921}
922
Chuck Lever13924022015-01-21 11:03:52 -0500923static struct rpcrdma_req *
924rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
925{
Chuck Lever13924022015-01-21 11:03:52 -0500926 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -0500927
Chuck Lever85275c82015-01-21 11:04:16 -0500928 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500929 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -0500930 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -0500931
Chuck Lever13924022015-01-21 11:03:52 -0500932 req->rl_buffer = &r_xprt->rx_buf;
933 return req;
Chuck Lever13924022015-01-21 11:03:52 -0500934}
935
936static struct rpcrdma_rep *
937rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
938{
939 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -0500940 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
941 struct rpcrdma_rep *rep;
942 int rc;
943
944 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500945 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -0500946 if (rep == NULL)
947 goto out;
Chuck Lever13924022015-01-21 11:03:52 -0500948
Chuck Lever6b1184c2015-01-21 11:04:25 -0500949 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(ia, cdata->inline_rsize,
950 GFP_KERNEL);
951 if (IS_ERR(rep->rr_rdmabuf)) {
952 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -0500953 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -0500954 }
Chuck Lever13924022015-01-21 11:03:52 -0500955
Chuck Lever89e0d1122015-05-26 11:51:56 -0400956 rep->rr_device = ia->ri_device;
Chuck Leverfed171b2015-05-26 11:51:37 -0400957 rep->rr_rxprt = r_xprt;
Chuck Lever13924022015-01-21 11:03:52 -0500958 return rep;
959
960out_free:
961 kfree(rep);
962out:
963 return ERR_PTR(rc);
964}
965
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400966int
Chuck Leverac920d02015-01-21 11:03:44 -0500967rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400968{
Chuck Leverac920d02015-01-21 11:03:44 -0500969 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
970 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
971 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400972 char *p;
Chuck Lever13924022015-01-21 11:03:52 -0500973 size_t len;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400974 int i, rc;
975
976 buf->rb_max_requests = cdata->max_requests;
977 spin_lock_init(&buf->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400978
979 /* Need to allocate:
980 * 1. arrays for send and recv pointers
981 * 2. arrays of struct rpcrdma_req to fill in pointers
982 * 3. array of struct rpcrdma_rep for replies
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400983 * Send/recv buffers in req/rep need to be registered
984 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400985 len = buf->rb_max_requests *
986 (sizeof(struct rpcrdma_req *) + sizeof(struct rpcrdma_rep *));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400987
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400988 p = kzalloc(len, GFP_KERNEL);
989 if (p == NULL) {
990 dprintk("RPC: %s: req_t/rep_t/pad kzalloc(%zd) failed\n",
991 __func__, len);
992 rc = -ENOMEM;
993 goto out;
994 }
995 buf->rb_pool = p; /* for freeing it later */
996
997 buf->rb_send_bufs = (struct rpcrdma_req **) p;
998 p = (char *) &buf->rb_send_bufs[buf->rb_max_requests];
999 buf->rb_recv_bufs = (struct rpcrdma_rep **) p;
1000 p = (char *) &buf->rb_recv_bufs[buf->rb_max_requests];
1001
Chuck Lever91e70e72015-03-30 14:34:58 -04001002 rc = ia->ri_ops->ro_init(r_xprt);
1003 if (rc)
1004 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001005
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001006 for (i = 0; i < buf->rb_max_requests; i++) {
1007 struct rpcrdma_req *req;
1008 struct rpcrdma_rep *rep;
1009
Chuck Lever13924022015-01-21 11:03:52 -05001010 req = rpcrdma_create_req(r_xprt);
1011 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001012 dprintk("RPC: %s: request buffer %d alloc"
1013 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001014 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001015 goto out;
1016 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001017 buf->rb_send_bufs[i] = req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001018
Chuck Lever13924022015-01-21 11:03:52 -05001019 rep = rpcrdma_create_rep(r_xprt);
1020 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001021 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1022 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001023 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001024 goto out;
1025 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001026 buf->rb_recv_bufs[i] = rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001027 }
Chuck Lever13924022015-01-21 11:03:52 -05001028
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001029 return 0;
1030out:
1031 rpcrdma_buffer_destroy(buf);
1032 return rc;
1033}
1034
Chuck Lever2e845222014-07-29 17:25:38 -04001035static void
Chuck Lever13924022015-01-21 11:03:52 -05001036rpcrdma_destroy_rep(struct rpcrdma_ia *ia, struct rpcrdma_rep *rep)
1037{
1038 if (!rep)
1039 return;
1040
Chuck Lever6b1184c2015-01-21 11:04:25 -05001041 rpcrdma_free_regbuf(ia, rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001042 kfree(rep);
1043}
1044
1045static void
1046rpcrdma_destroy_req(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
1047{
1048 if (!req)
1049 return;
1050
Chuck Lever0ca77dc2015-01-21 11:04:08 -05001051 rpcrdma_free_regbuf(ia, req->rl_sendbuf);
Chuck Lever85275c82015-01-21 11:04:16 -05001052 rpcrdma_free_regbuf(ia, req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001053 kfree(req);
1054}
1055
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001056void
1057rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1058{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001059 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever2e845222014-07-29 17:25:38 -04001060 int i;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001061
1062 /* clean up in reverse order from create
1063 * 1. recv mr memory (mr free, then kfree)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001064 * 2. send mr memory (mr free, then kfree)
Chuck Lever2e845222014-07-29 17:25:38 -04001065 * 3. MWs
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001066 */
1067 dprintk("RPC: %s: entering\n", __func__);
1068
1069 for (i = 0; i < buf->rb_max_requests; i++) {
Chuck Lever13924022015-01-21 11:03:52 -05001070 if (buf->rb_recv_bufs)
1071 rpcrdma_destroy_rep(ia, buf->rb_recv_bufs[i]);
1072 if (buf->rb_send_bufs)
1073 rpcrdma_destroy_req(ia, buf->rb_send_bufs[i]);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001074 }
1075
Chuck Lever4561f342015-03-30 14:35:17 -04001076 ia->ri_ops->ro_destroy(buf);
Allen Andrews4034ba02014-05-28 10:32:09 -04001077
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001078 kfree(buf->rb_pool);
1079}
1080
Chuck Lever346aa662015-05-26 11:52:06 -04001081struct rpcrdma_mw *
1082rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
Chuck Leverc2922c02014-07-29 17:24:36 -04001083{
Chuck Lever346aa662015-05-26 11:52:06 -04001084 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1085 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001086
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001087 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001088 if (!list_empty(&buf->rb_mws)) {
1089 mw = list_first_entry(&buf->rb_mws,
1090 struct rpcrdma_mw, mw_list);
1091 list_del_init(&mw->mw_list);
Chuck Leverc2922c02014-07-29 17:24:36 -04001092 }
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001093 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001094
1095 if (!mw)
1096 pr_err("RPC: %s: no MWs available\n", __func__);
1097 return mw;
Chuck Leverc2922c02014-07-29 17:24:36 -04001098}
1099
Chuck Lever346aa662015-05-26 11:52:06 -04001100void
1101rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
Chuck Leverc2922c02014-07-29 17:24:36 -04001102{
Chuck Lever346aa662015-05-26 11:52:06 -04001103 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Leverc2922c02014-07-29 17:24:36 -04001104
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001105 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001106 list_add_tail(&mw->mw_list, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001107 spin_unlock(&buf->rb_mwlock);
Chuck Leverc2922c02014-07-29 17:24:36 -04001108}
1109
1110static void
1111rpcrdma_buffer_put_sendbuf(struct rpcrdma_req *req, struct rpcrdma_buffer *buf)
1112{
1113 buf->rb_send_bufs[--buf->rb_send_index] = req;
1114 req->rl_niovs = 0;
1115 if (req->rl_reply) {
1116 buf->rb_recv_bufs[--buf->rb_recv_index] = req->rl_reply;
Chuck Leverc2922c02014-07-29 17:24:36 -04001117 req->rl_reply = NULL;
1118 }
1119}
1120
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001121/*
1122 * Get a set of request/reply buffers.
1123 *
1124 * Reply buffer (if needed) is attached to send buffer upon return.
1125 * Rule:
1126 * rb_send_index and rb_recv_index MUST always be pointing to the
1127 * *next* available buffer (non-NULL). They are incremented after
1128 * removing buffers, and decremented *before* returning them.
1129 */
1130struct rpcrdma_req *
1131rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1132{
1133 struct rpcrdma_req *req;
1134 unsigned long flags;
1135
1136 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc14d86e2015-05-26 11:52:35 -04001137
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001138 if (buffers->rb_send_index == buffers->rb_max_requests) {
1139 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1140 dprintk("RPC: %s: out of request buffers\n", __func__);
1141 return ((struct rpcrdma_req *)NULL);
1142 }
1143
1144 req = buffers->rb_send_bufs[buffers->rb_send_index];
1145 if (buffers->rb_send_index < buffers->rb_recv_index) {
1146 dprintk("RPC: %s: %d extra receives outstanding (ok)\n",
1147 __func__,
1148 buffers->rb_recv_index - buffers->rb_send_index);
1149 req->rl_reply = NULL;
1150 } else {
1151 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1152 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1153 }
1154 buffers->rb_send_bufs[buffers->rb_send_index++] = NULL;
Chuck Leverddb6beb2014-07-29 17:24:54 -04001155
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001156 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1157 return req;
1158}
1159
1160/*
1161 * Put request/reply buffers back into pool.
1162 * Pre-decrement counter/array index.
1163 */
1164void
1165rpcrdma_buffer_put(struct rpcrdma_req *req)
1166{
1167 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001168 unsigned long flags;
1169
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001170 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc2922c02014-07-29 17:24:36 -04001171 rpcrdma_buffer_put_sendbuf(req, buffers);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001172 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1173}
1174
1175/*
1176 * Recover reply buffers from pool.
1177 * This happens when recovering from error conditions.
1178 * Post-increment counter/array index.
1179 */
1180void
1181rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1182{
1183 struct rpcrdma_buffer *buffers = req->rl_buffer;
1184 unsigned long flags;
1185
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001186 spin_lock_irqsave(&buffers->rb_lock, flags);
1187 if (buffers->rb_recv_index < buffers->rb_max_requests) {
1188 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1189 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1190 }
1191 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1192}
1193
1194/*
1195 * Put reply buffers back into pool when not attached to
Chuck Leverb45ccfd2014-05-28 10:32:34 -04001196 * request. This happens in error conditions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001197 */
1198void
1199rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1200{
Chuck Leverfed171b2015-05-26 11:51:37 -04001201 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001202 unsigned long flags;
1203
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001204 spin_lock_irqsave(&buffers->rb_lock, flags);
1205 buffers->rb_recv_bufs[--buffers->rb_recv_index] = rep;
1206 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1207}
1208
1209/*
1210 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1211 */
1212
Chuck Leverd6547882015-03-30 14:35:44 -04001213void
1214rpcrdma_mapping_error(struct rpcrdma_mr_seg *seg)
1215{
1216 dprintk("RPC: map_one: offset %p iova %llx len %zu\n",
1217 seg->mr_offset,
1218 (unsigned long long)seg->mr_dma, seg->mr_dmalen);
1219}
1220
Chuck Lever9128c3e2015-01-21 11:04:00 -05001221/**
1222 * rpcrdma_alloc_regbuf - kmalloc and register memory for SEND/RECV buffers
1223 * @ia: controlling rpcrdma_ia
1224 * @size: size of buffer to be allocated, in bytes
1225 * @flags: GFP flags
1226 *
1227 * Returns pointer to private header of an area of internally
1228 * registered memory, or an ERR_PTR. The registered buffer follows
1229 * the end of the private header.
1230 *
1231 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1232 * receiving the payload of RDMA RECV operations. regbufs are not
1233 * used for RDMA READ/WRITE operations, thus are registered only for
1234 * LOCAL access.
1235 */
1236struct rpcrdma_regbuf *
1237rpcrdma_alloc_regbuf(struct rpcrdma_ia *ia, size_t size, gfp_t flags)
1238{
1239 struct rpcrdma_regbuf *rb;
Chuck Levere531dca2015-08-03 13:03:20 -04001240 struct ib_sge *iov;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001241
Chuck Lever9128c3e2015-01-21 11:04:00 -05001242 rb = kmalloc(sizeof(*rb) + size, flags);
1243 if (rb == NULL)
1244 goto out;
1245
Chuck Levere531dca2015-08-03 13:03:20 -04001246 iov = &rb->rg_iov;
1247 iov->addr = ib_dma_map_single(ia->ri_device,
1248 (void *)rb->rg_base, size,
1249 DMA_BIDIRECTIONAL);
1250 if (ib_dma_mapping_error(ia->ri_device, iov->addr))
Chuck Lever9128c3e2015-01-21 11:04:00 -05001251 goto out_free;
1252
Chuck Levere531dca2015-08-03 13:03:20 -04001253 iov->length = size;
Chuck Leverbb6c96d2015-09-24 10:34:21 +03001254 iov->lkey = ia->ri_pd->local_dma_lkey;
Chuck Levere531dca2015-08-03 13:03:20 -04001255 rb->rg_size = size;
1256 rb->rg_owner = NULL;
Chuck Lever9128c3e2015-01-21 11:04:00 -05001257 return rb;
1258
1259out_free:
1260 kfree(rb);
1261out:
Chuck Levere531dca2015-08-03 13:03:20 -04001262 return ERR_PTR(-ENOMEM);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001263}
1264
1265/**
1266 * rpcrdma_free_regbuf - deregister and free registered buffer
1267 * @ia: controlling rpcrdma_ia
1268 * @rb: regbuf to be deregistered and freed
1269 */
1270void
1271rpcrdma_free_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1272{
Chuck Levere531dca2015-08-03 13:03:20 -04001273 struct ib_sge *iov;
1274
1275 if (!rb)
1276 return;
1277
1278 iov = &rb->rg_iov;
1279 ib_dma_unmap_single(ia->ri_device,
1280 iov->addr, iov->length, DMA_BIDIRECTIONAL);
1281 kfree(rb);
Chuck Lever9128c3e2015-01-21 11:04:00 -05001282}
1283
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001284/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001285 * Prepost any receive buffer, then post send.
1286 *
1287 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1288 */
1289int
1290rpcrdma_ep_post(struct rpcrdma_ia *ia,
1291 struct rpcrdma_ep *ep,
1292 struct rpcrdma_req *req)
1293{
Chuck Leverb3221d62015-08-03 13:03:39 -04001294 struct ib_device *device = ia->ri_device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001295 struct ib_send_wr send_wr, *send_wr_fail;
1296 struct rpcrdma_rep *rep = req->rl_reply;
Chuck Leverb3221d62015-08-03 13:03:39 -04001297 struct ib_sge *iov = req->rl_send_iov;
1298 int i, rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001299
1300 if (rep) {
1301 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1302 if (rc)
1303 goto out;
1304 req->rl_reply = NULL;
1305 }
1306
1307 send_wr.next = NULL;
Chuck Levere46ac342015-03-30 14:35:35 -04001308 send_wr.wr_id = RPCRDMA_IGNORE_COMPLETION;
Chuck Leverb3221d62015-08-03 13:03:39 -04001309 send_wr.sg_list = iov;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001310 send_wr.num_sge = req->rl_niovs;
1311 send_wr.opcode = IB_WR_SEND;
Chuck Leverb3221d62015-08-03 13:03:39 -04001312
1313 for (i = 0; i < send_wr.num_sge; i++)
1314 ib_dma_sync_single_for_device(device, iov[i].addr,
1315 iov[i].length, DMA_TO_DEVICE);
1316 dprintk("RPC: %s: posting %d s/g entries\n",
1317 __func__, send_wr.num_sge);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001318
1319 if (DECR_CQCOUNT(ep) > 0)
1320 send_wr.send_flags = 0;
1321 else { /* Provider must take a send completion every now and then */
1322 INIT_CQCOUNT(ep);
1323 send_wr.send_flags = IB_SEND_SIGNALED;
1324 }
1325
1326 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail);
1327 if (rc)
1328 dprintk("RPC: %s: ib_post_send returned %i\n", __func__,
1329 rc);
1330out:
1331 return rc;
1332}
1333
1334/*
1335 * (Re)post a receive buffer.
1336 */
1337int
1338rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
1339 struct rpcrdma_ep *ep,
1340 struct rpcrdma_rep *rep)
1341{
1342 struct ib_recv_wr recv_wr, *recv_wr_fail;
1343 int rc;
1344
1345 recv_wr.next = NULL;
1346 recv_wr.wr_id = (u64) (unsigned long) rep;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001347 recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001348 recv_wr.num_sge = 1;
1349
Chuck Lever89e0d1122015-05-26 11:51:56 -04001350 ib_dma_sync_single_for_cpu(ia->ri_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -05001351 rdmab_addr(rep->rr_rdmabuf),
1352 rdmab_length(rep->rr_rdmabuf),
1353 DMA_BIDIRECTIONAL);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001354
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001355 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
1356
1357 if (rc)
1358 dprintk("RPC: %s: ib_post_recv returned %i\n", __func__,
1359 rc);
1360 return rc;
1361}
Chuck Lever43e95982014-07-29 17:23:34 -04001362
Chuck Lever1c9351e2015-03-30 14:34:30 -04001363/* How many chunk list items fit within our inline buffers?
Chuck Lever43e95982014-07-29 17:23:34 -04001364 */
Chuck Lever1c9351e2015-03-30 14:34:30 -04001365unsigned int
1366rpcrdma_max_segments(struct rpcrdma_xprt *r_xprt)
Chuck Lever43e95982014-07-29 17:23:34 -04001367{
1368 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever1c9351e2015-03-30 14:34:30 -04001369 int bytes, segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001370
Chuck Lever1c9351e2015-03-30 14:34:30 -04001371 bytes = min_t(unsigned int, cdata->inline_wsize, cdata->inline_rsize);
1372 bytes -= RPCRDMA_HDRLEN_MIN;
1373 if (bytes < sizeof(struct rpcrdma_segment) * 2) {
1374 pr_warn("RPC: %s: inline threshold too small\n",
1375 __func__);
1376 return 0;
Chuck Lever43e95982014-07-29 17:23:34 -04001377 }
Chuck Lever1c9351e2015-03-30 14:34:30 -04001378
1379 segments = 1 << (fls(bytes / sizeof(struct rpcrdma_segment)) - 1);
1380 dprintk("RPC: %s: max chunk list size = %d segments\n",
1381 __func__, segments);
1382 return segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001383}