blob: dc9000d087a9e717ad040bedd40711b1f0cc27fa [file] [log] [blame]
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04001/*
Chuck Lever62b56a62017-10-30 16:22:14 -04002 * Copyright (c) 2014-2017 Oracle. All rights reserved.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -04003 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the BSD-type
9 * license below:
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 *
18 * Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials provided
21 * with the distribution.
22 *
23 * Neither the name of the Network Appliance, Inc. nor the names of
24 * its contributors may be used to endorse or promote products
25 * derived from this software without specific prior written
26 * permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
40
41/*
42 * transport.c
43 *
44 * This file contains the top-level implementation of an RPC RDMA
45 * transport.
46 *
47 * Naming convention: functions beginning with xprt_ are part of the
48 * transport switch. All others are RPC RDMA internal.
49 */
50
51#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040053#include <linux/seq_file.h>
Jeff Layton59766872013-02-04 12:50:00 -050054#include <linux/sunrpc/addr.h>
Chuck Leverccede752017-12-04 14:04:04 -050055#include <linux/smp.h>
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040056
57#include "xprt_rdma.h"
58
Jeff Laytonf895b252014-11-17 16:58:04 -050059#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040060# define RPCDBG_FACILITY RPCDBG_TRANS
61#endif
62
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040063/*
64 * tunables
65 */
66
67static unsigned int xprt_rdma_slot_table_entries = RPCRDMA_DEF_SLOT_TABLE;
Chuck Lever5d252f92016-01-07 14:50:10 -050068unsigned int xprt_rdma_max_inline_read = RPCRDMA_DEF_INLINE;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040069static unsigned int xprt_rdma_max_inline_write = RPCRDMA_DEF_INLINE;
Chuck Leverfff09592017-04-11 13:22:54 -040070unsigned int xprt_rdma_memreg_strategy = RPCRDMA_FRMR;
71int xprt_rdma_pad_optimize;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040072
Jeff Laytonf895b252014-11-17 16:58:04 -050073#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040074
75static unsigned int min_slot_table_size = RPCRDMA_MIN_SLOT_TABLE;
76static unsigned int max_slot_table_size = RPCRDMA_MAX_SLOT_TABLE;
Chuck Lever29c55422016-05-02 14:40:48 -040077static unsigned int min_inline_size = RPCRDMA_MIN_INLINE;
78static unsigned int max_inline_size = RPCRDMA_MAX_INLINE;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040079static unsigned int zero;
80static unsigned int max_padding = PAGE_SIZE;
81static unsigned int min_memreg = RPCRDMA_BOUNCEBUFFERS;
82static unsigned int max_memreg = RPCRDMA_LAST - 1;
Chuck Lever10492702017-12-14 20:56:42 -050083static unsigned int dummy;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040084
85static struct ctl_table_header *sunrpc_table_header;
86
Joe Perchesfe2c6332013-06-11 23:04:25 -070087static struct ctl_table xr_tunables_table[] = {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040088 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040089 .procname = "rdma_slot_table_entries",
90 .data = &xprt_rdma_slot_table_entries,
91 .maxlen = sizeof(unsigned int),
92 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080093 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040094 .extra1 = &min_slot_table_size,
95 .extra2 = &max_slot_table_size
96 },
97 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040098 .procname = "rdma_max_inline_read",
99 .data = &xprt_rdma_max_inline_read,
100 .maxlen = sizeof(unsigned int),
101 .mode = 0644,
Chuck Lever44829d02016-09-15 10:57:32 -0400102 .proc_handler = proc_dointvec_minmax,
Chuck Lever29c55422016-05-02 14:40:48 -0400103 .extra1 = &min_inline_size,
104 .extra2 = &max_inline_size,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400105 },
106 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400107 .procname = "rdma_max_inline_write",
108 .data = &xprt_rdma_max_inline_write,
109 .maxlen = sizeof(unsigned int),
110 .mode = 0644,
Chuck Lever44829d02016-09-15 10:57:32 -0400111 .proc_handler = proc_dointvec_minmax,
Chuck Lever29c55422016-05-02 14:40:48 -0400112 .extra1 = &min_inline_size,
113 .extra2 = &max_inline_size,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400114 },
115 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400116 .procname = "rdma_inline_write_padding",
Chuck Lever10492702017-12-14 20:56:42 -0500117 .data = &dummy,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400118 .maxlen = sizeof(unsigned int),
119 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800120 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400121 .extra1 = &zero,
122 .extra2 = &max_padding,
123 },
124 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400125 .procname = "rdma_memreg_strategy",
126 .data = &xprt_rdma_memreg_strategy,
127 .maxlen = sizeof(unsigned int),
128 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800129 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400130 .extra1 = &min_memreg,
131 .extra2 = &max_memreg,
132 },
133 {
Tom Talpey9191ca32008-10-09 15:01:11 -0400134 .procname = "rdma_pad_optimize",
135 .data = &xprt_rdma_pad_optimize,
136 .maxlen = sizeof(unsigned int),
137 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800138 .proc_handler = proc_dointvec,
Tom Talpey9191ca32008-10-09 15:01:11 -0400139 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800140 { },
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400141};
142
Joe Perchesfe2c6332013-06-11 23:04:25 -0700143static struct ctl_table sunrpc_table[] = {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400144 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400145 .procname = "sunrpc",
146 .mode = 0555,
147 .child = xr_tunables_table
148 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800149 { },
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400150};
151
152#endif
153
Chuck Leverd31ae252017-08-01 12:00:39 -0400154static const struct rpc_xprt_ops xprt_rdma_procs;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400155
156static void
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400157xprt_rdma_format_addresses4(struct rpc_xprt *xprt, struct sockaddr *sap)
158{
159 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
160 char buf[20];
161
162 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
163 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
164
165 xprt->address_strings[RPC_DISPLAY_NETID] = RPCBIND_NETID_RDMA;
166}
167
168static void
169xprt_rdma_format_addresses6(struct rpc_xprt *xprt, struct sockaddr *sap)
170{
171 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
172 char buf[40];
173
174 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
175 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
176
177 xprt->address_strings[RPC_DISPLAY_NETID] = RPCBIND_NETID_RDMA6;
178}
179
Chuck Lever5d252f92016-01-07 14:50:10 -0500180void
Chuck Lever5231eb92015-08-03 13:02:41 -0400181xprt_rdma_format_addresses(struct rpc_xprt *xprt, struct sockaddr *sap)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400182{
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400183 char buf[128];
184
185 switch (sap->sa_family) {
186 case AF_INET:
187 xprt_rdma_format_addresses4(xprt, sap);
188 break;
189 case AF_INET6:
190 xprt_rdma_format_addresses6(xprt, sap);
191 break;
192 default:
193 pr_err("rpcrdma: Unrecognized address family\n");
194 return;
195 }
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400196
Chuck Leverc877b842009-08-09 15:09:36 -0400197 (void)rpc_ntop(sap, buf, sizeof(buf));
198 xprt->address_strings[RPC_DISPLAY_ADDR] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400199
Joe Perches81160e662010-03-08 12:15:59 -0800200 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400201 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400202
Joe Perches81160e662010-03-08 12:15:59 -0800203 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400204 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400205
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400206 xprt->address_strings[RPC_DISPLAY_PROTO] = "rdma";
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400207}
208
Chuck Lever5d252f92016-01-07 14:50:10 -0500209void
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400210xprt_rdma_free_addresses(struct rpc_xprt *xprt)
211{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500212 unsigned int i;
213
214 for (i = 0; i < RPC_DISPLAY_MAX; i++)
215 switch (i) {
216 case RPC_DISPLAY_PROTO:
217 case RPC_DISPLAY_NETID:
218 continue;
219 default:
220 kfree(xprt->address_strings[i]);
221 }
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400222}
223
Chuck Lever3a72dc72016-11-29 10:53:37 -0500224void
225rpcrdma_conn_func(struct rpcrdma_ep *ep)
226{
227 schedule_delayed_work(&ep->rep_connect_worker, 0);
228}
229
230void
231rpcrdma_connect_worker(struct work_struct *work)
232{
233 struct rpcrdma_ep *ep =
234 container_of(work, struct rpcrdma_ep, rep_connect_worker.work);
235 struct rpcrdma_xprt *r_xprt =
236 container_of(ep, struct rpcrdma_xprt, rx_ep);
237 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
238
239 spin_lock_bh(&xprt->transport_lock);
240 if (++xprt->connect_cookie == 0) /* maintain a reserved value */
241 ++xprt->connect_cookie;
242 if (ep->rep_connected > 0) {
243 if (!xprt_test_and_set_connected(xprt))
244 xprt_wake_pending_tasks(xprt, 0);
245 } else {
246 if (xprt_test_and_clear_connected(xprt))
247 xprt_wake_pending_tasks(xprt, -ENOTCONN);
248 }
249 spin_unlock_bh(&xprt->transport_lock);
250}
251
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400252static void
253xprt_rdma_connect_worker(struct work_struct *work)
254{
Chuck Lever5abefb82015-01-21 11:02:37 -0500255 struct rpcrdma_xprt *r_xprt = container_of(work, struct rpcrdma_xprt,
256 rx_connect_worker.work);
257 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400258 int rc = 0;
259
Trond Myklebustd19751e2012-09-11 17:21:25 -0400260 xprt_clear_connected(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400261
Trond Myklebustd19751e2012-09-11 17:21:25 -0400262 dprintk("RPC: %s: %sconnect\n", __func__,
263 r_xprt->rx_ep.rep_connected != 0 ? "re" : "");
264 rc = rpcrdma_ep_connect(&r_xprt->rx_ep, &r_xprt->rx_ia);
265 if (rc)
266 xprt_wake_pending_tasks(xprt, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400267
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400268 dprintk("RPC: %s: exit\n", __func__);
269 xprt_clear_connecting(xprt);
270}
271
Chuck Lever4a068252015-05-11 14:02:25 -0400272static void
273xprt_rdma_inject_disconnect(struct rpc_xprt *xprt)
274{
275 struct rpcrdma_xprt *r_xprt = container_of(xprt, struct rpcrdma_xprt,
276 rx_xprt);
277
278 pr_info("rpcrdma: injecting transport disconnect on xprt=%p\n", xprt);
279 rdma_disconnect(r_xprt->rx_ia.ri_id);
280}
281
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400282/*
283 * xprt_rdma_destroy
284 *
285 * Destroy the xprt.
286 * Free all memory associated with the object, including its own.
287 * NOTE: none of the *destroy methods free memory for their top-level
288 * objects, even though they may have allocated it (they do free
289 * private memory). It's up to the caller to handle it. In this
290 * case (RDMA transport), all structure memory is inlined with the
291 * struct rpcrdma_xprt.
292 */
293static void
294xprt_rdma_destroy(struct rpc_xprt *xprt)
295{
296 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400297
298 dprintk("RPC: %s: called\n", __func__);
299
Chuck Lever5abefb82015-01-21 11:02:37 -0500300 cancel_delayed_work_sync(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400301
302 xprt_clear_connected(xprt);
303
Chuck Lever7f1d5412014-05-28 10:33:16 -0400304 rpcrdma_ep_destroy(&r_xprt->rx_ep, &r_xprt->rx_ia);
Steve Wise72c02172015-09-21 12:24:23 -0500305 rpcrdma_buffer_destroy(&r_xprt->rx_buf);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400306 rpcrdma_ia_close(&r_xprt->rx_ia);
307
308 xprt_rdma_free_addresses(xprt);
309
Pavel Emelyanove204e622010-09-29 16:03:13 +0400310 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400311
312 dprintk("RPC: %s: returning\n", __func__);
313
314 module_put(THIS_MODULE);
315}
316
Trond Myklebust2881ae72007-12-20 16:03:54 -0500317static const struct rpc_timeout xprt_rdma_default_timeout = {
318 .to_initval = 60 * HZ,
319 .to_maxval = 60 * HZ,
320};
321
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400322/**
323 * xprt_setup_rdma - Set up transport to use RDMA
324 *
325 * @args: rpc transport arguments
326 */
327static struct rpc_xprt *
328xprt_setup_rdma(struct xprt_create *args)
329{
330 struct rpcrdma_create_data_internal cdata;
331 struct rpc_xprt *xprt;
332 struct rpcrdma_xprt *new_xprt;
333 struct rpcrdma_ep *new_ep;
Chuck Lever5231eb92015-08-03 13:02:41 -0400334 struct sockaddr *sap;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400335 int rc;
336
337 if (args->addrlen > sizeof(xprt->addr)) {
338 dprintk("RPC: %s: address too large\n", __func__);
339 return ERR_PTR(-EBADF);
340 }
341
Pavel Emelyanov37aa2132010-09-29 16:05:43 +0400342 xprt = xprt_alloc(args->net, sizeof(struct rpcrdma_xprt),
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400343 xprt_rdma_slot_table_entries,
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +0400344 xprt_rdma_slot_table_entries);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400345 if (xprt == NULL) {
346 dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n",
347 __func__);
348 return ERR_PTR(-ENOMEM);
349 }
350
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400351 /* 60 second timeout, no retries */
Trond Myklebustba7392b2007-12-20 16:03:55 -0500352 xprt->timeout = &xprt_rdma_default_timeout;
Chuck Leverbfaee092014-05-28 10:34:32 -0400353 xprt->bind_timeout = RPCRDMA_BIND_TO;
354 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
355 xprt->idle_timeout = RPCRDMA_IDLE_DISC_TO;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400356
357 xprt->resvport = 0; /* privileged port not needed */
358 xprt->tsh_size = 0; /* RPC-RDMA handles framing */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400359 xprt->ops = &xprt_rdma_procs;
360
361 /*
362 * Set up RDMA-specific connect data.
363 */
364
Chuck Lever5231eb92015-08-03 13:02:41 -0400365 sap = (struct sockaddr *)&cdata.addr;
366 memcpy(sap, args->dstaddr, args->addrlen);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400367
368 /* Ensure xprt->addr holds valid server TCP (not RDMA)
369 * address, for any side protocols which peek at it */
370 xprt->prot = IPPROTO_TCP;
371 xprt->addrlen = args->addrlen;
Chuck Lever5231eb92015-08-03 13:02:41 -0400372 memcpy(&xprt->addr, sap, xprt->addrlen);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400373
Chuck Lever5231eb92015-08-03 13:02:41 -0400374 if (rpc_get_port(sap))
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400375 xprt_set_bound(xprt);
376
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400377 cdata.max_requests = xprt->max_reqs;
378
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400379 cdata.rsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA write max */
380 cdata.wsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA read max */
381
382 cdata.inline_wsize = xprt_rdma_max_inline_write;
383 if (cdata.inline_wsize > cdata.wsize)
384 cdata.inline_wsize = cdata.wsize;
385
386 cdata.inline_rsize = xprt_rdma_max_inline_read;
387 if (cdata.inline_rsize > cdata.rsize)
388 cdata.inline_rsize = cdata.rsize;
389
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400390 /*
391 * Create new transport instance, which includes initialized
392 * o ia
393 * o endpoint
394 * o buffers
395 */
396
397 new_xprt = rpcx_to_rdmax(xprt);
398
Chuck Leverfff09592017-04-11 13:22:54 -0400399 rc = rpcrdma_ia_open(new_xprt, sap);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400400 if (rc)
401 goto out1;
402
403 /*
404 * initialize and create ep
405 */
406 new_xprt->rx_data = cdata;
407 new_ep = &new_xprt->rx_ep;
408 new_ep->rep_remote_addr = cdata.addr;
409
410 rc = rpcrdma_ep_create(&new_xprt->rx_ep,
411 &new_xprt->rx_ia, &new_xprt->rx_data);
412 if (rc)
413 goto out2;
414
Chuck Leverac920d02015-01-21 11:03:44 -0500415 rc = rpcrdma_buffer_create(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400416 if (rc)
417 goto out3;
418
Chuck Lever5abefb82015-01-21 11:02:37 -0500419 INIT_DELAYED_WORK(&new_xprt->rx_connect_worker,
420 xprt_rdma_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400421
Chuck Lever5231eb92015-08-03 13:02:41 -0400422 xprt_rdma_format_addresses(xprt, sap);
Chuck Lever1c9351e2015-03-30 14:34:30 -0400423 xprt->max_payload = new_xprt->rx_ia.ri_ops->ro_maxpages(new_xprt);
424 if (xprt->max_payload == 0)
425 goto out4;
426 xprt->max_payload <<= PAGE_SHIFT;
Chuck Lever43e95982014-07-29 17:23:34 -0400427 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
428 __func__, xprt->max_payload);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400429
430 if (!try_module_get(THIS_MODULE))
431 goto out4;
432
Chuck Lever5231eb92015-08-03 13:02:41 -0400433 dprintk("RPC: %s: %s:%s\n", __func__,
434 xprt->address_strings[RPC_DISPLAY_ADDR],
435 xprt->address_strings[RPC_DISPLAY_PORT]);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400436 return xprt;
437
438out4:
Chuck Lever03ac1a72017-12-14 20:56:01 -0500439 rpcrdma_buffer_destroy(&new_xprt->rx_buf);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400440 xprt_rdma_free_addresses(xprt);
Chuck Lever03ac1a72017-12-14 20:56:01 -0500441 rc = -ENODEV;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400442out3:
Chuck Lever7f1d5412014-05-28 10:33:16 -0400443 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400444out2:
445 rpcrdma_ia_close(&new_xprt->rx_ia);
446out1:
Pavel Emelyanove204e622010-09-29 16:03:13 +0400447 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400448 return ERR_PTR(rc);
449}
450
Chuck Leverbebd0312017-04-11 13:23:10 -0400451/**
452 * xprt_rdma_close - Close down RDMA connection
453 * @xprt: generic transport to be closed
454 *
455 * Called during transport shutdown reconnect, or device
456 * removal. Caller holds the transport's write lock.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400457 */
458static void
459xprt_rdma_close(struct rpc_xprt *xprt)
460{
461 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400462 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
463 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400464
Chuck Leverbebd0312017-04-11 13:23:10 -0400465 dprintk("RPC: %s: closing xprt %p\n", __func__, xprt);
466
467 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
468 xprt_clear_connected(xprt);
469 rpcrdma_ia_remove(ia);
470 return;
471 }
472 if (ep->rep_connected == -ENODEV)
473 return;
474 if (ep->rep_connected > 0)
Tom Talpey08ca0dc2008-10-10 11:32:34 -0400475 xprt->reestablish_timeout = 0;
Trond Myklebust62da3b22007-11-06 18:44:20 -0500476 xprt_disconnect_done(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400477 rpcrdma_ep_disconnect(ep, ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400478}
479
480static void
481xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
482{
483 struct sockaddr_in *sap;
484
485 sap = (struct sockaddr_in *)&xprt->addr;
486 sap->sin_port = htons(port);
487 sap = (struct sockaddr_in *)&rpcx_to_rdmad(xprt).addr;
488 sap->sin_port = htons(port);
489 dprintk("RPC: %s: %u\n", __func__, port);
490}
491
Chuck Lever33849792017-04-11 13:22:46 -0400492/**
493 * xprt_rdma_timer - invoked when an RPC times out
494 * @xprt: controlling RPC transport
495 * @task: RPC task that timed out
496 *
497 * Invoked when the transport is still connected, but an RPC
498 * retransmit timeout occurs.
499 *
500 * Since RDMA connections don't have a keep-alive, forcibly
501 * disconnect and retry to connect. This drives full
502 * detection of the network path, and retransmissions of
503 * all pending RPCs.
504 */
505static void
506xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
507{
508 dprintk("RPC: %5u %s: xprt = %p\n", task->tk_pid, __func__, xprt);
509
510 xprt_force_disconnect(xprt);
511}
512
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400513static void
Trond Myklebust1b092092013-01-08 09:26:49 -0500514xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400515{
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400516 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
517
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400518 if (r_xprt->rx_ep.rep_connected != 0) {
519 /* Reconnect */
Chuck Lever5abefb82015-01-21 11:02:37 -0500520 schedule_delayed_work(&r_xprt->rx_connect_worker,
521 xprt->reestablish_timeout);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400522 xprt->reestablish_timeout <<= 1;
Chuck Leverbfaee092014-05-28 10:34:32 -0400523 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
524 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
525 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
526 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400527 } else {
Chuck Lever5abefb82015-01-21 11:02:37 -0500528 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400529 if (!RPC_IS_ASYNC(task))
Chuck Lever5abefb82015-01-21 11:02:37 -0500530 flush_delayed_work(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400531 }
532}
533
Chuck Lever9c40c492016-09-15 10:55:53 -0400534/* Allocate a fixed-size buffer in which to construct and send the
535 * RPC-over-RDMA header for this request.
536 */
537static bool
538rpcrdma_get_rdmabuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
539 gfp_t flags)
540{
Chuck Lever08cf2ef2016-09-15 10:56:02 -0400541 size_t size = RPCRDMA_HDRBUF_SIZE;
Chuck Lever9c40c492016-09-15 10:55:53 -0400542 struct rpcrdma_regbuf *rb;
543
544 if (req->rl_rdmabuf)
545 return true;
546
Chuck Lever13650c22016-09-15 10:56:26 -0400547 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400548 if (IS_ERR(rb))
549 return false;
550
551 r_xprt->rx_stats.hardway_register_count += size;
552 req->rl_rdmabuf = rb;
Chuck Lever7a80f3f2017-08-10 12:47:28 -0400553 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
Chuck Lever9c40c492016-09-15 10:55:53 -0400554 return true;
555}
556
Chuck Lever9c40c492016-09-15 10:55:53 -0400557static bool
558rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
559 size_t size, gfp_t flags)
560{
561 struct rpcrdma_regbuf *rb;
Chuck Lever9c40c492016-09-15 10:55:53 -0400562
563 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
564 return true;
565
Chuck Lever655fec62016-09-15 10:57:24 -0400566 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400567 if (IS_ERR(rb))
568 return false;
569
Chuck Lever13650c22016-09-15 10:56:26 -0400570 rpcrdma_free_regbuf(req->rl_sendbuf);
Chuck Lever655fec62016-09-15 10:57:24 -0400571 r_xprt->rx_stats.hardway_register_count += size;
Chuck Lever9c40c492016-09-15 10:55:53 -0400572 req->rl_sendbuf = rb;
573 return true;
574}
575
576/* The rq_rcv_buf is used only if a Reply chunk is necessary.
577 * The decision to use a Reply chunk is made later in
578 * rpcrdma_marshal_req. This buffer is registered at that time.
579 *
580 * Otherwise, the associated RPC Reply arrives in a separate
581 * Receive buffer, arbitrarily chosen by the HCA. The buffer
582 * allocated here for the RPC Reply is not utilized in that
583 * case. See rpcrdma_inline_fixup.
584 *
585 * A regbuf is used here to remember the buffer size.
586 */
587static bool
588rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
589 size_t size, gfp_t flags)
590{
591 struct rpcrdma_regbuf *rb;
592
593 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
594 return true;
595
Chuck Lever13650c22016-09-15 10:56:26 -0400596 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400597 if (IS_ERR(rb))
598 return false;
599
Chuck Lever13650c22016-09-15 10:56:26 -0400600 rpcrdma_free_regbuf(req->rl_recvbuf);
Chuck Lever9c40c492016-09-15 10:55:53 -0400601 r_xprt->rx_stats.hardway_register_count += size;
602 req->rl_recvbuf = rb;
603 return true;
604}
605
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400606/**
607 * xprt_rdma_allocate - allocate transport resources for an RPC
608 * @task: RPC task
609 *
610 * Return values:
611 * 0: Success; rq_buffer points to RPC buffer to use
612 * ENOMEM: Out of memory, call again later
613 * EIO: A permanent error occurred, do not retry
614 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400615 * The RDMA allocate/free functions need the task structure as a place
Chuck Lever9c40c492016-09-15 10:55:53 -0400616 * to hide the struct rpcrdma_req, which is necessary for the actual
617 * send/recv sequence.
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500618 *
Chuck Lever9c40c492016-09-15 10:55:53 -0400619 * xprt_rdma_allocate provides buffers that are already mapped for
620 * DMA, and a local DMA lkey is provided for each.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400621 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400622static int
623xprt_rdma_allocate(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400624{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400625 struct rpc_rqst *rqst = task->tk_rqstp;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400626 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500627 struct rpcrdma_req *req;
Chuck Levera0a1d502015-01-26 17:11:47 -0500628 gfp_t flags;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400629
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500630 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
Chuck Leverc977dea2014-05-28 10:35:06 -0400631 if (req == NULL)
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400632 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400633
Chuck Lever5d252f92016-01-07 14:50:10 -0500634 flags = RPCRDMA_DEF_GFP;
Chuck Levera0a1d502015-01-26 17:11:47 -0500635 if (RPC_IS_SWAPPER(task))
636 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
637
Chuck Lever9c40c492016-09-15 10:55:53 -0400638 if (!rpcrdma_get_rdmabuf(r_xprt, req, flags))
639 goto out_fail;
640 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
641 goto out_fail;
642 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
643 goto out_fail;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400644
Chuck Lever9c40c492016-09-15 10:55:53 -0400645 dprintk("RPC: %5u %s: send size = %zd, recv size = %zd, req = %p\n",
646 task->tk_pid, __func__, rqst->rq_callsize,
647 rqst->rq_rcvsize, req);
648
Chuck Leverccede752017-12-04 14:04:04 -0500649 req->rl_cpu = smp_processor_id();
Tom Talpey575448b2008-10-09 15:00:40 -0400650 req->rl_connect_cookie = 0; /* our reserved value */
Chuck Lever5a6d1db2016-09-15 10:55:45 -0400651 rpcrdma_set_xprtdata(rqst, req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400652 rqst->rq_buffer = req->rl_sendbuf->rg_base;
Chuck Lever9c40c492016-09-15 10:55:53 -0400653 rqst->rq_rbuffer = req->rl_recvbuf->rg_base;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400654 return 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400655
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500656out_fail:
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400657 rpcrdma_buffer_put(req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400658 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400659}
660
Chuck Lever3435c742016-09-15 10:55:29 -0400661/**
662 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
663 * @task: RPC task
664 *
665 * Caller guarantees rqst->rq_buffer is non-NULL.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400666 */
667static void
Chuck Lever3435c742016-09-15 10:55:29 -0400668xprt_rdma_free(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400669{
Chuck Lever3435c742016-09-15 10:55:29 -0400670 struct rpc_rqst *rqst = task->tk_rqstp;
671 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
672 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400673
Chuck Lever531cca02017-10-20 10:48:20 -0400674 if (test_bit(RPCRDMA_REQ_F_BACKCHANNEL, &req->rl_flags))
Chuck Leverffc4d9b2015-12-16 17:22:14 -0500675 return;
676
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500677 dprintk("RPC: %s: called on 0x%p\n", __func__, req->rl_reply);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400678
Chuck Lever0ba6f372017-10-20 10:48:28 -0400679 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
680 rpcrdma_release_rqst(r_xprt, req);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400681 rpcrdma_buffer_put(req);
682}
683
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400684/**
685 * xprt_rdma_send_request - marshal and send an RPC request
686 * @task: RPC task with an RPC message in rq_snd_buf
687 *
Chuck Leverbebd0312017-04-11 13:23:10 -0400688 * Caller holds the transport's write lock.
689 *
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400690 * Return values:
691 * 0: The request has been sent
692 * ENOTCONN: Caller needs to invoke connect logic then call again
693 * ENOBUFS: Call again later to send the request
694 * EIO: A permanent error occurred. The request was not sent,
695 * and don't try it again
696 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400697 * send_request invokes the meat of RPC RDMA. It must do the following:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400698 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400699 * 1. Marshal the RPC request into an RPC RDMA request, which means
700 * putting a header in front of data, and creating IOVs for RDMA
701 * from those in the request.
702 * 2. In marshaling, detect opportunities for RDMA, and use them.
703 * 3. Post a recv message to set up asynch completion, then send
704 * the request (rpcrdma_ep_post).
705 * 4. No partial sends are possible in the RPC-RDMA protocol (as in UDP).
706 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400707static int
708xprt_rdma_send_request(struct rpc_task *task)
709{
710 struct rpc_rqst *rqst = task->tk_rqstp;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500711 struct rpc_xprt *xprt = rqst->rq_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400712 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
713 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Lever6ab59942014-07-29 17:23:43 -0400714 int rc = 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400715
Chuck Leverbebd0312017-04-11 13:23:10 -0400716 if (!xprt_connected(xprt))
717 goto drop_connection;
718
Chuck Lever9d6b0402016-06-29 13:54:16 -0400719 /* On retransmit, remove any previously registered chunks */
Chuck Lever48016dc2016-11-29 10:52:48 -0500720 if (unlikely(!list_empty(&req->rl_registered)))
Chuck Lever4ce6c042017-10-09 12:03:34 -0400721 r_xprt->rx_ia.ri_ops->ro_unmap_sync(r_xprt,
722 &req->rl_registered);
Chuck Lever9d6b0402016-06-29 13:54:16 -0400723
Chuck Lever09e60642017-08-10 12:47:12 -0400724 rc = rpcrdma_marshal_req(r_xprt, rqst);
Chuck Lever6ab59942014-07-29 17:23:43 -0400725 if (rc < 0)
726 goto failed_marshal;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400727
728 if (req->rl_reply == NULL) /* e.g. reconnection */
729 rpcrdma_recv_buffer_get(req);
730
Tom Talpey575448b2008-10-09 15:00:40 -0400731 /* Must suppress retransmit to maintain credits */
732 if (req->rl_connect_cookie == xprt->connect_cookie)
733 goto drop_connection;
734 req->rl_connect_cookie = xprt->connect_cookie;
735
Chuck Lever42b9f5c2017-12-14 20:56:18 -0500736 __set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
Tom Talpey575448b2008-10-09 15:00:40 -0400737 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
738 goto drop_connection;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400739
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400740 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400741 rqst->rq_bytes_sent = 0;
742 return 0;
Tom Talpey575448b2008-10-09 15:00:40 -0400743
Chuck Leverc93c6222014-05-28 10:35:14 -0400744failed_marshal:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400745 if (rc != -ENOTCONN)
746 return rc;
Tom Talpey575448b2008-10-09 15:00:40 -0400747drop_connection:
748 xprt_disconnect_done(xprt);
749 return -ENOTCONN; /* implies disconnect */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400750}
751
Chuck Lever5d252f92016-01-07 14:50:10 -0500752void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400753{
754 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
755 long idle_time = 0;
756
757 if (xprt_connected(xprt))
758 idle_time = (long)(jiffies - xprt->last_used) / HZ;
759
Chuck Lever763f7e42015-08-03 13:04:36 -0400760 seq_puts(seq, "\txprt:\trdma ");
761 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
762 0, /* need a local port? */
763 xprt->stat.bind_count,
764 xprt->stat.connect_count,
765 xprt->stat.connect_time,
766 idle_time,
767 xprt->stat.sends,
768 xprt->stat.recvs,
769 xprt->stat.bad_xids,
770 xprt->stat.req_u,
771 xprt->stat.bklog_u);
Chuck Lever505bbe62016-06-29 13:52:54 -0400772 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
Chuck Lever763f7e42015-08-03 13:04:36 -0400773 r_xprt->rx_stats.read_chunk_count,
774 r_xprt->rx_stats.write_chunk_count,
775 r_xprt->rx_stats.reply_chunk_count,
776 r_xprt->rx_stats.total_rdma_request,
777 r_xprt->rx_stats.total_rdma_reply,
778 r_xprt->rx_stats.pullup_copy_count,
779 r_xprt->rx_stats.fixup_copy_count,
780 r_xprt->rx_stats.hardway_register_count,
781 r_xprt->rx_stats.failed_marshal_count,
Chuck Lever860477d2015-08-03 13:04:45 -0400782 r_xprt->rx_stats.bad_reply_count,
783 r_xprt->rx_stats.nomsg_call_count);
Chuck Lever01bb35c2017-10-20 10:48:36 -0400784 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
Chuck Lever505bbe62016-06-29 13:52:54 -0400785 r_xprt->rx_stats.mrs_recovered,
Chuck Levere2ac2362016-06-29 13:54:00 -0400786 r_xprt->rx_stats.mrs_orphaned,
Chuck Leverc8b920b2016-09-15 10:57:16 -0400787 r_xprt->rx_stats.mrs_allocated,
Chuck Leverae729502017-10-20 10:48:12 -0400788 r_xprt->rx_stats.local_inv_needed,
Chuck Lever01bb35c2017-10-20 10:48:36 -0400789 r_xprt->rx_stats.empty_sendctx_q,
790 r_xprt->rx_stats.reply_waits_for_send);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400791}
792
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400793static int
794xprt_rdma_enable_swap(struct rpc_xprt *xprt)
795{
Chuck Levera0451782015-10-24 17:26:29 -0400796 return 0;
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400797}
798
799static void
800xprt_rdma_disable_swap(struct rpc_xprt *xprt)
801{
802}
803
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400804/*
805 * Plumbing for rpc transport switch and kernel module
806 */
807
Chuck Leverd31ae252017-08-01 12:00:39 -0400808static const struct rpc_xprt_ops xprt_rdma_procs = {
Chuck Levere7ce7102014-05-28 10:34:57 -0400809 .reserve_xprt = xprt_reserve_xprt_cong,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400810 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
Trond Myklebustf39c1bf2012-09-07 11:08:50 -0400811 .alloc_slot = xprt_alloc_slot,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400812 .release_request = xprt_release_rqst_cong, /* ditto */
813 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
Chuck Lever33849792017-04-11 13:22:46 -0400814 .timer = xprt_rdma_timer,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400815 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
816 .set_port = xprt_rdma_set_port,
817 .connect = xprt_rdma_connect,
818 .buf_alloc = xprt_rdma_allocate,
819 .buf_free = xprt_rdma_free,
820 .send_request = xprt_rdma_send_request,
821 .close = xprt_rdma_close,
822 .destroy = xprt_rdma_destroy,
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400823 .print_stats = xprt_rdma_print_stats,
824 .enable_swap = xprt_rdma_enable_swap,
825 .disable_swap = xprt_rdma_disable_swap,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400826 .inject_disconnect = xprt_rdma_inject_disconnect,
827#if defined(CONFIG_SUNRPC_BACKCHANNEL)
828 .bc_setup = xprt_rdma_bc_setup,
Chuck Lever76566772015-10-24 17:28:32 -0400829 .bc_up = xprt_rdma_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -0400830 .bc_maxpayload = xprt_rdma_bc_maxpayload,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400831 .bc_free_rqst = xprt_rdma_bc_free_rqst,
832 .bc_destroy = xprt_rdma_bc_destroy,
833#endif
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400834};
835
836static struct xprt_class xprt_rdma = {
837 .list = LIST_HEAD_INIT(xprt_rdma.list),
838 .name = "rdma",
839 .owner = THIS_MODULE,
840 .ident = XPRT_TRANSPORT_RDMA,
841 .setup = xprt_setup_rdma,
842};
843
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400844void xprt_rdma_cleanup(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400845{
846 int rc;
847
Chuck Lever3a0799a2014-03-12 12:51:39 -0400848 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
Jeff Laytonf895b252014-11-17 16:58:04 -0500849#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400850 if (sunrpc_table_header) {
851 unregister_sysctl_table(sunrpc_table_header);
852 sunrpc_table_header = NULL;
853 }
854#endif
855 rc = xprt_unregister_transport(&xprt_rdma);
856 if (rc)
857 dprintk("RPC: %s: xprt_unregister returned %i\n",
858 __func__, rc);
Chuck Lever951e7212015-05-26 11:52:25 -0400859
Chuck Leverfe97b472015-10-24 17:27:10 -0400860 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500861
862 rc = xprt_unregister_transport(&xprt_rdma_bc);
863 if (rc)
864 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
865 __func__, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400866}
867
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400868int xprt_rdma_init(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400869{
870 int rc;
871
Chuck Lever505bbe62016-06-29 13:52:54 -0400872 rc = rpcrdma_alloc_wq();
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400873 if (rc)
874 return rc;
875
Chuck Lever951e7212015-05-26 11:52:25 -0400876 rc = xprt_register_transport(&xprt_rdma);
877 if (rc) {
Chuck Leverfe97b472015-10-24 17:27:10 -0400878 rpcrdma_destroy_wq();
Chuck Lever951e7212015-05-26 11:52:25 -0400879 return rc;
880 }
881
Chuck Lever5d252f92016-01-07 14:50:10 -0500882 rc = xprt_register_transport(&xprt_rdma_bc);
883 if (rc) {
884 xprt_unregister_transport(&xprt_rdma);
885 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500886 return rc;
887 }
888
Chuck Lever3a0799a2014-03-12 12:51:39 -0400889 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400890
Chuck Lever3a0799a2014-03-12 12:51:39 -0400891 dprintk("Defaults:\n");
892 dprintk("\tSlots %d\n"
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400893 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
894 xprt_rdma_slot_table_entries,
895 xprt_rdma_max_inline_read, xprt_rdma_max_inline_write);
Chuck Lever10492702017-12-14 20:56:42 -0500896 dprintk("\tPadding 0\n\tMemreg %d\n", xprt_rdma_memreg_strategy);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400897
Jeff Laytonf895b252014-11-17 16:58:04 -0500898#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400899 if (!sunrpc_table_header)
900 sunrpc_table_header = register_sysctl_table(sunrpc_table);
901#endif
902 return 0;
903}