blob: 234083560d0e2c5817d47775c17eceebdef23117 [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
Chuck Lever7ff11de2014-11-08 20:15:01 -0500102static const char * const async_event[] = {
103 "CQ error",
104 "QP fatal error",
105 "QP request error",
106 "QP access error",
107 "communication established",
108 "send queue drained",
109 "path migration successful",
110 "path mig error",
111 "device fatal error",
112 "port active",
113 "port error",
114 "LID change",
115 "P_key change",
116 "SM change",
117 "SRQ error",
118 "SRQ limit reached",
119 "last WQE reached",
120 "client reregister",
121 "GID change",
122};
123
124#define ASYNC_MSG(status) \
125 ((status) < ARRAY_SIZE(async_event) ? \
126 async_event[(status)] : "unknown async error")
127
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400128static void
Chuck Leverf1a03b72014-11-08 20:14:37 -0500129rpcrdma_schedule_tasklet(struct list_head *sched_list)
130{
131 unsigned long flags;
132
133 spin_lock_irqsave(&rpcrdma_tk_lock_g, flags);
134 list_splice_tail(sched_list, &rpcrdma_tasklets_g);
135 spin_unlock_irqrestore(&rpcrdma_tk_lock_g, flags);
136 tasklet_schedule(&rpcrdma_tasklet_g);
137}
138
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400139static void
140rpcrdma_qp_async_error_upcall(struct ib_event *event, void *context)
141{
142 struct rpcrdma_ep *ep = context;
143
Chuck Lever7ff11de2014-11-08 20:15:01 -0500144 pr_err("RPC: %s: %s on device %s ep %p\n",
145 __func__, ASYNC_MSG(event->event),
146 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400147 if (ep->rep_connected == 1) {
148 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500149 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400150 wake_up_all(&ep->rep_connect_wait);
151 }
152}
153
154static void
155rpcrdma_cq_async_error_upcall(struct ib_event *event, void *context)
156{
157 struct rpcrdma_ep *ep = context;
158
Chuck Lever7ff11de2014-11-08 20:15:01 -0500159 pr_err("RPC: %s: %s on device %s ep %p\n",
160 __func__, ASYNC_MSG(event->event),
161 event->device->name, context);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400162 if (ep->rep_connected == 1) {
163 ep->rep_connected = -EIO;
Chuck Leverafadc462015-01-21 11:03:11 -0500164 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400165 wake_up_all(&ep->rep_connect_wait);
166 }
167}
168
Chuck Lever85024272015-01-21 11:02:04 -0500169static const char * const wc_status[] = {
170 "success",
171 "local length error",
172 "local QP operation error",
173 "local EE context operation error",
174 "local protection error",
175 "WR flushed",
176 "memory management operation error",
177 "bad response error",
178 "local access error",
179 "remote invalid request error",
180 "remote access error",
181 "remote operation error",
182 "transport retry counter exceeded",
Chuck Levere46ac342015-03-30 14:35:35 -0400183 "RNR retry counter exceeded",
Chuck Lever85024272015-01-21 11:02:04 -0500184 "local RDD violation error",
185 "remove invalid RD request",
186 "operation aborted",
187 "invalid EE context number",
188 "invalid EE context state",
189 "fatal error",
190 "response timeout error",
191 "general error",
192};
193
194#define COMPLETION_MSG(status) \
195 ((status) < ARRAY_SIZE(wc_status) ? \
196 wc_status[(status)] : "unexpected completion error")
197
Chuck Leverfc664482014-05-28 10:33:25 -0400198static void
199rpcrdma_sendcq_process_wc(struct ib_wc *wc)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400200{
Chuck Lever85024272015-01-21 11:02:04 -0500201 /* WARNING: Only wr_id and status are reliable at this point */
Chuck Levere46ac342015-03-30 14:35:35 -0400202 if (wc->wr_id == RPCRDMA_IGNORE_COMPLETION) {
203 if (wc->status != IB_WC_SUCCESS &&
204 wc->status != IB_WC_WR_FLUSH_ERR)
Chuck Lever85024272015-01-21 11:02:04 -0500205 pr_err("RPC: %s: SEND: %s\n",
206 __func__, COMPLETION_MSG(wc->status));
207 } else {
208 struct rpcrdma_mw *r;
209
210 r = (struct rpcrdma_mw *)(unsigned long)wc->wr_id;
Chuck Levere46ac342015-03-30 14:35:35 -0400211 r->mw_sendcompletion(wc);
Chuck Lever85024272015-01-21 11:02:04 -0500212 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400213}
214
Chuck Leverfc664482014-05-28 10:33:25 -0400215static int
Chuck Lever1c00dd02014-05-28 10:33:42 -0400216rpcrdma_sendcq_poll(struct ib_cq *cq, struct rpcrdma_ep *ep)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400217{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400218 struct ib_wc *wcs;
Chuck Lever8301a2c2014-05-28 10:33:51 -0400219 int budget, count, rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400220
Chuck Lever8301a2c2014-05-28 10:33:51 -0400221 budget = RPCRDMA_WC_BUDGET / RPCRDMA_POLLSIZE;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400222 do {
223 wcs = ep->rep_send_wcs;
224
225 rc = ib_poll_cq(cq, RPCRDMA_POLLSIZE, wcs);
226 if (rc <= 0)
227 return rc;
228
229 count = rc;
230 while (count-- > 0)
231 rpcrdma_sendcq_process_wc(wcs++);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400232 } while (rc == RPCRDMA_POLLSIZE && --budget);
Chuck Lever1c00dd02014-05-28 10:33:42 -0400233 return 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400234}
235
236/*
Chuck Leverfc664482014-05-28 10:33:25 -0400237 * Handle send, fast_reg_mr, and local_inv completions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400238 *
Chuck Leverfc664482014-05-28 10:33:25 -0400239 * Send events are typically suppressed and thus do not result
240 * in an upcall. Occasionally one is signaled, however. This
241 * prevents the provider's completion queue from wrapping and
242 * losing a completion.
243 */
244static void
245rpcrdma_sendcq_upcall(struct ib_cq *cq, void *cq_context)
246{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400247 struct rpcrdma_ep *ep = (struct rpcrdma_ep *)cq_context;
Chuck Leverfc664482014-05-28 10:33:25 -0400248 int rc;
249
Chuck Lever1c00dd02014-05-28 10:33:42 -0400250 rc = rpcrdma_sendcq_poll(cq, ep);
Chuck Leverfc664482014-05-28 10:33:25 -0400251 if (rc) {
252 dprintk("RPC: %s: ib_poll_cq failed: %i\n",
253 __func__, rc);
254 return;
255 }
256
Chuck Lever7f23f6f2014-05-28 10:33:34 -0400257 rc = ib_req_notify_cq(cq,
258 IB_CQ_NEXT_COMP | IB_CQ_REPORT_MISSED_EVENTS);
259 if (rc == 0)
260 return;
261 if (rc < 0) {
Chuck Leverfc664482014-05-28 10:33:25 -0400262 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
263 __func__, rc);
264 return;
265 }
266
Chuck Lever1c00dd02014-05-28 10:33:42 -0400267 rpcrdma_sendcq_poll(cq, ep);
Chuck Leverfc664482014-05-28 10:33:25 -0400268}
269
270static void
Chuck Leverbb961932014-07-29 17:25:46 -0400271rpcrdma_recvcq_process_wc(struct ib_wc *wc, struct list_head *sched_list)
Chuck Leverfc664482014-05-28 10:33:25 -0400272{
273 struct rpcrdma_rep *rep =
274 (struct rpcrdma_rep *)(unsigned long)wc->wr_id;
275
Chuck Lever85024272015-01-21 11:02:04 -0500276 /* WARNING: Only wr_id and status are reliable at this point */
277 if (wc->status != IB_WC_SUCCESS)
278 goto out_fail;
Chuck Leverfc664482014-05-28 10:33:25 -0400279
Chuck Lever85024272015-01-21 11:02:04 -0500280 /* status == SUCCESS means all fields in wc are trustworthy */
Chuck Leverfc664482014-05-28 10:33:25 -0400281 if (wc->opcode != IB_WC_RECV)
282 return;
283
Chuck Lever85024272015-01-21 11:02:04 -0500284 dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n",
285 __func__, rep, wc->byte_len);
286
Chuck Leverfc664482014-05-28 10:33:25 -0400287 rep->rr_len = wc->byte_len;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400288 ib_dma_sync_single_for_cpu(rep->rr_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -0500289 rdmab_addr(rep->rr_rdmabuf),
290 rep->rr_len, DMA_FROM_DEVICE);
291 prefetch(rdmab_to_msg(rep->rr_rdmabuf));
Chuck Leverfc664482014-05-28 10:33:25 -0400292
293out_schedule:
Chuck Leverbb961932014-07-29 17:25:46 -0400294 list_add_tail(&rep->rr_list, sched_list);
Chuck Lever85024272015-01-21 11:02:04 -0500295 return;
296out_fail:
297 if (wc->status != IB_WC_WR_FLUSH_ERR)
298 pr_err("RPC: %s: rep %p: %s\n",
299 __func__, rep, COMPLETION_MSG(wc->status));
300 rep->rr_len = ~0U;
301 goto out_schedule;
Chuck Leverfc664482014-05-28 10:33:25 -0400302}
303
304static int
Chuck Lever1c00dd02014-05-28 10:33:42 -0400305rpcrdma_recvcq_poll(struct ib_cq *cq, struct rpcrdma_ep *ep)
Chuck Leverfc664482014-05-28 10:33:25 -0400306{
Chuck Leverbb961932014-07-29 17:25:46 -0400307 struct list_head sched_list;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400308 struct ib_wc *wcs;
Chuck Lever8301a2c2014-05-28 10:33:51 -0400309 int budget, count, rc;
Chuck Leverfc664482014-05-28 10:33:25 -0400310
Chuck Leverbb961932014-07-29 17:25:46 -0400311 INIT_LIST_HEAD(&sched_list);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400312 budget = RPCRDMA_WC_BUDGET / RPCRDMA_POLLSIZE;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400313 do {
314 wcs = ep->rep_recv_wcs;
315
316 rc = ib_poll_cq(cq, RPCRDMA_POLLSIZE, wcs);
317 if (rc <= 0)
Chuck Leverbb961932014-07-29 17:25:46 -0400318 goto out_schedule;
Chuck Lever1c00dd02014-05-28 10:33:42 -0400319
320 count = rc;
321 while (count-- > 0)
Chuck Leverbb961932014-07-29 17:25:46 -0400322 rpcrdma_recvcq_process_wc(wcs++, &sched_list);
Chuck Lever8301a2c2014-05-28 10:33:51 -0400323 } while (rc == RPCRDMA_POLLSIZE && --budget);
Chuck Leverbb961932014-07-29 17:25:46 -0400324 rc = 0;
325
326out_schedule:
Chuck Leverf1a03b72014-11-08 20:14:37 -0500327 rpcrdma_schedule_tasklet(&sched_list);
Chuck Leverbb961932014-07-29 17:25:46 -0400328 return rc;
Chuck Leverfc664482014-05-28 10:33:25 -0400329}
330
331/*
332 * Handle receive completions.
333 *
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400334 * It is reentrant but processes single events in order to maintain
335 * ordering of receives to keep server credits.
336 *
337 * It is the responsibility of the scheduled tasklet to return
338 * recv buffers to the pool. NOTE: this affects synchronization of
339 * connection shutdown. That is, the structures required for
340 * the completion of the reply handler must remain intact until
341 * all memory has been reclaimed.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400342 */
343static void
Chuck Leverfc664482014-05-28 10:33:25 -0400344rpcrdma_recvcq_upcall(struct ib_cq *cq, void *cq_context)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400345{
Chuck Lever1c00dd02014-05-28 10:33:42 -0400346 struct rpcrdma_ep *ep = (struct rpcrdma_ep *)cq_context;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400347 int rc;
348
Chuck Lever1c00dd02014-05-28 10:33:42 -0400349 rc = rpcrdma_recvcq_poll(cq, ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400350 if (rc) {
Chuck Leverfc664482014-05-28 10:33:25 -0400351 dprintk("RPC: %s: ib_poll_cq failed: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400352 __func__, rc);
353 return;
354 }
355
Chuck Lever7f23f6f2014-05-28 10:33:34 -0400356 rc = ib_req_notify_cq(cq,
357 IB_CQ_NEXT_COMP | IB_CQ_REPORT_MISSED_EVENTS);
358 if (rc == 0)
359 return;
360 if (rc < 0) {
Chuck Leverfc664482014-05-28 10:33:25 -0400361 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
362 __func__, rc);
363 return;
364 }
365
Chuck Lever1c00dd02014-05-28 10:33:42 -0400366 rpcrdma_recvcq_poll(cq, ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400367}
368
Chuck Levera7bc2112014-07-29 17:23:52 -0400369static void
370rpcrdma_flush_cqs(struct rpcrdma_ep *ep)
371{
Chuck Lever5c166be2014-11-08 20:14:45 -0500372 struct ib_wc wc;
373 LIST_HEAD(sched_list);
374
375 while (ib_poll_cq(ep->rep_attr.recv_cq, 1, &wc) > 0)
376 rpcrdma_recvcq_process_wc(&wc, &sched_list);
377 if (!list_empty(&sched_list))
378 rpcrdma_schedule_tasklet(&sched_list);
379 while (ib_poll_cq(ep->rep_attr.send_cq, 1, &wc) > 0)
380 rpcrdma_sendcq_process_wc(&wc);
Chuck Levera7bc2112014-07-29 17:23:52 -0400381}
382
Jeff Laytonf895b252014-11-17 16:58:04 -0500383#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400384static const char * const conn[] = {
385 "address resolved",
386 "address error",
387 "route resolved",
388 "route error",
389 "connect request",
390 "connect response",
391 "connect error",
392 "unreachable",
393 "rejected",
394 "established",
395 "disconnected",
Chuck Lever8079fb72014-07-29 17:26:12 -0400396 "device removal",
397 "multicast join",
398 "multicast error",
399 "address change",
400 "timewait exit",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400401};
Chuck Lever8079fb72014-07-29 17:26:12 -0400402
403#define CONNECTION_MSG(status) \
404 ((status) < ARRAY_SIZE(conn) ? \
405 conn[(status)] : "unrecognized connection error")
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400406#endif
407
408static int
409rpcrdma_conn_upcall(struct rdma_cm_id *id, struct rdma_cm_event *event)
410{
411 struct rpcrdma_xprt *xprt = id->context;
412 struct rpcrdma_ia *ia = &xprt->rx_ia;
413 struct rpcrdma_ep *ep = &xprt->rx_ep;
Jeff Laytonf895b252014-11-17 16:58:04 -0500414#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400415 struct sockaddr *sap = (struct sockaddr *)&ep->rep_remote_addr;
Ingo Molnarff0db042008-11-25 16:58:42 -0800416#endif
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500417 struct ib_qp_attr *attr = &ia->ri_qp_attr;
418 struct ib_qp_init_attr *iattr = &ia->ri_qp_init_attr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400419 int connstate = 0;
420
421 switch (event->event) {
422 case RDMA_CM_EVENT_ADDR_RESOLVED:
423 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Tom Talpey5675add2008-10-09 15:01:41 -0400424 ia->ri_async_rc = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400425 complete(&ia->ri_done);
426 break;
427 case RDMA_CM_EVENT_ADDR_ERROR:
428 ia->ri_async_rc = -EHOSTUNREACH;
429 dprintk("RPC: %s: CM address resolution error, ep 0x%p\n",
430 __func__, ep);
431 complete(&ia->ri_done);
432 break;
433 case RDMA_CM_EVENT_ROUTE_ERROR:
434 ia->ri_async_rc = -ENETUNREACH;
435 dprintk("RPC: %s: CM route resolution error, ep 0x%p\n",
436 __func__, ep);
437 complete(&ia->ri_done);
438 break;
439 case RDMA_CM_EVENT_ESTABLISHED:
440 connstate = 1;
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500441 ib_query_qp(ia->ri_id->qp, attr,
442 IB_QP_MAX_QP_RD_ATOMIC | IB_QP_MAX_DEST_RD_ATOMIC,
443 iattr);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400444 dprintk("RPC: %s: %d responder resources"
445 " (%d initiator)\n",
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500446 __func__, attr->max_dest_rd_atomic,
447 attr->max_rd_atomic);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400448 goto connected;
449 case RDMA_CM_EVENT_CONNECT_ERROR:
450 connstate = -ENOTCONN;
451 goto connected;
452 case RDMA_CM_EVENT_UNREACHABLE:
453 connstate = -ENETDOWN;
454 goto connected;
455 case RDMA_CM_EVENT_REJECTED:
456 connstate = -ECONNREFUSED;
457 goto connected;
458 case RDMA_CM_EVENT_DISCONNECTED:
459 connstate = -ECONNABORTED;
460 goto connected;
461 case RDMA_CM_EVENT_DEVICE_REMOVAL:
462 connstate = -ENODEV;
463connected:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400464 dprintk("RPC: %s: %sconnected\n",
465 __func__, connstate > 0 ? "" : "dis");
466 ep->rep_connected = connstate;
Chuck Leverafadc462015-01-21 11:03:11 -0500467 rpcrdma_conn_func(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400468 wake_up_all(&ep->rep_connect_wait);
Chuck Lever8079fb72014-07-29 17:26:12 -0400469 /*FALLTHROUGH*/
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400470 default:
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400471 dprintk("RPC: %s: %pIS:%u (ep 0x%p): %s\n",
472 __func__, sap, rpc_get_port(sap), ep,
Chuck Lever8079fb72014-07-29 17:26:12 -0400473 CONNECTION_MSG(event->event));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400474 break;
475 }
476
Jeff Laytonf895b252014-11-17 16:58:04 -0500477#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400478 if (connstate == 1) {
Chuck Leverce1ab9a2015-01-21 11:03:35 -0500479 int ird = attr->max_dest_rd_atomic;
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400480 int tird = ep->rep_remote_cma.responder_resources;
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400481
Chuck Levera0ce85f2015-03-30 14:34:21 -0400482 pr_info("rpcrdma: connection to %pIS:%u on %s, memreg '%s', %d credits, %d responders%s\n",
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400483 sap, rpc_get_port(sap),
Chuck Lever89e0d1122015-05-26 11:51:56 -0400484 ia->ri_device->name,
Chuck Levera0ce85f2015-03-30 14:34:21 -0400485 ia->ri_ops->ro_displayname,
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400486 xprt->rx_buf.rb_max_requests,
487 ird, ird < 4 && ird < tird / 2 ? " (low!)" : "");
488 } else if (connstate < 0) {
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400489 pr_info("rpcrdma: connection to %pIS:%u closed (%d)\n",
490 sap, rpc_get_port(sap), connstate);
Tom Talpeyb3cd8d42008-10-09 15:02:02 -0400491 }
492#endif
493
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400494 return 0;
495}
496
497static struct rdma_cm_id *
498rpcrdma_create_id(struct rpcrdma_xprt *xprt,
499 struct rpcrdma_ia *ia, struct sockaddr *addr)
500{
501 struct rdma_cm_id *id;
502 int rc;
503
Tom Talpey1a954052008-10-09 15:01:31 -0400504 init_completion(&ia->ri_done);
505
Sean Heftyb26f9b92010-04-01 17:08:41 +0000506 id = rdma_create_id(rpcrdma_conn_upcall, xprt, RDMA_PS_TCP, IB_QPT_RC);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400507 if (IS_ERR(id)) {
508 rc = PTR_ERR(id);
509 dprintk("RPC: %s: rdma_create_id() failed %i\n",
510 __func__, rc);
511 return id;
512 }
513
Tom Talpey5675add2008-10-09 15:01:41 -0400514 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400515 rc = rdma_resolve_addr(id, NULL, addr, RDMA_RESOLVE_TIMEOUT);
516 if (rc) {
517 dprintk("RPC: %s: rdma_resolve_addr() failed %i\n",
518 __func__, rc);
519 goto out;
520 }
Tom Talpey5675add2008-10-09 15:01:41 -0400521 wait_for_completion_interruptible_timeout(&ia->ri_done,
522 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400523 rc = ia->ri_async_rc;
524 if (rc)
525 goto out;
526
Tom Talpey5675add2008-10-09 15:01:41 -0400527 ia->ri_async_rc = -ETIMEDOUT;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400528 rc = rdma_resolve_route(id, RDMA_RESOLVE_TIMEOUT);
529 if (rc) {
530 dprintk("RPC: %s: rdma_resolve_route() failed %i\n",
531 __func__, rc);
532 goto out;
533 }
Tom Talpey5675add2008-10-09 15:01:41 -0400534 wait_for_completion_interruptible_timeout(&ia->ri_done,
535 msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400536 rc = ia->ri_async_rc;
537 if (rc)
538 goto out;
539
540 return id;
541
542out:
543 rdma_destroy_id(id);
544 return ERR_PTR(rc);
545}
546
547/*
548 * Drain any cq, prior to teardown.
549 */
550static void
551rpcrdma_clean_cq(struct ib_cq *cq)
552{
553 struct ib_wc wc;
554 int count = 0;
555
556 while (1 == ib_poll_cq(cq, 1, &wc))
557 ++count;
558
559 if (count)
560 dprintk("RPC: %s: flushed %d events (last 0x%x)\n",
561 __func__, count, wc.opcode);
562}
563
564/*
565 * Exported functions.
566 */
567
568/*
569 * Open and initialize an Interface Adapter.
570 * o initializes fields of struct rpcrdma_ia, including
571 * interface and provider attributes and protection zone.
572 */
573int
574rpcrdma_ia_open(struct rpcrdma_xprt *xprt, struct sockaddr *addr, int memreg)
575{
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400576 int rc, mem_priv;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400577 struct rpcrdma_ia *ia = &xprt->rx_ia;
Chuck Lever7bc79722015-01-21 11:03:27 -0500578 struct ib_device_attr *devattr = &ia->ri_devattr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400579
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400580 ia->ri_id = rpcrdma_create_id(xprt, ia, addr);
581 if (IS_ERR(ia->ri_id)) {
582 rc = PTR_ERR(ia->ri_id);
583 goto out1;
584 }
Chuck Lever89e0d1122015-05-26 11:51:56 -0400585 ia->ri_device = ia->ri_id->device;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400586
Chuck Lever89e0d1122015-05-26 11:51:56 -0400587 ia->ri_pd = ib_alloc_pd(ia->ri_device);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400588 if (IS_ERR(ia->ri_pd)) {
589 rc = PTR_ERR(ia->ri_pd);
590 dprintk("RPC: %s: ib_alloc_pd() failed %i\n",
591 __func__, rc);
592 goto out2;
593 }
594
Chuck Lever89e0d1122015-05-26 11:51:56 -0400595 rc = ib_query_device(ia->ri_device, devattr);
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400596 if (rc) {
597 dprintk("RPC: %s: ib_query_device failed %d\n",
598 __func__, rc);
Chuck Lever5ae711a2015-01-21 11:03:19 -0500599 goto out3;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400600 }
601
Chuck Lever7bc79722015-01-21 11:03:27 -0500602 if (devattr->device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY) {
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400603 ia->ri_have_dma_lkey = 1;
Chuck Lever89e0d1122015-05-26 11:51:56 -0400604 ia->ri_dma_lkey = ia->ri_device->local_dma_lkey;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400605 }
606
Chuck Leverf10eafd2014-05-28 10:32:51 -0400607 if (memreg == RPCRDMA_FRMR) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400608 /* Requires both frmr reg and local dma lkey */
Chuck Lever41f97022015-03-30 14:34:12 -0400609 if (((devattr->device_cap_flags &
Tom Talpey3197d3092008-10-09 15:00:20 -0400610 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) !=
Chuck Lever41f97022015-03-30 14:34:12 -0400611 (IB_DEVICE_MEM_MGT_EXTENSIONS|IB_DEVICE_LOCAL_DMA_LKEY)) ||
612 (devattr->max_fast_reg_page_list_len == 0)) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400613 dprintk("RPC: %s: FRMR registration "
Chuck Leverf10eafd2014-05-28 10:32:51 -0400614 "not supported by HCA\n", __func__);
615 memreg = RPCRDMA_MTHCAFMR;
Tom Talpey3197d3092008-10-09 15:00:20 -0400616 }
Chuck Leverf10eafd2014-05-28 10:32:51 -0400617 }
618 if (memreg == RPCRDMA_MTHCAFMR) {
Chuck Lever89e0d1122015-05-26 11:51:56 -0400619 if (!ia->ri_device->alloc_fmr) {
Chuck Leverf10eafd2014-05-28 10:32:51 -0400620 dprintk("RPC: %s: MTHCAFMR registration "
621 "not supported by HCA\n", __func__);
Chuck Leverf10eafd2014-05-28 10:32:51 -0400622 memreg = RPCRDMA_ALLPHYSICAL;
Chuck Leverf10eafd2014-05-28 10:32:51 -0400623 }
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400624 }
625
626 /*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400627 * Optionally obtain an underlying physical identity mapping in
628 * order to do a memory window-based bind. This base registration
629 * is protected from remote access - that is enabled only by binding
630 * for the specific bytes targeted during each RPC operation, and
631 * revoked after the corresponding completion similar to a storage
632 * adapter.
633 */
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400634 switch (memreg) {
Tom Talpey3197d3092008-10-09 15:00:20 -0400635 case RPCRDMA_FRMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400636 ia->ri_ops = &rpcrdma_frwr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400637 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400638 case RPCRDMA_ALLPHYSICAL:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400639 ia->ri_ops = &rpcrdma_physical_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400640 mem_priv = IB_ACCESS_LOCAL_WRITE |
641 IB_ACCESS_REMOTE_WRITE |
642 IB_ACCESS_REMOTE_READ;
643 goto register_setup;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400644 case RPCRDMA_MTHCAFMR:
Chuck Levera0ce85f2015-03-30 14:34:21 -0400645 ia->ri_ops = &rpcrdma_fmr_memreg_ops;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400646 if (ia->ri_have_dma_lkey)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400647 break;
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400648 mem_priv = IB_ACCESS_LOCAL_WRITE;
649 register_setup:
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400650 ia->ri_bind_mem = ib_get_dma_mr(ia->ri_pd, mem_priv);
651 if (IS_ERR(ia->ri_bind_mem)) {
652 printk(KERN_ALERT "%s: ib_get_dma_mr for "
Chuck Lever0ac531c2014-05-28 10:32:43 -0400653 "phys register failed with %lX\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400654 __func__, PTR_ERR(ia->ri_bind_mem));
Chuck Lever0ac531c2014-05-28 10:32:43 -0400655 rc = -ENOMEM;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500656 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400657 }
Tom Talpeybd7ed1d2008-10-09 15:00:09 -0400658 break;
659 default:
Chuck Levercdd9ade2014-05-28 10:33:00 -0400660 printk(KERN_ERR "RPC: Unsupported memory "
661 "registration mode: %d\n", memreg);
662 rc = -ENOMEM;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500663 goto out3;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400664 }
Chuck Levera0ce85f2015-03-30 14:34:21 -0400665 dprintk("RPC: %s: memory registration strategy is '%s'\n",
666 __func__, ia->ri_ops->ro_displayname);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400667
Chuck Lever73806c82014-07-29 17:23:25 -0400668 rwlock_init(&ia->ri_qplock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400669 return 0;
Chuck Lever5ae711a2015-01-21 11:03:19 -0500670
671out3:
672 ib_dealloc_pd(ia->ri_pd);
673 ia->ri_pd = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400674out2:
675 rdma_destroy_id(ia->ri_id);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400676 ia->ri_id = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400677out1:
678 return rc;
679}
680
681/*
682 * Clean up/close an IA.
683 * o if event handles and PD have been initialized, free them.
684 * o close the IA
685 */
686void
687rpcrdma_ia_close(struct rpcrdma_ia *ia)
688{
689 int rc;
690
691 dprintk("RPC: %s: entering\n", __func__);
692 if (ia->ri_bind_mem != NULL) {
693 rc = ib_dereg_mr(ia->ri_bind_mem);
694 dprintk("RPC: %s: ib_dereg_mr returned %i\n",
695 __func__, rc);
696 }
Chuck Lever6d446982015-05-26 11:51:27 -0400697
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400698 if (ia->ri_id != NULL && !IS_ERR(ia->ri_id)) {
699 if (ia->ri_id->qp)
700 rdma_destroy_qp(ia->ri_id);
701 rdma_destroy_id(ia->ri_id);
702 ia->ri_id = NULL;
703 }
Chuck Lever6d446982015-05-26 11:51:27 -0400704
705 /* If the pd is still busy, xprtrdma missed freeing a resource */
706 if (ia->ri_pd && !IS_ERR(ia->ri_pd))
707 WARN_ON(ib_dealloc_pd(ia->ri_pd));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400708}
709
710/*
711 * Create unconnected endpoint.
712 */
713int
714rpcrdma_ep_create(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia,
715 struct rpcrdma_create_data_internal *cdata)
716{
Chuck Lever7bc79722015-01-21 11:03:27 -0500717 struct ib_device_attr *devattr = &ia->ri_devattr;
Chuck Leverfc664482014-05-28 10:33:25 -0400718 struct ib_cq *sendcq, *recvcq;
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400719 int rc, err;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400720
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400721 /* check provider's send/recv wr limits */
Chuck Lever7bc79722015-01-21 11:03:27 -0500722 if (cdata->max_requests > devattr->max_qp_wr)
723 cdata->max_requests = devattr->max_qp_wr;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400724
725 ep->rep_attr.event_handler = rpcrdma_qp_async_error_upcall;
726 ep->rep_attr.qp_context = ep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400727 ep->rep_attr.srq = NULL;
728 ep->rep_attr.cap.max_send_wr = cdata->max_requests;
Chuck Lever3968cb52015-03-30 14:35:26 -0400729 rc = ia->ri_ops->ro_open(ia, ep, cdata);
730 if (rc)
731 return rc;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400732 ep->rep_attr.cap.max_recv_wr = cdata->max_requests;
733 ep->rep_attr.cap.max_send_sge = (cdata->padding ? 4 : 2);
734 ep->rep_attr.cap.max_recv_sge = 1;
735 ep->rep_attr.cap.max_inline_data = 0;
736 ep->rep_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
737 ep->rep_attr.qp_type = IB_QPT_RC;
738 ep->rep_attr.port_num = ~0;
739
Chuck Leverc05fbb52015-01-21 11:04:33 -0500740 if (cdata->padding) {
741 ep->rep_padbuf = rpcrdma_alloc_regbuf(ia, cdata->padding,
742 GFP_KERNEL);
743 if (IS_ERR(ep->rep_padbuf))
744 return PTR_ERR(ep->rep_padbuf);
745 } else
746 ep->rep_padbuf = NULL;
747
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400748 dprintk("RPC: %s: requested max: dtos: send %d recv %d; "
749 "iovs: send %d recv %d\n",
750 __func__,
751 ep->rep_attr.cap.max_send_wr,
752 ep->rep_attr.cap.max_recv_wr,
753 ep->rep_attr.cap.max_send_sge,
754 ep->rep_attr.cap.max_recv_sge);
755
756 /* set trigger for requesting send completion */
Chuck Leverfc664482014-05-28 10:33:25 -0400757 ep->rep_cqinit = ep->rep_attr.cap.max_send_wr/2 - 1;
Chuck Levere7104a22014-11-08 20:14:20 -0500758 if (ep->rep_cqinit > RPCRDMA_MAX_UNSIGNALED_SENDS)
759 ep->rep_cqinit = RPCRDMA_MAX_UNSIGNALED_SENDS;
760 else if (ep->rep_cqinit <= 2)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400761 ep->rep_cqinit = 0;
762 INIT_CQCOUNT(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400763 init_waitqueue_head(&ep->rep_connect_wait);
Chuck Lever254f91e2014-05-28 10:32:17 -0400764 INIT_DELAYED_WORK(&ep->rep_connect_worker, rpcrdma_connect_worker);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400765
Chuck Lever89e0d1122015-05-26 11:51:56 -0400766 sendcq = ib_create_cq(ia->ri_device, rpcrdma_sendcq_upcall,
767 rpcrdma_cq_async_error_upcall, ep,
768 ep->rep_attr.cap.max_send_wr + 1, 0);
Chuck Leverfc664482014-05-28 10:33:25 -0400769 if (IS_ERR(sendcq)) {
770 rc = PTR_ERR(sendcq);
771 dprintk("RPC: %s: failed to create send CQ: %i\n",
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400772 __func__, rc);
773 goto out1;
774 }
775
Chuck Leverfc664482014-05-28 10:33:25 -0400776 rc = ib_req_notify_cq(sendcq, IB_CQ_NEXT_COMP);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400777 if (rc) {
778 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
779 __func__, rc);
780 goto out2;
781 }
782
Chuck Lever89e0d1122015-05-26 11:51:56 -0400783 recvcq = ib_create_cq(ia->ri_device, rpcrdma_recvcq_upcall,
784 rpcrdma_cq_async_error_upcall, ep,
785 ep->rep_attr.cap.max_recv_wr + 1, 0);
Chuck Leverfc664482014-05-28 10:33:25 -0400786 if (IS_ERR(recvcq)) {
787 rc = PTR_ERR(recvcq);
788 dprintk("RPC: %s: failed to create recv CQ: %i\n",
789 __func__, rc);
790 goto out2;
791 }
792
793 rc = ib_req_notify_cq(recvcq, IB_CQ_NEXT_COMP);
794 if (rc) {
795 dprintk("RPC: %s: ib_req_notify_cq failed: %i\n",
796 __func__, rc);
797 ib_destroy_cq(recvcq);
798 goto out2;
799 }
800
801 ep->rep_attr.send_cq = sendcq;
802 ep->rep_attr.recv_cq = recvcq;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400803
804 /* Initialize cma parameters */
805
806 /* RPC/RDMA does not use private data */
807 ep->rep_remote_cma.private_data = NULL;
808 ep->rep_remote_cma.private_data_len = 0;
809
810 /* Client offers RDMA Read but does not initiate */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400811 ep->rep_remote_cma.initiator_depth = 0;
Chuck Lever7bc79722015-01-21 11:03:27 -0500812 if (devattr->max_qp_rd_atom > 32) /* arbitrary but <= 255 */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400813 ep->rep_remote_cma.responder_resources = 32;
814 else
Chuck Lever7bc79722015-01-21 11:03:27 -0500815 ep->rep_remote_cma.responder_resources =
816 devattr->max_qp_rd_atom;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400817
818 ep->rep_remote_cma.retry_count = 7;
819 ep->rep_remote_cma.flow_control = 0;
820 ep->rep_remote_cma.rnr_retry_count = 0;
821
822 return 0;
823
824out2:
Chuck Leverfc664482014-05-28 10:33:25 -0400825 err = ib_destroy_cq(sendcq);
Chuck Lever5d40a8a2007-10-26 13:30:54 -0400826 if (err)
827 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
828 __func__, err);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400829out1:
Chuck Leverc05fbb52015-01-21 11:04:33 -0500830 rpcrdma_free_regbuf(ia, ep->rep_padbuf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400831 return rc;
832}
833
834/*
835 * rpcrdma_ep_destroy
836 *
837 * Disconnect and destroy endpoint. After this, the only
838 * valid operations on the ep are to free it (if dynamically
839 * allocated) or re-create it.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400840 */
Chuck Lever7f1d5412014-05-28 10:33:16 -0400841void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400842rpcrdma_ep_destroy(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
843{
844 int rc;
845
846 dprintk("RPC: %s: entering, connected is %d\n",
847 __func__, ep->rep_connected);
848
Chuck Lever254f91e2014-05-28 10:32:17 -0400849 cancel_delayed_work_sync(&ep->rep_connect_worker);
850
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400851 if (ia->ri_id->qp) {
Chuck Lever282191c2014-07-29 17:25:55 -0400852 rpcrdma_ep_disconnect(ep, ia);
Tom Talpeyfee08ca2008-10-09 15:01:00 -0400853 rdma_destroy_qp(ia->ri_id);
854 ia->ri_id->qp = NULL;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400855 }
856
Chuck Leverc05fbb52015-01-21 11:04:33 -0500857 rpcrdma_free_regbuf(ia, ep->rep_padbuf);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400858
Chuck Leverfc664482014-05-28 10:33:25 -0400859 rpcrdma_clean_cq(ep->rep_attr.recv_cq);
860 rc = ib_destroy_cq(ep->rep_attr.recv_cq);
861 if (rc)
862 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
863 __func__, rc);
864
865 rpcrdma_clean_cq(ep->rep_attr.send_cq);
866 rc = ib_destroy_cq(ep->rep_attr.send_cq);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400867 if (rc)
868 dprintk("RPC: %s: ib_destroy_cq returned %i\n",
869 __func__, rc);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400870}
871
872/*
873 * Connect unconnected endpoint.
874 */
875int
876rpcrdma_ep_connect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
877{
Chuck Lever73806c82014-07-29 17:23:25 -0400878 struct rdma_cm_id *id, *old;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400879 int rc = 0;
880 int retry_count = 0;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400881
Tom Talpeyc0555512008-10-10 11:32:45 -0400882 if (ep->rep_connected != 0) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400883 struct rpcrdma_xprt *xprt;
884retry:
Chuck Leverec62f402014-05-28 10:34:07 -0400885 dprintk("RPC: %s: reconnecting...\n", __func__);
Chuck Lever282191c2014-07-29 17:25:55 -0400886
887 rpcrdma_ep_disconnect(ep, ia);
Chuck Levera7bc2112014-07-29 17:23:52 -0400888 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400889
890 xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
891 id = rpcrdma_create_id(xprt, ia,
892 (struct sockaddr *)&xprt->rx_data.addr);
893 if (IS_ERR(id)) {
Chuck Leverec62f402014-05-28 10:34:07 -0400894 rc = -EHOSTUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400895 goto out;
896 }
897 /* TEMP TEMP TEMP - fail if new device:
898 * Deregister/remarshal *all* requests!
899 * Close and recreate adapter, pd, etc!
900 * Re-determine all attributes still sane!
901 * More stuff I haven't thought of!
902 * Rrrgh!
903 */
Chuck Lever89e0d1122015-05-26 11:51:56 -0400904 if (ia->ri_device != id->device) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400905 printk("RPC: %s: can't reconnect on "
906 "different device!\n", __func__);
907 rdma_destroy_id(id);
Chuck Leverec62f402014-05-28 10:34:07 -0400908 rc = -ENETUNREACH;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400909 goto out;
910 }
911 /* END TEMP */
Chuck Leverec62f402014-05-28 10:34:07 -0400912 rc = rdma_create_qp(id, ia->ri_pd, &ep->rep_attr);
913 if (rc) {
914 dprintk("RPC: %s: rdma_create_qp failed %i\n",
915 __func__, rc);
916 rdma_destroy_id(id);
917 rc = -ENETUNREACH;
918 goto out;
919 }
Chuck Lever73806c82014-07-29 17:23:25 -0400920
921 write_lock(&ia->ri_qplock);
922 old = ia->ri_id;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400923 ia->ri_id = id;
Chuck Lever73806c82014-07-29 17:23:25 -0400924 write_unlock(&ia->ri_qplock);
925
926 rdma_destroy_qp(old);
927 rdma_destroy_id(old);
Chuck Leverec62f402014-05-28 10:34:07 -0400928 } else {
929 dprintk("RPC: %s: connecting...\n", __func__);
930 rc = rdma_create_qp(ia->ri_id, ia->ri_pd, &ep->rep_attr);
931 if (rc) {
932 dprintk("RPC: %s: rdma_create_qp failed %i\n",
933 __func__, rc);
934 /* do not update ep->rep_connected */
935 return -ENETUNREACH;
936 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400937 }
938
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400939 ep->rep_connected = 0;
940
941 rc = rdma_connect(ia->ri_id, &ep->rep_remote_cma);
942 if (rc) {
943 dprintk("RPC: %s: rdma_connect() failed with %i\n",
944 __func__, rc);
945 goto out;
946 }
947
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400948 wait_event_interruptible(ep->rep_connect_wait, ep->rep_connected != 0);
949
950 /*
951 * Check state. A non-peer reject indicates no listener
952 * (ECONNREFUSED), which may be a transient state. All
953 * others indicate a transport condition which has already
954 * undergone a best-effort.
955 */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800956 if (ep->rep_connected == -ECONNREFUSED &&
957 ++retry_count <= RDMA_CONNECT_RETRY_MAX) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400958 dprintk("RPC: %s: non-peer_reject, retry\n", __func__);
959 goto retry;
960 }
961 if (ep->rep_connected <= 0) {
962 /* Sometimes, the only way to reliably connect to remote
963 * CMs is to use same nonzero values for ORD and IRD. */
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400964 if (retry_count++ <= RDMA_CONNECT_RETRY_MAX + 1 &&
965 (ep->rep_remote_cma.responder_resources == 0 ||
966 ep->rep_remote_cma.initiator_depth !=
967 ep->rep_remote_cma.responder_resources)) {
968 if (ep->rep_remote_cma.responder_resources == 0)
969 ep->rep_remote_cma.responder_resources = 1;
970 ep->rep_remote_cma.initiator_depth =
971 ep->rep_remote_cma.responder_resources;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400972 goto retry;
Tom Tuckerb334eaa2008-10-09 15:00:30 -0400973 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400974 rc = ep->rep_connected;
975 } else {
976 dprintk("RPC: %s: connected\n", __func__);
977 }
978
979out:
980 if (rc)
981 ep->rep_connected = rc;
982 return rc;
983}
984
985/*
986 * rpcrdma_ep_disconnect
987 *
988 * This is separate from destroy to facilitate the ability
989 * to reconnect without recreating the endpoint.
990 *
991 * This call is not reentrant, and must not be made in parallel
992 * on the same endpoint.
993 */
Chuck Lever282191c2014-07-29 17:25:55 -0400994void
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -0400995rpcrdma_ep_disconnect(struct rpcrdma_ep *ep, struct rpcrdma_ia *ia)
996{
997 int rc;
998
Chuck Levera7bc2112014-07-29 17:23:52 -0400999 rpcrdma_flush_cqs(ep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001000 rc = rdma_disconnect(ia->ri_id);
1001 if (!rc) {
1002 /* returns without wait if not connected */
1003 wait_event_interruptible(ep->rep_connect_wait,
1004 ep->rep_connected != 1);
1005 dprintk("RPC: %s: after wait, %sconnected\n", __func__,
1006 (ep->rep_connected == 1) ? "still " : "dis");
1007 } else {
1008 dprintk("RPC: %s: rdma_disconnect %i\n", __func__, rc);
1009 ep->rep_connected = rc;
1010 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001011}
1012
Chuck Lever13924022015-01-21 11:03:52 -05001013static struct rpcrdma_req *
1014rpcrdma_create_req(struct rpcrdma_xprt *r_xprt)
1015{
Chuck Lever13924022015-01-21 11:03:52 -05001016 struct rpcrdma_req *req;
Chuck Lever13924022015-01-21 11:03:52 -05001017
Chuck Lever85275c82015-01-21 11:04:16 -05001018 req = kzalloc(sizeof(*req), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001019 if (req == NULL)
Chuck Lever85275c82015-01-21 11:04:16 -05001020 return ERR_PTR(-ENOMEM);
Chuck Lever13924022015-01-21 11:03:52 -05001021
Chuck Lever13924022015-01-21 11:03:52 -05001022 req->rl_buffer = &r_xprt->rx_buf;
1023 return req;
Chuck Lever13924022015-01-21 11:03:52 -05001024}
1025
1026static struct rpcrdma_rep *
1027rpcrdma_create_rep(struct rpcrdma_xprt *r_xprt)
1028{
1029 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever13924022015-01-21 11:03:52 -05001030 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1031 struct rpcrdma_rep *rep;
1032 int rc;
1033
1034 rc = -ENOMEM;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001035 rep = kzalloc(sizeof(*rep), GFP_KERNEL);
Chuck Lever13924022015-01-21 11:03:52 -05001036 if (rep == NULL)
1037 goto out;
Chuck Lever13924022015-01-21 11:03:52 -05001038
Chuck Lever6b1184c2015-01-21 11:04:25 -05001039 rep->rr_rdmabuf = rpcrdma_alloc_regbuf(ia, cdata->inline_rsize,
1040 GFP_KERNEL);
1041 if (IS_ERR(rep->rr_rdmabuf)) {
1042 rc = PTR_ERR(rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001043 goto out_free;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001044 }
Chuck Lever13924022015-01-21 11:03:52 -05001045
Chuck Lever89e0d1122015-05-26 11:51:56 -04001046 rep->rr_device = ia->ri_device;
Chuck Leverfed171b2015-05-26 11:51:37 -04001047 rep->rr_rxprt = r_xprt;
Chuck Lever13924022015-01-21 11:03:52 -05001048 return rep;
1049
1050out_free:
1051 kfree(rep);
1052out:
1053 return ERR_PTR(rc);
1054}
1055
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001056int
Chuck Leverac920d02015-01-21 11:03:44 -05001057rpcrdma_buffer_create(struct rpcrdma_xprt *r_xprt)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001058{
Chuck Leverac920d02015-01-21 11:03:44 -05001059 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1060 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
1061 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001062 char *p;
Chuck Lever13924022015-01-21 11:03:52 -05001063 size_t len;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001064 int i, rc;
1065
1066 buf->rb_max_requests = cdata->max_requests;
1067 spin_lock_init(&buf->rb_lock);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001068
1069 /* Need to allocate:
1070 * 1. arrays for send and recv pointers
1071 * 2. arrays of struct rpcrdma_req to fill in pointers
1072 * 3. array of struct rpcrdma_rep for replies
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001073 * Send/recv buffers in req/rep need to be registered
1074 */
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001075 len = buf->rb_max_requests *
1076 (sizeof(struct rpcrdma_req *) + sizeof(struct rpcrdma_rep *));
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001077
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001078 p = kzalloc(len, GFP_KERNEL);
1079 if (p == NULL) {
1080 dprintk("RPC: %s: req_t/rep_t/pad kzalloc(%zd) failed\n",
1081 __func__, len);
1082 rc = -ENOMEM;
1083 goto out;
1084 }
1085 buf->rb_pool = p; /* for freeing it later */
1086
1087 buf->rb_send_bufs = (struct rpcrdma_req **) p;
1088 p = (char *) &buf->rb_send_bufs[buf->rb_max_requests];
1089 buf->rb_recv_bufs = (struct rpcrdma_rep **) p;
1090 p = (char *) &buf->rb_recv_bufs[buf->rb_max_requests];
1091
Chuck Lever91e70e72015-03-30 14:34:58 -04001092 rc = ia->ri_ops->ro_init(r_xprt);
1093 if (rc)
1094 goto out;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001095
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001096 for (i = 0; i < buf->rb_max_requests; i++) {
1097 struct rpcrdma_req *req;
1098 struct rpcrdma_rep *rep;
1099
Chuck Lever13924022015-01-21 11:03:52 -05001100 req = rpcrdma_create_req(r_xprt);
1101 if (IS_ERR(req)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001102 dprintk("RPC: %s: request buffer %d alloc"
1103 " failed\n", __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001104 rc = PTR_ERR(req);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001105 goto out;
1106 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001107 buf->rb_send_bufs[i] = req;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001108
Chuck Lever13924022015-01-21 11:03:52 -05001109 rep = rpcrdma_create_rep(r_xprt);
1110 if (IS_ERR(rep)) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001111 dprintk("RPC: %s: reply buffer %d alloc failed\n",
1112 __func__, i);
Chuck Lever13924022015-01-21 11:03:52 -05001113 rc = PTR_ERR(rep);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001114 goto out;
1115 }
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001116 buf->rb_recv_bufs[i] = rep;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001117 }
Chuck Lever13924022015-01-21 11:03:52 -05001118
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001119 return 0;
1120out:
1121 rpcrdma_buffer_destroy(buf);
1122 return rc;
1123}
1124
Chuck Lever2e845222014-07-29 17:25:38 -04001125static void
Chuck Lever13924022015-01-21 11:03:52 -05001126rpcrdma_destroy_rep(struct rpcrdma_ia *ia, struct rpcrdma_rep *rep)
1127{
1128 if (!rep)
1129 return;
1130
Chuck Lever6b1184c2015-01-21 11:04:25 -05001131 rpcrdma_free_regbuf(ia, rep->rr_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001132 kfree(rep);
1133}
1134
1135static void
1136rpcrdma_destroy_req(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
1137{
1138 if (!req)
1139 return;
1140
Chuck Lever0ca77dc2015-01-21 11:04:08 -05001141 rpcrdma_free_regbuf(ia, req->rl_sendbuf);
Chuck Lever85275c82015-01-21 11:04:16 -05001142 rpcrdma_free_regbuf(ia, req->rl_rdmabuf);
Chuck Lever13924022015-01-21 11:03:52 -05001143 kfree(req);
1144}
1145
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001146void
1147rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
1148{
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001149 struct rpcrdma_ia *ia = rdmab_to_ia(buf);
Chuck Lever2e845222014-07-29 17:25:38 -04001150 int i;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001151
1152 /* clean up in reverse order from create
1153 * 1. recv mr memory (mr free, then kfree)
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001154 * 2. send mr memory (mr free, then kfree)
Chuck Lever2e845222014-07-29 17:25:38 -04001155 * 3. MWs
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001156 */
1157 dprintk("RPC: %s: entering\n", __func__);
1158
1159 for (i = 0; i < buf->rb_max_requests; i++) {
Chuck Lever13924022015-01-21 11:03:52 -05001160 if (buf->rb_recv_bufs)
1161 rpcrdma_destroy_rep(ia, buf->rb_recv_bufs[i]);
1162 if (buf->rb_send_bufs)
1163 rpcrdma_destroy_req(ia, buf->rb_send_bufs[i]);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001164 }
1165
Chuck Lever4561f342015-03-30 14:35:17 -04001166 ia->ri_ops->ro_destroy(buf);
Allen Andrews4034ba02014-05-28 10:32:09 -04001167
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001168 kfree(buf->rb_pool);
1169}
1170
Chuck Lever346aa662015-05-26 11:52:06 -04001171struct rpcrdma_mw *
1172rpcrdma_get_mw(struct rpcrdma_xprt *r_xprt)
1173{
1174 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
1175 struct rpcrdma_mw *mw = NULL;
Chuck Lever346aa662015-05-26 11:52:06 -04001176
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001177 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001178 if (!list_empty(&buf->rb_mws)) {
1179 mw = list_first_entry(&buf->rb_mws,
1180 struct rpcrdma_mw, mw_list);
1181 list_del_init(&mw->mw_list);
1182 }
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001183 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001184
1185 if (!mw)
1186 pr_err("RPC: %s: no MWs available\n", __func__);
1187 return mw;
1188}
1189
1190void
1191rpcrdma_put_mw(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mw *mw)
1192{
1193 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
Chuck Lever346aa662015-05-26 11:52:06 -04001194
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001195 spin_lock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001196 list_add_tail(&mw->mw_list, &buf->rb_mws);
Chuck Lever58d1dcf2015-05-26 11:53:13 -04001197 spin_unlock(&buf->rb_mwlock);
Chuck Lever346aa662015-05-26 11:52:06 -04001198}
1199
Chuck Leverc2922c02014-07-29 17:24:36 -04001200static void
1201rpcrdma_buffer_put_sendbuf(struct rpcrdma_req *req, struct rpcrdma_buffer *buf)
1202{
1203 buf->rb_send_bufs[--buf->rb_send_index] = req;
1204 req->rl_niovs = 0;
1205 if (req->rl_reply) {
1206 buf->rb_recv_bufs[--buf->rb_recv_index] = req->rl_reply;
Chuck Leverc2922c02014-07-29 17:24:36 -04001207 req->rl_reply = NULL;
1208 }
1209}
1210
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001211/*
1212 * Get a set of request/reply buffers.
1213 *
1214 * Reply buffer (if needed) is attached to send buffer upon return.
1215 * Rule:
1216 * rb_send_index and rb_recv_index MUST always be pointing to the
1217 * *next* available buffer (non-NULL). They are incremented after
1218 * removing buffers, and decremented *before* returning them.
1219 */
1220struct rpcrdma_req *
1221rpcrdma_buffer_get(struct rpcrdma_buffer *buffers)
1222{
1223 struct rpcrdma_req *req;
1224 unsigned long flags;
1225
1226 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc14d86e2015-05-26 11:52:35 -04001227
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001228 if (buffers->rb_send_index == buffers->rb_max_requests) {
1229 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1230 dprintk("RPC: %s: out of request buffers\n", __func__);
1231 return ((struct rpcrdma_req *)NULL);
1232 }
1233
1234 req = buffers->rb_send_bufs[buffers->rb_send_index];
1235 if (buffers->rb_send_index < buffers->rb_recv_index) {
1236 dprintk("RPC: %s: %d extra receives outstanding (ok)\n",
1237 __func__,
1238 buffers->rb_recv_index - buffers->rb_send_index);
1239 req->rl_reply = NULL;
1240 } else {
1241 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1242 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1243 }
1244 buffers->rb_send_bufs[buffers->rb_send_index++] = NULL;
Chuck Leverddb6beb2014-07-29 17:24:54 -04001245
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001246 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1247 return req;
1248}
1249
1250/*
1251 * Put request/reply buffers back into pool.
1252 * Pre-decrement counter/array index.
1253 */
1254void
1255rpcrdma_buffer_put(struct rpcrdma_req *req)
1256{
1257 struct rpcrdma_buffer *buffers = req->rl_buffer;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001258 unsigned long flags;
1259
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001260 spin_lock_irqsave(&buffers->rb_lock, flags);
Chuck Leverc2922c02014-07-29 17:24:36 -04001261 rpcrdma_buffer_put_sendbuf(req, buffers);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001262 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1263}
1264
1265/*
1266 * Recover reply buffers from pool.
1267 * This happens when recovering from error conditions.
1268 * Post-increment counter/array index.
1269 */
1270void
1271rpcrdma_recv_buffer_get(struct rpcrdma_req *req)
1272{
1273 struct rpcrdma_buffer *buffers = req->rl_buffer;
1274 unsigned long flags;
1275
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001276 spin_lock_irqsave(&buffers->rb_lock, flags);
1277 if (buffers->rb_recv_index < buffers->rb_max_requests) {
1278 req->rl_reply = buffers->rb_recv_bufs[buffers->rb_recv_index];
1279 buffers->rb_recv_bufs[buffers->rb_recv_index++] = NULL;
1280 }
1281 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1282}
1283
1284/*
1285 * Put reply buffers back into pool when not attached to
Chuck Leverb45ccfd2014-05-28 10:32:34 -04001286 * request. This happens in error conditions.
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001287 */
1288void
1289rpcrdma_recv_buffer_put(struct rpcrdma_rep *rep)
1290{
Chuck Leverfed171b2015-05-26 11:51:37 -04001291 struct rpcrdma_buffer *buffers = &rep->rr_rxprt->rx_buf;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001292 unsigned long flags;
1293
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001294 spin_lock_irqsave(&buffers->rb_lock, flags);
1295 buffers->rb_recv_bufs[--buffers->rb_recv_index] = rep;
1296 spin_unlock_irqrestore(&buffers->rb_lock, flags);
1297}
1298
1299/*
1300 * Wrappers for internal-use kmalloc memory registration, used by buffer code.
1301 */
1302
Chuck Leverd6547882015-03-30 14:35:44 -04001303void
1304rpcrdma_mapping_error(struct rpcrdma_mr_seg *seg)
1305{
1306 dprintk("RPC: map_one: offset %p iova %llx len %zu\n",
1307 seg->mr_offset,
1308 (unsigned long long)seg->mr_dma, seg->mr_dmalen);
1309}
1310
Chuck Leverdf515ca2015-01-21 11:04:41 -05001311static int
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001312rpcrdma_register_internal(struct rpcrdma_ia *ia, void *va, int len,
1313 struct ib_mr **mrp, struct ib_sge *iov)
1314{
1315 struct ib_phys_buf ipb;
1316 struct ib_mr *mr;
1317 int rc;
1318
1319 /*
1320 * All memory passed here was kmalloc'ed, therefore phys-contiguous.
1321 */
Chuck Lever89e0d1122015-05-26 11:51:56 -04001322 iov->addr = ib_dma_map_single(ia->ri_device,
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001323 va, len, DMA_BIDIRECTIONAL);
Chuck Lever89e0d1122015-05-26 11:51:56 -04001324 if (ib_dma_mapping_error(ia->ri_device, iov->addr))
Yan Burmanbf858ab2014-06-19 16:06:30 +03001325 return -ENOMEM;
1326
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001327 iov->length = len;
1328
Tom Talpeybd7ed1d2008-10-09 15:00:09 -04001329 if (ia->ri_have_dma_lkey) {
1330 *mrp = NULL;
1331 iov->lkey = ia->ri_dma_lkey;
1332 return 0;
1333 } else if (ia->ri_bind_mem != NULL) {
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001334 *mrp = NULL;
1335 iov->lkey = ia->ri_bind_mem->lkey;
1336 return 0;
1337 }
1338
1339 ipb.addr = iov->addr;
1340 ipb.size = iov->length;
1341 mr = ib_reg_phys_mr(ia->ri_pd, &ipb, 1,
1342 IB_ACCESS_LOCAL_WRITE, &iov->addr);
1343
1344 dprintk("RPC: %s: phys convert: 0x%llx "
1345 "registered 0x%llx length %d\n",
Andrew Mortona56daeb2007-10-16 01:29:57 -07001346 __func__, (unsigned long long)ipb.addr,
1347 (unsigned long long)iov->addr, len);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001348
1349 if (IS_ERR(mr)) {
1350 *mrp = NULL;
1351 rc = PTR_ERR(mr);
1352 dprintk("RPC: %s: failed with %i\n", __func__, rc);
1353 } else {
1354 *mrp = mr;
1355 iov->lkey = mr->lkey;
1356 rc = 0;
1357 }
1358
1359 return rc;
1360}
1361
Chuck Leverdf515ca2015-01-21 11:04:41 -05001362static int
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001363rpcrdma_deregister_internal(struct rpcrdma_ia *ia,
1364 struct ib_mr *mr, struct ib_sge *iov)
1365{
1366 int rc;
1367
Chuck Lever89e0d1122015-05-26 11:51:56 -04001368 ib_dma_unmap_single(ia->ri_device,
1369 iov->addr, iov->length, DMA_BIDIRECTIONAL);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001370
1371 if (NULL == mr)
1372 return 0;
1373
1374 rc = ib_dereg_mr(mr);
1375 if (rc)
1376 dprintk("RPC: %s: ib_dereg_mr failed %i\n", __func__, rc);
1377 return rc;
1378}
1379
Chuck Lever9128c3e2015-01-21 11:04:00 -05001380/**
1381 * rpcrdma_alloc_regbuf - kmalloc and register memory for SEND/RECV buffers
1382 * @ia: controlling rpcrdma_ia
1383 * @size: size of buffer to be allocated, in bytes
1384 * @flags: GFP flags
1385 *
1386 * Returns pointer to private header of an area of internally
1387 * registered memory, or an ERR_PTR. The registered buffer follows
1388 * the end of the private header.
1389 *
1390 * xprtrdma uses a regbuf for posting an outgoing RDMA SEND, or for
1391 * receiving the payload of RDMA RECV operations. regbufs are not
1392 * used for RDMA READ/WRITE operations, thus are registered only for
1393 * LOCAL access.
1394 */
1395struct rpcrdma_regbuf *
1396rpcrdma_alloc_regbuf(struct rpcrdma_ia *ia, size_t size, gfp_t flags)
1397{
1398 struct rpcrdma_regbuf *rb;
1399 int rc;
1400
1401 rc = -ENOMEM;
1402 rb = kmalloc(sizeof(*rb) + size, flags);
1403 if (rb == NULL)
1404 goto out;
1405
1406 rb->rg_size = size;
1407 rb->rg_owner = NULL;
1408 rc = rpcrdma_register_internal(ia, rb->rg_base, size,
1409 &rb->rg_mr, &rb->rg_iov);
1410 if (rc)
1411 goto out_free;
1412
1413 return rb;
1414
1415out_free:
1416 kfree(rb);
1417out:
1418 return ERR_PTR(rc);
1419}
1420
1421/**
1422 * rpcrdma_free_regbuf - deregister and free registered buffer
1423 * @ia: controlling rpcrdma_ia
1424 * @rb: regbuf to be deregistered and freed
1425 */
1426void
1427rpcrdma_free_regbuf(struct rpcrdma_ia *ia, struct rpcrdma_regbuf *rb)
1428{
1429 if (rb) {
1430 rpcrdma_deregister_internal(ia, rb->rg_mr, &rb->rg_iov);
1431 kfree(rb);
1432 }
1433}
1434
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001435/*
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001436 * Prepost any receive buffer, then post send.
1437 *
1438 * Receive buffer is donated to hardware, reclaimed upon recv completion.
1439 */
1440int
1441rpcrdma_ep_post(struct rpcrdma_ia *ia,
1442 struct rpcrdma_ep *ep,
1443 struct rpcrdma_req *req)
1444{
1445 struct ib_send_wr send_wr, *send_wr_fail;
1446 struct rpcrdma_rep *rep = req->rl_reply;
1447 int rc;
1448
1449 if (rep) {
1450 rc = rpcrdma_ep_post_recv(ia, ep, rep);
1451 if (rc)
1452 goto out;
1453 req->rl_reply = NULL;
1454 }
1455
1456 send_wr.next = NULL;
Chuck Levere46ac342015-03-30 14:35:35 -04001457 send_wr.wr_id = RPCRDMA_IGNORE_COMPLETION;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001458 send_wr.sg_list = req->rl_send_iov;
1459 send_wr.num_sge = req->rl_niovs;
1460 send_wr.opcode = IB_WR_SEND;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001461 if (send_wr.num_sge == 4) /* no need to sync any pad (constant) */
Chuck Lever89e0d1122015-05-26 11:51:56 -04001462 ib_dma_sync_single_for_device(ia->ri_device,
1463 req->rl_send_iov[3].addr,
1464 req->rl_send_iov[3].length,
1465 DMA_TO_DEVICE);
1466 ib_dma_sync_single_for_device(ia->ri_device,
1467 req->rl_send_iov[1].addr,
1468 req->rl_send_iov[1].length,
1469 DMA_TO_DEVICE);
1470 ib_dma_sync_single_for_device(ia->ri_device,
1471 req->rl_send_iov[0].addr,
1472 req->rl_send_iov[0].length,
1473 DMA_TO_DEVICE);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001474
1475 if (DECR_CQCOUNT(ep) > 0)
1476 send_wr.send_flags = 0;
1477 else { /* Provider must take a send completion every now and then */
1478 INIT_CQCOUNT(ep);
1479 send_wr.send_flags = IB_SEND_SIGNALED;
1480 }
1481
1482 rc = ib_post_send(ia->ri_id->qp, &send_wr, &send_wr_fail);
1483 if (rc)
1484 dprintk("RPC: %s: ib_post_send returned %i\n", __func__,
1485 rc);
1486out:
1487 return rc;
1488}
1489
1490/*
1491 * (Re)post a receive buffer.
1492 */
1493int
1494rpcrdma_ep_post_recv(struct rpcrdma_ia *ia,
1495 struct rpcrdma_ep *ep,
1496 struct rpcrdma_rep *rep)
1497{
1498 struct ib_recv_wr recv_wr, *recv_wr_fail;
1499 int rc;
1500
1501 recv_wr.next = NULL;
1502 recv_wr.wr_id = (u64) (unsigned long) rep;
Chuck Lever6b1184c2015-01-21 11:04:25 -05001503 recv_wr.sg_list = &rep->rr_rdmabuf->rg_iov;
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001504 recv_wr.num_sge = 1;
1505
Chuck Lever89e0d1122015-05-26 11:51:56 -04001506 ib_dma_sync_single_for_cpu(ia->ri_device,
Chuck Lever6b1184c2015-01-21 11:04:25 -05001507 rdmab_addr(rep->rr_rdmabuf),
1508 rdmab_length(rep->rr_rdmabuf),
1509 DMA_BIDIRECTIONAL);
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001510
\"Talpey, Thomas\c56c65f2007-09-10 13:51:18 -04001511 rc = ib_post_recv(ia->ri_id->qp, &recv_wr, &recv_wr_fail);
1512
1513 if (rc)
1514 dprintk("RPC: %s: ib_post_recv returned %i\n", __func__,
1515 rc);
1516 return rc;
1517}
Chuck Lever43e95982014-07-29 17:23:34 -04001518
Chuck Lever1c9351e2015-03-30 14:34:30 -04001519/* How many chunk list items fit within our inline buffers?
Chuck Lever43e95982014-07-29 17:23:34 -04001520 */
Chuck Lever1c9351e2015-03-30 14:34:30 -04001521unsigned int
1522rpcrdma_max_segments(struct rpcrdma_xprt *r_xprt)
Chuck Lever43e95982014-07-29 17:23:34 -04001523{
1524 struct rpcrdma_create_data_internal *cdata = &r_xprt->rx_data;
Chuck Lever1c9351e2015-03-30 14:34:30 -04001525 int bytes, segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001526
Chuck Lever1c9351e2015-03-30 14:34:30 -04001527 bytes = min_t(unsigned int, cdata->inline_wsize, cdata->inline_rsize);
1528 bytes -= RPCRDMA_HDRLEN_MIN;
1529 if (bytes < sizeof(struct rpcrdma_segment) * 2) {
1530 pr_warn("RPC: %s: inline threshold too small\n",
1531 __func__);
1532 return 0;
Chuck Lever43e95982014-07-29 17:23:34 -04001533 }
Chuck Lever1c9351e2015-03-30 14:34:30 -04001534
1535 segments = 1 << (fls(bytes / sizeof(struct rpcrdma_segment)) - 1);
1536 dprintk("RPC: %s: max chunk list size = %d segments\n",
1537 __func__, segments);
1538 return segments;
Chuck Lever43e95982014-07-29 17:23:34 -04001539}