blob: be8c4e62d3f2b1f88850aae8476fa7f026dab6b3 [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 */
Chuck Leverdd229ce2017-12-14 20:56:58 -0500364 sap = args->dstaddr;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400365
366 /* Ensure xprt->addr holds valid server TCP (not RDMA)
367 * address, for any side protocols which peek at it */
368 xprt->prot = IPPROTO_TCP;
369 xprt->addrlen = args->addrlen;
Chuck Lever5231eb92015-08-03 13:02:41 -0400370 memcpy(&xprt->addr, sap, xprt->addrlen);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400371
Chuck Lever5231eb92015-08-03 13:02:41 -0400372 if (rpc_get_port(sap))
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400373 xprt_set_bound(xprt);
Chuck Leverd461f1f2017-12-14 20:56:50 -0500374 xprt_rdma_format_addresses(xprt, sap);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400375
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400376 cdata.max_requests = xprt->max_reqs;
377
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400378 cdata.rsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA write max */
379 cdata.wsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA read max */
380
381 cdata.inline_wsize = xprt_rdma_max_inline_write;
382 if (cdata.inline_wsize > cdata.wsize)
383 cdata.inline_wsize = cdata.wsize;
384
385 cdata.inline_rsize = xprt_rdma_max_inline_read;
386 if (cdata.inline_rsize > cdata.rsize)
387 cdata.inline_rsize = cdata.rsize;
388
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400389 /*
390 * Create new transport instance, which includes initialized
391 * o ia
392 * o endpoint
393 * o buffers
394 */
395
396 new_xprt = rpcx_to_rdmax(xprt);
397
Chuck Leverdd229ce2017-12-14 20:56:58 -0500398 rc = rpcrdma_ia_open(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400399 if (rc)
400 goto out1;
401
402 /*
403 * initialize and create ep
404 */
405 new_xprt->rx_data = cdata;
406 new_ep = &new_xprt->rx_ep;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400407
408 rc = rpcrdma_ep_create(&new_xprt->rx_ep,
409 &new_xprt->rx_ia, &new_xprt->rx_data);
410 if (rc)
411 goto out2;
412
Chuck Leverac920d02015-01-21 11:03:44 -0500413 rc = rpcrdma_buffer_create(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400414 if (rc)
415 goto out3;
416
Chuck Lever5abefb82015-01-21 11:02:37 -0500417 INIT_DELAYED_WORK(&new_xprt->rx_connect_worker,
418 xprt_rdma_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400419
Chuck Lever1c9351e2015-03-30 14:34:30 -0400420 xprt->max_payload = new_xprt->rx_ia.ri_ops->ro_maxpages(new_xprt);
421 if (xprt->max_payload == 0)
422 goto out4;
423 xprt->max_payload <<= PAGE_SHIFT;
Chuck Lever43e95982014-07-29 17:23:34 -0400424 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
425 __func__, xprt->max_payload);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400426
427 if (!try_module_get(THIS_MODULE))
428 goto out4;
429
Chuck Lever5231eb92015-08-03 13:02:41 -0400430 dprintk("RPC: %s: %s:%s\n", __func__,
431 xprt->address_strings[RPC_DISPLAY_ADDR],
432 xprt->address_strings[RPC_DISPLAY_PORT]);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400433 return xprt;
434
435out4:
Chuck Lever03ac1a72017-12-14 20:56:01 -0500436 rpcrdma_buffer_destroy(&new_xprt->rx_buf);
Chuck Lever03ac1a72017-12-14 20:56:01 -0500437 rc = -ENODEV;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400438out3:
Chuck Lever7f1d5412014-05-28 10:33:16 -0400439 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400440out2:
441 rpcrdma_ia_close(&new_xprt->rx_ia);
442out1:
Chuck Leverd461f1f2017-12-14 20:56:50 -0500443 xprt_rdma_free_addresses(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +0400444 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400445 return ERR_PTR(rc);
446}
447
Chuck Leverbebd0312017-04-11 13:23:10 -0400448/**
449 * xprt_rdma_close - Close down RDMA connection
450 * @xprt: generic transport to be closed
451 *
452 * Called during transport shutdown reconnect, or device
453 * removal. Caller holds the transport's write lock.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400454 */
455static void
456xprt_rdma_close(struct rpc_xprt *xprt)
457{
458 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400459 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
460 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400461
Chuck Leverbebd0312017-04-11 13:23:10 -0400462 dprintk("RPC: %s: closing xprt %p\n", __func__, xprt);
463
464 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
465 xprt_clear_connected(xprt);
466 rpcrdma_ia_remove(ia);
467 return;
468 }
469 if (ep->rep_connected == -ENODEV)
470 return;
471 if (ep->rep_connected > 0)
Tom Talpey08ca0dc2008-10-10 11:32:34 -0400472 xprt->reestablish_timeout = 0;
Trond Myklebust62da3b22007-11-06 18:44:20 -0500473 xprt_disconnect_done(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400474 rpcrdma_ep_disconnect(ep, ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400475}
476
Chuck Lever20035ed2017-12-14 20:57:06 -0500477/**
478 * xprt_rdma_set_port - update server port with rpcbind result
479 * @xprt: controlling RPC transport
480 * @port: new port value
481 *
482 * Transport connect status is unchanged.
483 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400484static void
485xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
486{
Chuck Lever20035ed2017-12-14 20:57:06 -0500487 struct sockaddr *sap = (struct sockaddr *)&xprt->addr;
488 char buf[8];
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400489
Chuck Lever20035ed2017-12-14 20:57:06 -0500490 dprintk("RPC: %s: setting port for xprt %p (%s:%s) to %u\n",
491 __func__, xprt,
492 xprt->address_strings[RPC_DISPLAY_ADDR],
493 xprt->address_strings[RPC_DISPLAY_PORT],
494 port);
495
496 rpc_set_port(sap, port);
497
498 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
499 snprintf(buf, sizeof(buf), "%u", port);
500 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
501
502 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
503 snprintf(buf, sizeof(buf), "%4hx", port);
504 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400505}
506
Chuck Lever33849792017-04-11 13:22:46 -0400507/**
508 * xprt_rdma_timer - invoked when an RPC times out
509 * @xprt: controlling RPC transport
510 * @task: RPC task that timed out
511 *
512 * Invoked when the transport is still connected, but an RPC
513 * retransmit timeout occurs.
514 *
515 * Since RDMA connections don't have a keep-alive, forcibly
516 * disconnect and retry to connect. This drives full
517 * detection of the network path, and retransmissions of
518 * all pending RPCs.
519 */
520static void
521xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
522{
523 dprintk("RPC: %5u %s: xprt = %p\n", task->tk_pid, __func__, xprt);
524
525 xprt_force_disconnect(xprt);
526}
527
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400528static void
Trond Myklebust1b092092013-01-08 09:26:49 -0500529xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400530{
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400531 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
532
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400533 if (r_xprt->rx_ep.rep_connected != 0) {
534 /* Reconnect */
Chuck Lever5abefb82015-01-21 11:02:37 -0500535 schedule_delayed_work(&r_xprt->rx_connect_worker,
536 xprt->reestablish_timeout);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400537 xprt->reestablish_timeout <<= 1;
Chuck Leverbfaee092014-05-28 10:34:32 -0400538 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
539 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
540 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
541 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400542 } else {
Chuck Lever5abefb82015-01-21 11:02:37 -0500543 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400544 if (!RPC_IS_ASYNC(task))
Chuck Lever5abefb82015-01-21 11:02:37 -0500545 flush_delayed_work(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400546 }
547}
548
Chuck Lever9c40c492016-09-15 10:55:53 -0400549/* Allocate a fixed-size buffer in which to construct and send the
550 * RPC-over-RDMA header for this request.
551 */
552static bool
553rpcrdma_get_rdmabuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
554 gfp_t flags)
555{
Chuck Lever08cf2ef2016-09-15 10:56:02 -0400556 size_t size = RPCRDMA_HDRBUF_SIZE;
Chuck Lever9c40c492016-09-15 10:55:53 -0400557 struct rpcrdma_regbuf *rb;
558
559 if (req->rl_rdmabuf)
560 return true;
561
Chuck Lever13650c22016-09-15 10:56:26 -0400562 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400563 if (IS_ERR(rb))
564 return false;
565
566 r_xprt->rx_stats.hardway_register_count += size;
567 req->rl_rdmabuf = rb;
Chuck Lever7a80f3f2017-08-10 12:47:28 -0400568 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
Chuck Lever9c40c492016-09-15 10:55:53 -0400569 return true;
570}
571
Chuck Lever9c40c492016-09-15 10:55:53 -0400572static bool
573rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
574 size_t size, gfp_t flags)
575{
576 struct rpcrdma_regbuf *rb;
Chuck Lever9c40c492016-09-15 10:55:53 -0400577
578 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
579 return true;
580
Chuck Lever655fec62016-09-15 10:57:24 -0400581 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400582 if (IS_ERR(rb))
583 return false;
584
Chuck Lever13650c22016-09-15 10:56:26 -0400585 rpcrdma_free_regbuf(req->rl_sendbuf);
Chuck Lever655fec62016-09-15 10:57:24 -0400586 r_xprt->rx_stats.hardway_register_count += size;
Chuck Lever9c40c492016-09-15 10:55:53 -0400587 req->rl_sendbuf = rb;
588 return true;
589}
590
591/* The rq_rcv_buf is used only if a Reply chunk is necessary.
592 * The decision to use a Reply chunk is made later in
593 * rpcrdma_marshal_req. This buffer is registered at that time.
594 *
595 * Otherwise, the associated RPC Reply arrives in a separate
596 * Receive buffer, arbitrarily chosen by the HCA. The buffer
597 * allocated here for the RPC Reply is not utilized in that
598 * case. See rpcrdma_inline_fixup.
599 *
600 * A regbuf is used here to remember the buffer size.
601 */
602static bool
603rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
604 size_t size, gfp_t flags)
605{
606 struct rpcrdma_regbuf *rb;
607
608 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
609 return true;
610
Chuck Lever13650c22016-09-15 10:56:26 -0400611 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400612 if (IS_ERR(rb))
613 return false;
614
Chuck Lever13650c22016-09-15 10:56:26 -0400615 rpcrdma_free_regbuf(req->rl_recvbuf);
Chuck Lever9c40c492016-09-15 10:55:53 -0400616 r_xprt->rx_stats.hardway_register_count += size;
617 req->rl_recvbuf = rb;
618 return true;
619}
620
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400621/**
622 * xprt_rdma_allocate - allocate transport resources for an RPC
623 * @task: RPC task
624 *
625 * Return values:
626 * 0: Success; rq_buffer points to RPC buffer to use
627 * ENOMEM: Out of memory, call again later
628 * EIO: A permanent error occurred, do not retry
629 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400630 * The RDMA allocate/free functions need the task structure as a place
Chuck Lever9c40c492016-09-15 10:55:53 -0400631 * to hide the struct rpcrdma_req, which is necessary for the actual
632 * send/recv sequence.
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500633 *
Chuck Lever9c40c492016-09-15 10:55:53 -0400634 * xprt_rdma_allocate provides buffers that are already mapped for
635 * DMA, and a local DMA lkey is provided for each.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400636 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400637static int
638xprt_rdma_allocate(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400639{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400640 struct rpc_rqst *rqst = task->tk_rqstp;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400641 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500642 struct rpcrdma_req *req;
Chuck Levera0a1d502015-01-26 17:11:47 -0500643 gfp_t flags;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400644
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500645 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
Chuck Leverc977dea2014-05-28 10:35:06 -0400646 if (req == NULL)
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400647 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400648
Chuck Lever5d252f92016-01-07 14:50:10 -0500649 flags = RPCRDMA_DEF_GFP;
Chuck Levera0a1d502015-01-26 17:11:47 -0500650 if (RPC_IS_SWAPPER(task))
651 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
652
Chuck Lever9c40c492016-09-15 10:55:53 -0400653 if (!rpcrdma_get_rdmabuf(r_xprt, req, flags))
654 goto out_fail;
655 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
656 goto out_fail;
657 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
658 goto out_fail;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400659
Chuck Lever9c40c492016-09-15 10:55:53 -0400660 dprintk("RPC: %5u %s: send size = %zd, recv size = %zd, req = %p\n",
661 task->tk_pid, __func__, rqst->rq_callsize,
662 rqst->rq_rcvsize, req);
663
Chuck Leverccede752017-12-04 14:04:04 -0500664 req->rl_cpu = smp_processor_id();
Tom Talpey575448b2008-10-09 15:00:40 -0400665 req->rl_connect_cookie = 0; /* our reserved value */
Chuck Lever5a6d1db2016-09-15 10:55:45 -0400666 rpcrdma_set_xprtdata(rqst, req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400667 rqst->rq_buffer = req->rl_sendbuf->rg_base;
Chuck Lever9c40c492016-09-15 10:55:53 -0400668 rqst->rq_rbuffer = req->rl_recvbuf->rg_base;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400669 return 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400670
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500671out_fail:
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400672 rpcrdma_buffer_put(req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400673 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400674}
675
Chuck Lever3435c742016-09-15 10:55:29 -0400676/**
677 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
678 * @task: RPC task
679 *
680 * Caller guarantees rqst->rq_buffer is non-NULL.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400681 */
682static void
Chuck Lever3435c742016-09-15 10:55:29 -0400683xprt_rdma_free(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400684{
Chuck Lever3435c742016-09-15 10:55:29 -0400685 struct rpc_rqst *rqst = task->tk_rqstp;
686 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
687 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400688
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500689 dprintk("RPC: %s: called on 0x%p\n", __func__, req->rl_reply);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400690
Chuck Lever0ba6f372017-10-20 10:48:28 -0400691 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
692 rpcrdma_release_rqst(r_xprt, req);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400693 rpcrdma_buffer_put(req);
694}
695
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400696/**
697 * xprt_rdma_send_request - marshal and send an RPC request
698 * @task: RPC task with an RPC message in rq_snd_buf
699 *
Chuck Leverbebd0312017-04-11 13:23:10 -0400700 * Caller holds the transport's write lock.
701 *
Chuck Levercf73daf2017-12-14 20:57:31 -0500702 * Returns:
703 * %0 if the RPC message has been sent
704 * %-ENOTCONN if the caller should reconnect and call again
705 * %-ENOBUFS if the caller should call again later
706 * %-EIO if a permanent error occurred and the request was not
707 * sent. Do not try to send this message again.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400708 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400709static int
710xprt_rdma_send_request(struct rpc_task *task)
711{
712 struct rpc_rqst *rqst = task->tk_rqstp;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500713 struct rpc_xprt *xprt = rqst->rq_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400714 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
715 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Lever6ab59942014-07-29 17:23:43 -0400716 int rc = 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400717
Chuck Levercf73daf2017-12-14 20:57:31 -0500718#if defined(CONFIG_SUNRPC_BACKCHANNEL)
719 if (unlikely(!rqst->rq_buffer))
720 return xprt_rdma_bc_send_reply(rqst);
721#endif /* CONFIG_SUNRPC_BACKCHANNEL */
722
Chuck Leverbebd0312017-04-11 13:23:10 -0400723 if (!xprt_connected(xprt))
724 goto drop_connection;
725
Chuck Lever09e60642017-08-10 12:47:12 -0400726 rc = rpcrdma_marshal_req(r_xprt, rqst);
Chuck Lever6ab59942014-07-29 17:23:43 -0400727 if (rc < 0)
728 goto failed_marshal;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400729
730 if (req->rl_reply == NULL) /* e.g. reconnection */
731 rpcrdma_recv_buffer_get(req);
732
Tom Talpey575448b2008-10-09 15:00:40 -0400733 /* Must suppress retransmit to maintain credits */
734 if (req->rl_connect_cookie == xprt->connect_cookie)
735 goto drop_connection;
736 req->rl_connect_cookie = xprt->connect_cookie;
737
Chuck Lever42b9f5c2017-12-14 20:56:18 -0500738 __set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
Tom Talpey575448b2008-10-09 15:00:40 -0400739 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
740 goto drop_connection;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400741
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400742 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400743 rqst->rq_bytes_sent = 0;
744 return 0;
Tom Talpey575448b2008-10-09 15:00:40 -0400745
Chuck Leverc93c6222014-05-28 10:35:14 -0400746failed_marshal:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400747 if (rc != -ENOTCONN)
748 return rc;
Tom Talpey575448b2008-10-09 15:00:40 -0400749drop_connection:
750 xprt_disconnect_done(xprt);
751 return -ENOTCONN; /* implies disconnect */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400752}
753
Chuck Lever5d252f92016-01-07 14:50:10 -0500754void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400755{
756 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
757 long idle_time = 0;
758
759 if (xprt_connected(xprt))
760 idle_time = (long)(jiffies - xprt->last_used) / HZ;
761
Chuck Lever763f7e42015-08-03 13:04:36 -0400762 seq_puts(seq, "\txprt:\trdma ");
763 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
764 0, /* need a local port? */
765 xprt->stat.bind_count,
766 xprt->stat.connect_count,
767 xprt->stat.connect_time,
768 idle_time,
769 xprt->stat.sends,
770 xprt->stat.recvs,
771 xprt->stat.bad_xids,
772 xprt->stat.req_u,
773 xprt->stat.bklog_u);
Chuck Lever505bbe62016-06-29 13:52:54 -0400774 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
Chuck Lever763f7e42015-08-03 13:04:36 -0400775 r_xprt->rx_stats.read_chunk_count,
776 r_xprt->rx_stats.write_chunk_count,
777 r_xprt->rx_stats.reply_chunk_count,
778 r_xprt->rx_stats.total_rdma_request,
779 r_xprt->rx_stats.total_rdma_reply,
780 r_xprt->rx_stats.pullup_copy_count,
781 r_xprt->rx_stats.fixup_copy_count,
782 r_xprt->rx_stats.hardway_register_count,
783 r_xprt->rx_stats.failed_marshal_count,
Chuck Lever860477d2015-08-03 13:04:45 -0400784 r_xprt->rx_stats.bad_reply_count,
785 r_xprt->rx_stats.nomsg_call_count);
Chuck Lever01bb35c2017-10-20 10:48:36 -0400786 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
Chuck Lever505bbe62016-06-29 13:52:54 -0400787 r_xprt->rx_stats.mrs_recovered,
Chuck Levere2ac2362016-06-29 13:54:00 -0400788 r_xprt->rx_stats.mrs_orphaned,
Chuck Leverc8b920b2016-09-15 10:57:16 -0400789 r_xprt->rx_stats.mrs_allocated,
Chuck Leverae729502017-10-20 10:48:12 -0400790 r_xprt->rx_stats.local_inv_needed,
Chuck Lever01bb35c2017-10-20 10:48:36 -0400791 r_xprt->rx_stats.empty_sendctx_q,
792 r_xprt->rx_stats.reply_waits_for_send);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400793}
794
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400795static int
796xprt_rdma_enable_swap(struct rpc_xprt *xprt)
797{
Chuck Levera0451782015-10-24 17:26:29 -0400798 return 0;
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400799}
800
801static void
802xprt_rdma_disable_swap(struct rpc_xprt *xprt)
803{
804}
805
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400806/*
807 * Plumbing for rpc transport switch and kernel module
808 */
809
Chuck Leverd31ae252017-08-01 12:00:39 -0400810static const struct rpc_xprt_ops xprt_rdma_procs = {
Chuck Levere7ce7102014-05-28 10:34:57 -0400811 .reserve_xprt = xprt_reserve_xprt_cong,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400812 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
Trond Myklebustf39c1bf2012-09-07 11:08:50 -0400813 .alloc_slot = xprt_alloc_slot,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400814 .release_request = xprt_release_rqst_cong, /* ditto */
815 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
Chuck Lever33849792017-04-11 13:22:46 -0400816 .timer = xprt_rdma_timer,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400817 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
818 .set_port = xprt_rdma_set_port,
819 .connect = xprt_rdma_connect,
820 .buf_alloc = xprt_rdma_allocate,
821 .buf_free = xprt_rdma_free,
822 .send_request = xprt_rdma_send_request,
823 .close = xprt_rdma_close,
824 .destroy = xprt_rdma_destroy,
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400825 .print_stats = xprt_rdma_print_stats,
826 .enable_swap = xprt_rdma_enable_swap,
827 .disable_swap = xprt_rdma_disable_swap,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400828 .inject_disconnect = xprt_rdma_inject_disconnect,
829#if defined(CONFIG_SUNRPC_BACKCHANNEL)
830 .bc_setup = xprt_rdma_bc_setup,
Chuck Lever76566772015-10-24 17:28:32 -0400831 .bc_up = xprt_rdma_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -0400832 .bc_maxpayload = xprt_rdma_bc_maxpayload,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400833 .bc_free_rqst = xprt_rdma_bc_free_rqst,
834 .bc_destroy = xprt_rdma_bc_destroy,
835#endif
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400836};
837
838static struct xprt_class xprt_rdma = {
839 .list = LIST_HEAD_INIT(xprt_rdma.list),
840 .name = "rdma",
841 .owner = THIS_MODULE,
842 .ident = XPRT_TRANSPORT_RDMA,
843 .setup = xprt_setup_rdma,
844};
845
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400846void xprt_rdma_cleanup(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400847{
848 int rc;
849
Chuck Lever3a0799a2014-03-12 12:51:39 -0400850 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
Jeff Laytonf895b252014-11-17 16:58:04 -0500851#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400852 if (sunrpc_table_header) {
853 unregister_sysctl_table(sunrpc_table_header);
854 sunrpc_table_header = NULL;
855 }
856#endif
857 rc = xprt_unregister_transport(&xprt_rdma);
858 if (rc)
859 dprintk("RPC: %s: xprt_unregister returned %i\n",
860 __func__, rc);
Chuck Lever951e7212015-05-26 11:52:25 -0400861
Chuck Leverfe97b472015-10-24 17:27:10 -0400862 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500863
864 rc = xprt_unregister_transport(&xprt_rdma_bc);
865 if (rc)
866 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
867 __func__, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400868}
869
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400870int xprt_rdma_init(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400871{
872 int rc;
873
Chuck Lever505bbe62016-06-29 13:52:54 -0400874 rc = rpcrdma_alloc_wq();
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400875 if (rc)
876 return rc;
877
Chuck Lever951e7212015-05-26 11:52:25 -0400878 rc = xprt_register_transport(&xprt_rdma);
879 if (rc) {
Chuck Leverfe97b472015-10-24 17:27:10 -0400880 rpcrdma_destroy_wq();
Chuck Lever951e7212015-05-26 11:52:25 -0400881 return rc;
882 }
883
Chuck Lever5d252f92016-01-07 14:50:10 -0500884 rc = xprt_register_transport(&xprt_rdma_bc);
885 if (rc) {
886 xprt_unregister_transport(&xprt_rdma);
887 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500888 return rc;
889 }
890
Chuck Lever3a0799a2014-03-12 12:51:39 -0400891 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400892
Chuck Lever3a0799a2014-03-12 12:51:39 -0400893 dprintk("Defaults:\n");
894 dprintk("\tSlots %d\n"
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400895 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
896 xprt_rdma_slot_table_entries,
897 xprt_rdma_max_inline_read, xprt_rdma_max_inline_write);
Chuck Lever10492702017-12-14 20:56:42 -0500898 dprintk("\tPadding 0\n\tMemreg %d\n", xprt_rdma_memreg_strategy);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400899
Jeff Laytonf895b252014-11-17 16:58:04 -0500900#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400901 if (!sunrpc_table_header)
902 sunrpc_table_header = register_sysctl_table(sunrpc_table);
903#endif
904 return 0;
905}