blob: f6d171e15d7db18a33f8c8e8066ee00c828026d8 [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);
Chuck Leverd461f1f2017-12-14 20:56:50 -0500376 xprt_rdma_format_addresses(xprt, sap);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400377
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400378 cdata.max_requests = xprt->max_reqs;
379
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400380 cdata.rsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA write max */
381 cdata.wsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA read max */
382
383 cdata.inline_wsize = xprt_rdma_max_inline_write;
384 if (cdata.inline_wsize > cdata.wsize)
385 cdata.inline_wsize = cdata.wsize;
386
387 cdata.inline_rsize = xprt_rdma_max_inline_read;
388 if (cdata.inline_rsize > cdata.rsize)
389 cdata.inline_rsize = cdata.rsize;
390
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400391 /*
392 * Create new transport instance, which includes initialized
393 * o ia
394 * o endpoint
395 * o buffers
396 */
397
398 new_xprt = rpcx_to_rdmax(xprt);
399
Chuck Leverfff09592017-04-11 13:22:54 -0400400 rc = rpcrdma_ia_open(new_xprt, sap);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400401 if (rc)
402 goto out1;
403
404 /*
405 * initialize and create ep
406 */
407 new_xprt->rx_data = cdata;
408 new_ep = &new_xprt->rx_ep;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400409
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 Lever1c9351e2015-03-30 14:34:30 -0400422 xprt->max_payload = new_xprt->rx_ia.ri_ops->ro_maxpages(new_xprt);
423 if (xprt->max_payload == 0)
424 goto out4;
425 xprt->max_payload <<= PAGE_SHIFT;
Chuck Lever43e95982014-07-29 17:23:34 -0400426 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
427 __func__, xprt->max_payload);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400428
429 if (!try_module_get(THIS_MODULE))
430 goto out4;
431
Chuck Lever5231eb92015-08-03 13:02:41 -0400432 dprintk("RPC: %s: %s:%s\n", __func__,
433 xprt->address_strings[RPC_DISPLAY_ADDR],
434 xprt->address_strings[RPC_DISPLAY_PORT]);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400435 return xprt;
436
437out4:
Chuck Lever03ac1a72017-12-14 20:56:01 -0500438 rpcrdma_buffer_destroy(&new_xprt->rx_buf);
Chuck Lever03ac1a72017-12-14 20:56:01 -0500439 rc = -ENODEV;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400440out3:
Chuck Lever7f1d5412014-05-28 10:33:16 -0400441 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400442out2:
443 rpcrdma_ia_close(&new_xprt->rx_ia);
444out1:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500445 xprt_rdma_free_addresses(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +0400446 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400447 return ERR_PTR(rc);
448}
449
Chuck Leverbebd0312017-04-11 13:23:10 -0400450/**
451 * xprt_rdma_close - Close down RDMA connection
452 * @xprt: generic transport to be closed
453 *
454 * Called during transport shutdown reconnect, or device
455 * removal. Caller holds the transport's write lock.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400456 */
457static void
458xprt_rdma_close(struct rpc_xprt *xprt)
459{
460 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400461 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
462 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400463
Chuck Leverbebd0312017-04-11 13:23:10 -0400464 dprintk("RPC: %s: closing xprt %p\n", __func__, xprt);
465
466 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
467 xprt_clear_connected(xprt);
468 rpcrdma_ia_remove(ia);
469 return;
470 }
471 if (ep->rep_connected == -ENODEV)
472 return;
473 if (ep->rep_connected > 0)
Tom Talpey08ca0dc2008-10-10 11:32:34 -0400474 xprt->reestablish_timeout = 0;
Trond Myklebust62da3b22007-11-06 18:44:20 -0500475 xprt_disconnect_done(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400476 rpcrdma_ep_disconnect(ep, ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400477}
478
479static void
480xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
481{
482 struct sockaddr_in *sap;
483
484 sap = (struct sockaddr_in *)&xprt->addr;
485 sap->sin_port = htons(port);
486 sap = (struct sockaddr_in *)&rpcx_to_rdmad(xprt).addr;
487 sap->sin_port = htons(port);
488 dprintk("RPC: %s: %u\n", __func__, port);
489}
490
Chuck Lever33849792017-04-11 13:22:46 -0400491/**
492 * xprt_rdma_timer - invoked when an RPC times out
493 * @xprt: controlling RPC transport
494 * @task: RPC task that timed out
495 *
496 * Invoked when the transport is still connected, but an RPC
497 * retransmit timeout occurs.
498 *
499 * Since RDMA connections don't have a keep-alive, forcibly
500 * disconnect and retry to connect. This drives full
501 * detection of the network path, and retransmissions of
502 * all pending RPCs.
503 */
504static void
505xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
506{
507 dprintk("RPC: %5u %s: xprt = %p\n", task->tk_pid, __func__, xprt);
508
509 xprt_force_disconnect(xprt);
510}
511
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400512static void
Trond Myklebust1b092092013-01-08 09:26:49 -0500513xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400514{
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400515 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
516
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400517 if (r_xprt->rx_ep.rep_connected != 0) {
518 /* Reconnect */
Chuck Lever5abefb82015-01-21 11:02:37 -0500519 schedule_delayed_work(&r_xprt->rx_connect_worker,
520 xprt->reestablish_timeout);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400521 xprt->reestablish_timeout <<= 1;
Chuck Leverbfaee092014-05-28 10:34:32 -0400522 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
523 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
524 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
525 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400526 } else {
Chuck Lever5abefb82015-01-21 11:02:37 -0500527 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400528 if (!RPC_IS_ASYNC(task))
Chuck Lever5abefb82015-01-21 11:02:37 -0500529 flush_delayed_work(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400530 }
531}
532
Chuck Lever9c40c492016-09-15 10:55:53 -0400533/* Allocate a fixed-size buffer in which to construct and send the
534 * RPC-over-RDMA header for this request.
535 */
536static bool
537rpcrdma_get_rdmabuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
538 gfp_t flags)
539{
Chuck Lever08cf2ef2016-09-15 10:56:02 -0400540 size_t size = RPCRDMA_HDRBUF_SIZE;
Chuck Lever9c40c492016-09-15 10:55:53 -0400541 struct rpcrdma_regbuf *rb;
542
543 if (req->rl_rdmabuf)
544 return true;
545
Chuck Lever13650c22016-09-15 10:56:26 -0400546 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400547 if (IS_ERR(rb))
548 return false;
549
550 r_xprt->rx_stats.hardway_register_count += size;
551 req->rl_rdmabuf = rb;
Chuck Lever7a80f3f2017-08-10 12:47:28 -0400552 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
Chuck Lever9c40c492016-09-15 10:55:53 -0400553 return true;
554}
555
Chuck Lever9c40c492016-09-15 10:55:53 -0400556static bool
557rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
558 size_t size, gfp_t flags)
559{
560 struct rpcrdma_regbuf *rb;
Chuck Lever9c40c492016-09-15 10:55:53 -0400561
562 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
563 return true;
564
Chuck Lever655fec62016-09-15 10:57:24 -0400565 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400566 if (IS_ERR(rb))
567 return false;
568
Chuck Lever13650c22016-09-15 10:56:26 -0400569 rpcrdma_free_regbuf(req->rl_sendbuf);
Chuck Lever655fec62016-09-15 10:57:24 -0400570 r_xprt->rx_stats.hardway_register_count += size;
Chuck Lever9c40c492016-09-15 10:55:53 -0400571 req->rl_sendbuf = rb;
572 return true;
573}
574
575/* The rq_rcv_buf is used only if a Reply chunk is necessary.
576 * The decision to use a Reply chunk is made later in
577 * rpcrdma_marshal_req. This buffer is registered at that time.
578 *
579 * Otherwise, the associated RPC Reply arrives in a separate
580 * Receive buffer, arbitrarily chosen by the HCA. The buffer
581 * allocated here for the RPC Reply is not utilized in that
582 * case. See rpcrdma_inline_fixup.
583 *
584 * A regbuf is used here to remember the buffer size.
585 */
586static bool
587rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
588 size_t size, gfp_t flags)
589{
590 struct rpcrdma_regbuf *rb;
591
592 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
593 return true;
594
Chuck Lever13650c22016-09-15 10:56:26 -0400595 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400596 if (IS_ERR(rb))
597 return false;
598
Chuck Lever13650c22016-09-15 10:56:26 -0400599 rpcrdma_free_regbuf(req->rl_recvbuf);
Chuck Lever9c40c492016-09-15 10:55:53 -0400600 r_xprt->rx_stats.hardway_register_count += size;
601 req->rl_recvbuf = rb;
602 return true;
603}
604
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400605/**
606 * xprt_rdma_allocate - allocate transport resources for an RPC
607 * @task: RPC task
608 *
609 * Return values:
610 * 0: Success; rq_buffer points to RPC buffer to use
611 * ENOMEM: Out of memory, call again later
612 * EIO: A permanent error occurred, do not retry
613 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400614 * The RDMA allocate/free functions need the task structure as a place
Chuck Lever9c40c492016-09-15 10:55:53 -0400615 * to hide the struct rpcrdma_req, which is necessary for the actual
616 * send/recv sequence.
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500617 *
Chuck Lever9c40c492016-09-15 10:55:53 -0400618 * xprt_rdma_allocate provides buffers that are already mapped for
619 * DMA, and a local DMA lkey is provided for each.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400620 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400621static int
622xprt_rdma_allocate(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400623{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400624 struct rpc_rqst *rqst = task->tk_rqstp;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400625 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500626 struct rpcrdma_req *req;
Chuck Levera0a1d502015-01-26 17:11:47 -0500627 gfp_t flags;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400628
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500629 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
Chuck Leverc977dea2014-05-28 10:35:06 -0400630 if (req == NULL)
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400631 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400632
Chuck Lever5d252f92016-01-07 14:50:10 -0500633 flags = RPCRDMA_DEF_GFP;
Chuck Levera0a1d502015-01-26 17:11:47 -0500634 if (RPC_IS_SWAPPER(task))
635 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
636
Chuck Lever9c40c492016-09-15 10:55:53 -0400637 if (!rpcrdma_get_rdmabuf(r_xprt, req, flags))
638 goto out_fail;
639 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
640 goto out_fail;
641 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
642 goto out_fail;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400643
Chuck Lever9c40c492016-09-15 10:55:53 -0400644 dprintk("RPC: %5u %s: send size = %zd, recv size = %zd, req = %p\n",
645 task->tk_pid, __func__, rqst->rq_callsize,
646 rqst->rq_rcvsize, req);
647
Chuck Leverccede752017-12-04 14:04:04 -0500648 req->rl_cpu = smp_processor_id();
Tom Talpey575448b2008-10-09 15:00:40 -0400649 req->rl_connect_cookie = 0; /* our reserved value */
Chuck Lever5a6d1db2016-09-15 10:55:45 -0400650 rpcrdma_set_xprtdata(rqst, req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400651 rqst->rq_buffer = req->rl_sendbuf->rg_base;
Chuck Lever9c40c492016-09-15 10:55:53 -0400652 rqst->rq_rbuffer = req->rl_recvbuf->rg_base;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400653 return 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400654
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500655out_fail:
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400656 rpcrdma_buffer_put(req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400657 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400658}
659
Chuck Lever3435c742016-09-15 10:55:29 -0400660/**
661 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
662 * @task: RPC task
663 *
664 * Caller guarantees rqst->rq_buffer is non-NULL.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400665 */
666static void
Chuck Lever3435c742016-09-15 10:55:29 -0400667xprt_rdma_free(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400668{
Chuck Lever3435c742016-09-15 10:55:29 -0400669 struct rpc_rqst *rqst = task->tk_rqstp;
670 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
671 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400672
Chuck Lever531cca02017-10-20 10:48:20 -0400673 if (test_bit(RPCRDMA_REQ_F_BACKCHANNEL, &req->rl_flags))
Chuck Leverffc4d9b2015-12-16 17:22:14 -0500674 return;
675
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500676 dprintk("RPC: %s: called on 0x%p\n", __func__, req->rl_reply);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400677
Chuck Lever0ba6f372017-10-20 10:48:28 -0400678 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
679 rpcrdma_release_rqst(r_xprt, req);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400680 rpcrdma_buffer_put(req);
681}
682
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400683/**
684 * xprt_rdma_send_request - marshal and send an RPC request
685 * @task: RPC task with an RPC message in rq_snd_buf
686 *
Chuck Leverbebd0312017-04-11 13:23:10 -0400687 * Caller holds the transport's write lock.
688 *
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400689 * Return values:
690 * 0: The request has been sent
691 * ENOTCONN: Caller needs to invoke connect logic then call again
692 * ENOBUFS: Call again later to send the request
693 * EIO: A permanent error occurred. The request was not sent,
694 * and don't try it again
695 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400696 * send_request invokes the meat of RPC RDMA. It must do the following:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400697 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400698 * 1. Marshal the RPC request into an RPC RDMA request, which means
699 * putting a header in front of data, and creating IOVs for RDMA
700 * from those in the request.
701 * 2. In marshaling, detect opportunities for RDMA, and use them.
702 * 3. Post a recv message to set up asynch completion, then send
703 * the request (rpcrdma_ep_post).
704 * 4. No partial sends are possible in the RPC-RDMA protocol (as in UDP).
705 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400706static int
707xprt_rdma_send_request(struct rpc_task *task)
708{
709 struct rpc_rqst *rqst = task->tk_rqstp;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500710 struct rpc_xprt *xprt = rqst->rq_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400711 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
712 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Lever6ab59942014-07-29 17:23:43 -0400713 int rc = 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400714
Chuck Leverbebd0312017-04-11 13:23:10 -0400715 if (!xprt_connected(xprt))
716 goto drop_connection;
717
Chuck Lever9d6b0402016-06-29 13:54:16 -0400718 /* On retransmit, remove any previously registered chunks */
Chuck Lever48016dc2016-11-29 10:52:48 -0500719 if (unlikely(!list_empty(&req->rl_registered)))
Chuck Lever4ce6c042017-10-09 12:03:34 -0400720 r_xprt->rx_ia.ri_ops->ro_unmap_sync(r_xprt,
721 &req->rl_registered);
Chuck Lever9d6b0402016-06-29 13:54:16 -0400722
Chuck Lever09e60642017-08-10 12:47:12 -0400723 rc = rpcrdma_marshal_req(r_xprt, rqst);
Chuck Lever6ab59942014-07-29 17:23:43 -0400724 if (rc < 0)
725 goto failed_marshal;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400726
727 if (req->rl_reply == NULL) /* e.g. reconnection */
728 rpcrdma_recv_buffer_get(req);
729
Tom Talpey575448b2008-10-09 15:00:40 -0400730 /* Must suppress retransmit to maintain credits */
731 if (req->rl_connect_cookie == xprt->connect_cookie)
732 goto drop_connection;
733 req->rl_connect_cookie = xprt->connect_cookie;
734
Chuck Lever42b9f5c2017-12-14 20:56:18 -0500735 __set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
Tom Talpey575448b2008-10-09 15:00:40 -0400736 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
737 goto drop_connection;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400738
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400739 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400740 rqst->rq_bytes_sent = 0;
741 return 0;
Tom Talpey575448b2008-10-09 15:00:40 -0400742
Chuck Leverc93c6222014-05-28 10:35:14 -0400743failed_marshal:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400744 if (rc != -ENOTCONN)
745 return rc;
Tom Talpey575448b2008-10-09 15:00:40 -0400746drop_connection:
747 xprt_disconnect_done(xprt);
748 return -ENOTCONN; /* implies disconnect */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400749}
750
Chuck Lever5d252f92016-01-07 14:50:10 -0500751void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400752{
753 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
754 long idle_time = 0;
755
756 if (xprt_connected(xprt))
757 idle_time = (long)(jiffies - xprt->last_used) / HZ;
758
Chuck Lever763f7e42015-08-03 13:04:36 -0400759 seq_puts(seq, "\txprt:\trdma ");
760 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
761 0, /* need a local port? */
762 xprt->stat.bind_count,
763 xprt->stat.connect_count,
764 xprt->stat.connect_time,
765 idle_time,
766 xprt->stat.sends,
767 xprt->stat.recvs,
768 xprt->stat.bad_xids,
769 xprt->stat.req_u,
770 xprt->stat.bklog_u);
Chuck Lever505bbe62016-06-29 13:52:54 -0400771 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
Chuck Lever763f7e42015-08-03 13:04:36 -0400772 r_xprt->rx_stats.read_chunk_count,
773 r_xprt->rx_stats.write_chunk_count,
774 r_xprt->rx_stats.reply_chunk_count,
775 r_xprt->rx_stats.total_rdma_request,
776 r_xprt->rx_stats.total_rdma_reply,
777 r_xprt->rx_stats.pullup_copy_count,
778 r_xprt->rx_stats.fixup_copy_count,
779 r_xprt->rx_stats.hardway_register_count,
780 r_xprt->rx_stats.failed_marshal_count,
Chuck Lever860477d2015-08-03 13:04:45 -0400781 r_xprt->rx_stats.bad_reply_count,
782 r_xprt->rx_stats.nomsg_call_count);
Chuck Lever01bb35c2017-10-20 10:48:36 -0400783 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
Chuck Lever505bbe62016-06-29 13:52:54 -0400784 r_xprt->rx_stats.mrs_recovered,
Chuck Levere2ac2362016-06-29 13:54:00 -0400785 r_xprt->rx_stats.mrs_orphaned,
Chuck Leverc8b920b2016-09-15 10:57:16 -0400786 r_xprt->rx_stats.mrs_allocated,
Chuck Leverae729502017-10-20 10:48:12 -0400787 r_xprt->rx_stats.local_inv_needed,
Chuck Lever01bb35c2017-10-20 10:48:36 -0400788 r_xprt->rx_stats.empty_sendctx_q,
789 r_xprt->rx_stats.reply_waits_for_send);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400790}
791
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400792static int
793xprt_rdma_enable_swap(struct rpc_xprt *xprt)
794{
Chuck Levera0451782015-10-24 17:26:29 -0400795 return 0;
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400796}
797
798static void
799xprt_rdma_disable_swap(struct rpc_xprt *xprt)
800{
801}
802
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400803/*
804 * Plumbing for rpc transport switch and kernel module
805 */
806
Chuck Leverd31ae252017-08-01 12:00:39 -0400807static const struct rpc_xprt_ops xprt_rdma_procs = {
Chuck Levere7ce7102014-05-28 10:34:57 -0400808 .reserve_xprt = xprt_reserve_xprt_cong,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400809 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
Trond Myklebustf39c1bf2012-09-07 11:08:50 -0400810 .alloc_slot = xprt_alloc_slot,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400811 .release_request = xprt_release_rqst_cong, /* ditto */
812 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
Chuck Lever33849792017-04-11 13:22:46 -0400813 .timer = xprt_rdma_timer,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400814 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
815 .set_port = xprt_rdma_set_port,
816 .connect = xprt_rdma_connect,
817 .buf_alloc = xprt_rdma_allocate,
818 .buf_free = xprt_rdma_free,
819 .send_request = xprt_rdma_send_request,
820 .close = xprt_rdma_close,
821 .destroy = xprt_rdma_destroy,
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400822 .print_stats = xprt_rdma_print_stats,
823 .enable_swap = xprt_rdma_enable_swap,
824 .disable_swap = xprt_rdma_disable_swap,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400825 .inject_disconnect = xprt_rdma_inject_disconnect,
826#if defined(CONFIG_SUNRPC_BACKCHANNEL)
827 .bc_setup = xprt_rdma_bc_setup,
Chuck Lever76566772015-10-24 17:28:32 -0400828 .bc_up = xprt_rdma_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -0400829 .bc_maxpayload = xprt_rdma_bc_maxpayload,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400830 .bc_free_rqst = xprt_rdma_bc_free_rqst,
831 .bc_destroy = xprt_rdma_bc_destroy,
832#endif
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400833};
834
835static struct xprt_class xprt_rdma = {
836 .list = LIST_HEAD_INIT(xprt_rdma.list),
837 .name = "rdma",
838 .owner = THIS_MODULE,
839 .ident = XPRT_TRANSPORT_RDMA,
840 .setup = xprt_setup_rdma,
841};
842
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400843void xprt_rdma_cleanup(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400844{
845 int rc;
846
Chuck Lever3a0799a2014-03-12 12:51:39 -0400847 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
Jeff Laytonf895b252014-11-17 16:58:04 -0500848#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400849 if (sunrpc_table_header) {
850 unregister_sysctl_table(sunrpc_table_header);
851 sunrpc_table_header = NULL;
852 }
853#endif
854 rc = xprt_unregister_transport(&xprt_rdma);
855 if (rc)
856 dprintk("RPC: %s: xprt_unregister returned %i\n",
857 __func__, rc);
Chuck Lever951e7212015-05-26 11:52:25 -0400858
Chuck Leverfe97b472015-10-24 17:27:10 -0400859 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500860
861 rc = xprt_unregister_transport(&xprt_rdma_bc);
862 if (rc)
863 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
864 __func__, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400865}
866
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400867int xprt_rdma_init(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400868{
869 int rc;
870
Chuck Lever505bbe62016-06-29 13:52:54 -0400871 rc = rpcrdma_alloc_wq();
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400872 if (rc)
873 return rc;
874
Chuck Lever951e7212015-05-26 11:52:25 -0400875 rc = xprt_register_transport(&xprt_rdma);
876 if (rc) {
Chuck Leverfe97b472015-10-24 17:27:10 -0400877 rpcrdma_destroy_wq();
Chuck Lever951e7212015-05-26 11:52:25 -0400878 return rc;
879 }
880
Chuck Lever5d252f92016-01-07 14:50:10 -0500881 rc = xprt_register_transport(&xprt_rdma_bc);
882 if (rc) {
883 xprt_unregister_transport(&xprt_rdma);
884 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500885 return rc;
886 }
887
Chuck Lever3a0799a2014-03-12 12:51:39 -0400888 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400889
Chuck Lever3a0799a2014-03-12 12:51:39 -0400890 dprintk("Defaults:\n");
891 dprintk("\tSlots %d\n"
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400892 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
893 xprt_rdma_slot_table_entries,
894 xprt_rdma_max_inline_read, xprt_rdma_max_inline_write);
Chuck Lever10492702017-12-14 20:56:42 -0500895 dprintk("\tPadding 0\n\tMemreg %d\n", xprt_rdma_memreg_strategy);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400896
Jeff Laytonf895b252014-11-17 16:58:04 -0500897#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400898 if (!sunrpc_table_header)
899 sunrpc_table_header = register_sysctl_table(sunrpc_table);
900#endif
901 return 0;
902}