blob: 08196896953db706ff1c6517bb1aae912848ca66 [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>
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040055
56#include "xprt_rdma.h"
57
Jeff Laytonf895b252014-11-17 16:58:04 -050058#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040059# define RPCDBG_FACILITY RPCDBG_TRANS
60#endif
61
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040062/*
63 * tunables
64 */
65
66static unsigned int xprt_rdma_slot_table_entries = RPCRDMA_DEF_SLOT_TABLE;
Chuck Lever5d252f92016-01-07 14:50:10 -050067unsigned int xprt_rdma_max_inline_read = RPCRDMA_DEF_INLINE;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040068static unsigned int xprt_rdma_max_inline_write = RPCRDMA_DEF_INLINE;
Chuck Leverce5b3712017-12-14 20:57:47 -050069unsigned int xprt_rdma_memreg_strategy = RPCRDMA_FRWR;
Chuck Leverfff09592017-04-11 13:22:54 -040070int xprt_rdma_pad_optimize;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040071
Jeff Laytonf895b252014-11-17 16:58:04 -050072#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040073
74static unsigned int min_slot_table_size = RPCRDMA_MIN_SLOT_TABLE;
75static unsigned int max_slot_table_size = RPCRDMA_MAX_SLOT_TABLE;
Chuck Lever29c55422016-05-02 14:40:48 -040076static unsigned int min_inline_size = RPCRDMA_MIN_INLINE;
77static unsigned int max_inline_size = RPCRDMA_MAX_INLINE;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040078static unsigned int zero;
79static unsigned int max_padding = PAGE_SIZE;
80static unsigned int min_memreg = RPCRDMA_BOUNCEBUFFERS;
81static unsigned int max_memreg = RPCRDMA_LAST - 1;
Chuck Lever10492702017-12-14 20:56:42 -050082static unsigned int dummy;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040083
84static struct ctl_table_header *sunrpc_table_header;
85
Joe Perchesfe2c6332013-06-11 23:04:25 -070086static struct ctl_table xr_tunables_table[] = {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040087 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040088 .procname = "rdma_slot_table_entries",
89 .data = &xprt_rdma_slot_table_entries,
90 .maxlen = sizeof(unsigned int),
91 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080092 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040093 .extra1 = &min_slot_table_size,
94 .extra2 = &max_slot_table_size
95 },
96 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -040097 .procname = "rdma_max_inline_read",
98 .data = &xprt_rdma_max_inline_read,
99 .maxlen = sizeof(unsigned int),
100 .mode = 0644,
Chuck Lever44829d02016-09-15 10:57:32 -0400101 .proc_handler = proc_dointvec_minmax,
Chuck Lever29c55422016-05-02 14:40:48 -0400102 .extra1 = &min_inline_size,
103 .extra2 = &max_inline_size,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400104 },
105 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400106 .procname = "rdma_max_inline_write",
107 .data = &xprt_rdma_max_inline_write,
108 .maxlen = sizeof(unsigned int),
109 .mode = 0644,
Chuck Lever44829d02016-09-15 10:57:32 -0400110 .proc_handler = proc_dointvec_minmax,
Chuck Lever29c55422016-05-02 14:40:48 -0400111 .extra1 = &min_inline_size,
112 .extra2 = &max_inline_size,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400113 },
114 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400115 .procname = "rdma_inline_write_padding",
Chuck Lever10492702017-12-14 20:56:42 -0500116 .data = &dummy,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400117 .maxlen = sizeof(unsigned int),
118 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800119 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400120 .extra1 = &zero,
121 .extra2 = &max_padding,
122 },
123 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400124 .procname = "rdma_memreg_strategy",
125 .data = &xprt_rdma_memreg_strategy,
126 .maxlen = sizeof(unsigned int),
127 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800128 .proc_handler = proc_dointvec_minmax,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400129 .extra1 = &min_memreg,
130 .extra2 = &max_memreg,
131 },
132 {
Tom Talpey9191ca32008-10-09 15:01:11 -0400133 .procname = "rdma_pad_optimize",
134 .data = &xprt_rdma_pad_optimize,
135 .maxlen = sizeof(unsigned int),
136 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800137 .proc_handler = proc_dointvec,
Tom Talpey9191ca32008-10-09 15:01:11 -0400138 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800139 { },
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400140};
141
Joe Perchesfe2c6332013-06-11 23:04:25 -0700142static struct ctl_table sunrpc_table[] = {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400143 {
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400144 .procname = "sunrpc",
145 .mode = 0555,
146 .child = xr_tunables_table
147 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800148 { },
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400149};
150
151#endif
152
Chuck Leverd31ae252017-08-01 12:00:39 -0400153static const struct rpc_xprt_ops xprt_rdma_procs;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400154
155static void
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400156xprt_rdma_format_addresses4(struct rpc_xprt *xprt, struct sockaddr *sap)
157{
158 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
159 char buf[20];
160
161 snprintf(buf, sizeof(buf), "%08x", ntohl(sin->sin_addr.s_addr));
162 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
163
164 xprt->address_strings[RPC_DISPLAY_NETID] = RPCBIND_NETID_RDMA;
165}
166
167static void
168xprt_rdma_format_addresses6(struct rpc_xprt *xprt, struct sockaddr *sap)
169{
170 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
171 char buf[40];
172
173 snprintf(buf, sizeof(buf), "%pi6", &sin6->sin6_addr);
174 xprt->address_strings[RPC_DISPLAY_HEX_ADDR] = kstrdup(buf, GFP_KERNEL);
175
176 xprt->address_strings[RPC_DISPLAY_NETID] = RPCBIND_NETID_RDMA6;
177}
178
Chuck Lever5d252f92016-01-07 14:50:10 -0500179void
Chuck Lever5231eb92015-08-03 13:02:41 -0400180xprt_rdma_format_addresses(struct rpc_xprt *xprt, struct sockaddr *sap)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400181{
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400182 char buf[128];
183
184 switch (sap->sa_family) {
185 case AF_INET:
186 xprt_rdma_format_addresses4(xprt, sap);
187 break;
188 case AF_INET6:
189 xprt_rdma_format_addresses6(xprt, sap);
190 break;
191 default:
192 pr_err("rpcrdma: Unrecognized address family\n");
193 return;
194 }
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400195
Chuck Leverc877b842009-08-09 15:09:36 -0400196 (void)rpc_ntop(sap, buf, sizeof(buf));
197 xprt->address_strings[RPC_DISPLAY_ADDR] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400198
Joe Perches81160e662010-03-08 12:15:59 -0800199 snprintf(buf, sizeof(buf), "%u", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400200 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400201
Joe Perches81160e662010-03-08 12:15:59 -0800202 snprintf(buf, sizeof(buf), "%4hx", rpc_get_port(sap));
Chuck Leverc877b842009-08-09 15:09:36 -0400203 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400204
Chuck Lever0dd39ca2015-03-30 14:33:43 -0400205 xprt->address_strings[RPC_DISPLAY_PROTO] = "rdma";
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400206}
207
Chuck Lever5d252f92016-01-07 14:50:10 -0500208void
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400209xprt_rdma_free_addresses(struct rpc_xprt *xprt)
210{
Chuck Lever33e01dc2008-01-14 12:32:20 -0500211 unsigned int i;
212
213 for (i = 0; i < RPC_DISPLAY_MAX; i++)
214 switch (i) {
215 case RPC_DISPLAY_PROTO:
216 case RPC_DISPLAY_NETID:
217 continue;
218 default:
219 kfree(xprt->address_strings[i]);
220 }
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400221}
222
Chuck Lever3a72dc72016-11-29 10:53:37 -0500223void
224rpcrdma_conn_func(struct rpcrdma_ep *ep)
225{
226 schedule_delayed_work(&ep->rep_connect_worker, 0);
227}
228
229void
230rpcrdma_connect_worker(struct work_struct *work)
231{
232 struct rpcrdma_ep *ep =
233 container_of(work, struct rpcrdma_ep, rep_connect_worker.work);
234 struct rpcrdma_xprt *r_xprt =
235 container_of(ep, struct rpcrdma_xprt, rx_ep);
236 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
237
238 spin_lock_bh(&xprt->transport_lock);
Chuck Lever3a72dc72016-11-29 10:53:37 -0500239 if (ep->rep_connected > 0) {
240 if (!xprt_test_and_set_connected(xprt))
241 xprt_wake_pending_tasks(xprt, 0);
242 } else {
243 if (xprt_test_and_clear_connected(xprt))
244 xprt_wake_pending_tasks(xprt, -ENOTCONN);
245 }
246 spin_unlock_bh(&xprt->transport_lock);
247}
248
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400249static void
250xprt_rdma_connect_worker(struct work_struct *work)
251{
Chuck Lever5abefb82015-01-21 11:02:37 -0500252 struct rpcrdma_xprt *r_xprt = container_of(work, struct rpcrdma_xprt,
253 rx_connect_worker.work);
254 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400255 int rc = 0;
256
Trond Myklebustd19751e2012-09-11 17:21:25 -0400257 xprt_clear_connected(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400258
Trond Myklebustd19751e2012-09-11 17:21:25 -0400259 rc = rpcrdma_ep_connect(&r_xprt->rx_ep, &r_xprt->rx_ia);
260 if (rc)
261 xprt_wake_pending_tasks(xprt, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400262
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400263 xprt_clear_connecting(xprt);
264}
265
Chuck Lever4a068252015-05-11 14:02:25 -0400266static void
267xprt_rdma_inject_disconnect(struct rpc_xprt *xprt)
268{
269 struct rpcrdma_xprt *r_xprt = container_of(xprt, struct rpcrdma_xprt,
270 rx_xprt);
271
Chuck Leverb4744e02017-12-20 16:31:29 -0500272 trace_xprtrdma_inject_dsc(r_xprt);
Chuck Lever4a068252015-05-11 14:02:25 -0400273 rdma_disconnect(r_xprt->rx_ia.ri_id);
274}
275
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400276/*
277 * xprt_rdma_destroy
278 *
279 * Destroy the xprt.
280 * Free all memory associated with the object, including its own.
281 * NOTE: none of the *destroy methods free memory for their top-level
282 * objects, even though they may have allocated it (they do free
283 * private memory). It's up to the caller to handle it. In this
284 * case (RDMA transport), all structure memory is inlined with the
285 * struct rpcrdma_xprt.
286 */
287static void
288xprt_rdma_destroy(struct rpc_xprt *xprt)
289{
290 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400291
Chuck Leverb4744e02017-12-20 16:31:29 -0500292 trace_xprtrdma_destroy(r_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400293
Chuck Lever5abefb82015-01-21 11:02:37 -0500294 cancel_delayed_work_sync(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400295
296 xprt_clear_connected(xprt);
297
Chuck Lever7f1d5412014-05-28 10:33:16 -0400298 rpcrdma_ep_destroy(&r_xprt->rx_ep, &r_xprt->rx_ia);
Steve Wise72c02172015-09-21 12:24:23 -0500299 rpcrdma_buffer_destroy(&r_xprt->rx_buf);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400300 rpcrdma_ia_close(&r_xprt->rx_ia);
301
302 xprt_rdma_free_addresses(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +0400303 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400304
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400305 module_put(THIS_MODULE);
306}
307
Trond Myklebust2881ae72007-12-20 16:03:54 -0500308static const struct rpc_timeout xprt_rdma_default_timeout = {
309 .to_initval = 60 * HZ,
310 .to_maxval = 60 * HZ,
311};
312
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400313/**
314 * xprt_setup_rdma - Set up transport to use RDMA
315 *
316 * @args: rpc transport arguments
317 */
318static struct rpc_xprt *
319xprt_setup_rdma(struct xprt_create *args)
320{
321 struct rpcrdma_create_data_internal cdata;
322 struct rpc_xprt *xprt;
323 struct rpcrdma_xprt *new_xprt;
324 struct rpcrdma_ep *new_ep;
Chuck Lever5231eb92015-08-03 13:02:41 -0400325 struct sockaddr *sap;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400326 int rc;
327
328 if (args->addrlen > sizeof(xprt->addr)) {
329 dprintk("RPC: %s: address too large\n", __func__);
330 return ERR_PTR(-EBADF);
331 }
332
Pavel Emelyanov37aa2132010-09-29 16:05:43 +0400333 xprt = xprt_alloc(args->net, sizeof(struct rpcrdma_xprt),
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400334 xprt_rdma_slot_table_entries,
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +0400335 xprt_rdma_slot_table_entries);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400336 if (xprt == NULL) {
337 dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n",
338 __func__);
339 return ERR_PTR(-ENOMEM);
340 }
341
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400342 /* 60 second timeout, no retries */
Trond Myklebustba7392b2007-12-20 16:03:55 -0500343 xprt->timeout = &xprt_rdma_default_timeout;
Chuck Leverbfaee092014-05-28 10:34:32 -0400344 xprt->bind_timeout = RPCRDMA_BIND_TO;
345 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
346 xprt->idle_timeout = RPCRDMA_IDLE_DISC_TO;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400347
348 xprt->resvport = 0; /* privileged port not needed */
349 xprt->tsh_size = 0; /* RPC-RDMA handles framing */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400350 xprt->ops = &xprt_rdma_procs;
351
352 /*
353 * Set up RDMA-specific connect data.
354 */
Chuck Leverdd229ce2017-12-14 20:56:58 -0500355 sap = args->dstaddr;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400356
357 /* Ensure xprt->addr holds valid server TCP (not RDMA)
358 * address, for any side protocols which peek at it */
359 xprt->prot = IPPROTO_TCP;
360 xprt->addrlen = args->addrlen;
Chuck Lever5231eb92015-08-03 13:02:41 -0400361 memcpy(&xprt->addr, sap, xprt->addrlen);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400362
Chuck Lever5231eb92015-08-03 13:02:41 -0400363 if (rpc_get_port(sap))
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400364 xprt_set_bound(xprt);
Chuck Leverd461f1f2017-12-14 20:56:50 -0500365 xprt_rdma_format_addresses(xprt, sap);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400366
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400367 cdata.max_requests = xprt->max_reqs;
368
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400369 cdata.rsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA write max */
370 cdata.wsize = RPCRDMA_MAX_SEGS * PAGE_SIZE; /* RDMA read max */
371
372 cdata.inline_wsize = xprt_rdma_max_inline_write;
373 if (cdata.inline_wsize > cdata.wsize)
374 cdata.inline_wsize = cdata.wsize;
375
376 cdata.inline_rsize = xprt_rdma_max_inline_read;
377 if (cdata.inline_rsize > cdata.rsize)
378 cdata.inline_rsize = cdata.rsize;
379
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400380 /*
381 * Create new transport instance, which includes initialized
382 * o ia
383 * o endpoint
384 * o buffers
385 */
386
387 new_xprt = rpcx_to_rdmax(xprt);
388
Chuck Leverdd229ce2017-12-14 20:56:58 -0500389 rc = rpcrdma_ia_open(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400390 if (rc)
391 goto out1;
392
393 /*
394 * initialize and create ep
395 */
396 new_xprt->rx_data = cdata;
397 new_ep = &new_xprt->rx_ep;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400398
399 rc = rpcrdma_ep_create(&new_xprt->rx_ep,
400 &new_xprt->rx_ia, &new_xprt->rx_data);
401 if (rc)
402 goto out2;
403
Chuck Leverac920d02015-01-21 11:03:44 -0500404 rc = rpcrdma_buffer_create(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400405 if (rc)
406 goto out3;
407
Chuck Lever5abefb82015-01-21 11:02:37 -0500408 INIT_DELAYED_WORK(&new_xprt->rx_connect_worker,
409 xprt_rdma_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400410
Chuck Lever1c9351e2015-03-30 14:34:30 -0400411 xprt->max_payload = new_xprt->rx_ia.ri_ops->ro_maxpages(new_xprt);
412 if (xprt->max_payload == 0)
413 goto out4;
414 xprt->max_payload <<= PAGE_SHIFT;
Chuck Lever43e95982014-07-29 17:23:34 -0400415 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
416 __func__, xprt->max_payload);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400417
418 if (!try_module_get(THIS_MODULE))
419 goto out4;
420
Chuck Lever5231eb92015-08-03 13:02:41 -0400421 dprintk("RPC: %s: %s:%s\n", __func__,
422 xprt->address_strings[RPC_DISPLAY_ADDR],
423 xprt->address_strings[RPC_DISPLAY_PORT]);
Chuck Leverb4744e02017-12-20 16:31:29 -0500424 trace_xprtrdma_create(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400425 return xprt;
426
427out4:
Chuck Lever03ac1a72017-12-14 20:56:01 -0500428 rpcrdma_buffer_destroy(&new_xprt->rx_buf);
Chuck Lever03ac1a72017-12-14 20:56:01 -0500429 rc = -ENODEV;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400430out3:
Chuck Lever7f1d5412014-05-28 10:33:16 -0400431 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400432out2:
433 rpcrdma_ia_close(&new_xprt->rx_ia);
434out1:
Chuck Leverb4744e02017-12-20 16:31:29 -0500435 trace_xprtrdma_destroy(new_xprt);
Chuck Leverd461f1f2017-12-14 20:56:50 -0500436 xprt_rdma_free_addresses(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +0400437 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400438 return ERR_PTR(rc);
439}
440
Chuck Leverbebd0312017-04-11 13:23:10 -0400441/**
442 * xprt_rdma_close - Close down RDMA connection
443 * @xprt: generic transport to be closed
444 *
445 * Called during transport shutdown reconnect, or device
446 * removal. Caller holds the transport's write lock.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400447 */
448static void
449xprt_rdma_close(struct rpc_xprt *xprt)
450{
451 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400452 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
453 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400454
Chuck Leverbebd0312017-04-11 13:23:10 -0400455 dprintk("RPC: %s: closing xprt %p\n", __func__, xprt);
456
457 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
458 xprt_clear_connected(xprt);
459 rpcrdma_ia_remove(ia);
460 return;
461 }
462 if (ep->rep_connected == -ENODEV)
463 return;
464 if (ep->rep_connected > 0)
Tom Talpey08ca0dc2008-10-10 11:32:34 -0400465 xprt->reestablish_timeout = 0;
Trond Myklebust62da3b22007-11-06 18:44:20 -0500466 xprt_disconnect_done(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400467 rpcrdma_ep_disconnect(ep, ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400468}
469
Chuck Lever20035ed2017-12-14 20:57:06 -0500470/**
471 * xprt_rdma_set_port - update server port with rpcbind result
472 * @xprt: controlling RPC transport
473 * @port: new port value
474 *
475 * Transport connect status is unchanged.
476 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400477static void
478xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
479{
Chuck Lever20035ed2017-12-14 20:57:06 -0500480 struct sockaddr *sap = (struct sockaddr *)&xprt->addr;
481 char buf[8];
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400482
Chuck Lever20035ed2017-12-14 20:57:06 -0500483 dprintk("RPC: %s: setting port for xprt %p (%s:%s) to %u\n",
484 __func__, xprt,
485 xprt->address_strings[RPC_DISPLAY_ADDR],
486 xprt->address_strings[RPC_DISPLAY_PORT],
487 port);
488
489 rpc_set_port(sap, port);
490
491 kfree(xprt->address_strings[RPC_DISPLAY_PORT]);
492 snprintf(buf, sizeof(buf), "%u", port);
493 xprt->address_strings[RPC_DISPLAY_PORT] = kstrdup(buf, GFP_KERNEL);
494
495 kfree(xprt->address_strings[RPC_DISPLAY_HEX_PORT]);
496 snprintf(buf, sizeof(buf), "%4hx", port);
497 xprt->address_strings[RPC_DISPLAY_HEX_PORT] = kstrdup(buf, GFP_KERNEL);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400498}
499
Chuck Lever33849792017-04-11 13:22:46 -0400500/**
501 * xprt_rdma_timer - invoked when an RPC times out
502 * @xprt: controlling RPC transport
503 * @task: RPC task that timed out
504 *
505 * Invoked when the transport is still connected, but an RPC
506 * retransmit timeout occurs.
507 *
508 * Since RDMA connections don't have a keep-alive, forcibly
509 * disconnect and retry to connect. This drives full
510 * detection of the network path, and retransmissions of
511 * all pending RPCs.
512 */
513static void
514xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
515{
Chuck Lever33849792017-04-11 13:22:46 -0400516 xprt_force_disconnect(xprt);
517}
518
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400519static void
Trond Myklebust1b092092013-01-08 09:26:49 -0500520xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400521{
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400522 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
523
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400524 if (r_xprt->rx_ep.rep_connected != 0) {
525 /* Reconnect */
Chuck Lever5abefb82015-01-21 11:02:37 -0500526 schedule_delayed_work(&r_xprt->rx_connect_worker,
527 xprt->reestablish_timeout);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400528 xprt->reestablish_timeout <<= 1;
Chuck Leverbfaee092014-05-28 10:34:32 -0400529 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
530 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
531 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
532 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400533 } else {
Chuck Lever5abefb82015-01-21 11:02:37 -0500534 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400535 if (!RPC_IS_ASYNC(task))
Chuck Lever5abefb82015-01-21 11:02:37 -0500536 flush_delayed_work(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400537 }
538}
539
Chuck Lever9c40c492016-09-15 10:55:53 -0400540/* Allocate a fixed-size buffer in which to construct and send the
541 * RPC-over-RDMA header for this request.
542 */
543static bool
544rpcrdma_get_rdmabuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
545 gfp_t flags)
546{
Chuck Lever08cf2ef2016-09-15 10:56:02 -0400547 size_t size = RPCRDMA_HDRBUF_SIZE;
Chuck Lever9c40c492016-09-15 10:55:53 -0400548 struct rpcrdma_regbuf *rb;
549
550 if (req->rl_rdmabuf)
551 return true;
552
Chuck Lever13650c22016-09-15 10:56:26 -0400553 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400554 if (IS_ERR(rb))
555 return false;
556
557 r_xprt->rx_stats.hardway_register_count += size;
558 req->rl_rdmabuf = rb;
Chuck Lever7a80f3f2017-08-10 12:47:28 -0400559 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
Chuck Lever9c40c492016-09-15 10:55:53 -0400560 return true;
561}
562
Chuck Lever9c40c492016-09-15 10:55:53 -0400563static bool
564rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
565 size_t size, gfp_t flags)
566{
567 struct rpcrdma_regbuf *rb;
Chuck Lever9c40c492016-09-15 10:55:53 -0400568
569 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
570 return true;
571
Chuck Lever655fec62016-09-15 10:57:24 -0400572 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400573 if (IS_ERR(rb))
574 return false;
575
Chuck Lever13650c22016-09-15 10:56:26 -0400576 rpcrdma_free_regbuf(req->rl_sendbuf);
Chuck Lever655fec62016-09-15 10:57:24 -0400577 r_xprt->rx_stats.hardway_register_count += size;
Chuck Lever9c40c492016-09-15 10:55:53 -0400578 req->rl_sendbuf = rb;
579 return true;
580}
581
582/* The rq_rcv_buf is used only if a Reply chunk is necessary.
583 * The decision to use a Reply chunk is made later in
584 * rpcrdma_marshal_req. This buffer is registered at that time.
585 *
586 * Otherwise, the associated RPC Reply arrives in a separate
587 * Receive buffer, arbitrarily chosen by the HCA. The buffer
588 * allocated here for the RPC Reply is not utilized in that
589 * case. See rpcrdma_inline_fixup.
590 *
591 * A regbuf is used here to remember the buffer size.
592 */
593static bool
594rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
595 size_t size, gfp_t flags)
596{
597 struct rpcrdma_regbuf *rb;
598
599 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
600 return true;
601
Chuck Lever13650c22016-09-15 10:56:26 -0400602 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400603 if (IS_ERR(rb))
604 return false;
605
Chuck Lever13650c22016-09-15 10:56:26 -0400606 rpcrdma_free_regbuf(req->rl_recvbuf);
Chuck Lever9c40c492016-09-15 10:55:53 -0400607 r_xprt->rx_stats.hardway_register_count += size;
608 req->rl_recvbuf = rb;
609 return true;
610}
611
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400612/**
613 * xprt_rdma_allocate - allocate transport resources for an RPC
614 * @task: RPC task
615 *
616 * Return values:
617 * 0: Success; rq_buffer points to RPC buffer to use
618 * ENOMEM: Out of memory, call again later
619 * EIO: A permanent error occurred, do not retry
620 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400621 * The RDMA allocate/free functions need the task structure as a place
Chuck Lever9c40c492016-09-15 10:55:53 -0400622 * to hide the struct rpcrdma_req, which is necessary for the actual
623 * send/recv sequence.
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500624 *
Chuck Lever9c40c492016-09-15 10:55:53 -0400625 * xprt_rdma_allocate provides buffers that are already mapped for
626 * DMA, and a local DMA lkey is provided for each.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400627 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400628static int
629xprt_rdma_allocate(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400630{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400631 struct rpc_rqst *rqst = task->tk_rqstp;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400632 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500633 struct rpcrdma_req *req;
Chuck Levera0a1d502015-01-26 17:11:47 -0500634 gfp_t flags;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400635
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500636 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
Chuck Leverc977dea2014-05-28 10:35:06 -0400637 if (req == NULL)
Chuck Leverae724672017-12-20 16:31:53 -0500638 goto out_get;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400639
Chuck Lever5d252f92016-01-07 14:50:10 -0500640 flags = RPCRDMA_DEF_GFP;
Chuck Levera0a1d502015-01-26 17:11:47 -0500641 if (RPC_IS_SWAPPER(task))
642 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
643
Chuck Lever9c40c492016-09-15 10:55:53 -0400644 if (!rpcrdma_get_rdmabuf(r_xprt, req, flags))
645 goto out_fail;
646 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
647 goto out_fail;
648 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
649 goto out_fail;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400650
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 Leverae724672017-12-20 16:31:53 -0500654 trace_xprtrdma_allocate(task, req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400655 return 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400656
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500657out_fail:
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400658 rpcrdma_buffer_put(req);
Chuck Leverae724672017-12-20 16:31:53 -0500659out_get:
660 trace_xprtrdma_allocate(task, NULL);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400661 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400662}
663
Chuck Lever3435c742016-09-15 10:55:29 -0400664/**
665 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
666 * @task: RPC task
667 *
668 * Caller guarantees rqst->rq_buffer is non-NULL.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400669 */
670static void
Chuck Lever3435c742016-09-15 10:55:29 -0400671xprt_rdma_free(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400672{
Chuck Lever3435c742016-09-15 10:55:29 -0400673 struct rpc_rqst *rqst = task->tk_rqstp;
674 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
675 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400676
Chuck Lever0ba6f372017-10-20 10:48:28 -0400677 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
678 rpcrdma_release_rqst(r_xprt, req);
Chuck Leverae724672017-12-20 16:31:53 -0500679 trace_xprtrdma_rpc_done(task, 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 Levercf73daf2017-12-14 20:57:31 -0500689 * Returns:
690 * %0 if the RPC message has been sent
691 * %-ENOTCONN if the caller should reconnect and call again
Chuck Lever9e679d52018-02-28 15:30:44 -0500692 * %-EAGAIN if the caller should call again
693 * %-ENOBUFS if the caller should call again after a delay
Chuck Levercf73daf2017-12-14 20:57:31 -0500694 * %-EIO if a permanent error occurred and the request was not
695 * sent. Do not try to send this message again.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400696 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400697static int
698xprt_rdma_send_request(struct rpc_task *task)
699{
700 struct rpc_rqst *rqst = task->tk_rqstp;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500701 struct rpc_xprt *xprt = rqst->rq_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400702 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
703 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Lever6ab59942014-07-29 17:23:43 -0400704 int rc = 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400705
Chuck Levercf73daf2017-12-14 20:57:31 -0500706#if defined(CONFIG_SUNRPC_BACKCHANNEL)
707 if (unlikely(!rqst->rq_buffer))
708 return xprt_rdma_bc_send_reply(rqst);
709#endif /* CONFIG_SUNRPC_BACKCHANNEL */
710
Chuck Leverbebd0312017-04-11 13:23:10 -0400711 if (!xprt_connected(xprt))
712 goto drop_connection;
713
Chuck Lever09e60642017-08-10 12:47:12 -0400714 rc = rpcrdma_marshal_req(r_xprt, rqst);
Chuck Lever6ab59942014-07-29 17:23:43 -0400715 if (rc < 0)
716 goto failed_marshal;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400717
718 if (req->rl_reply == NULL) /* e.g. reconnection */
719 rpcrdma_recv_buffer_get(req);
720
Tom Talpey575448b2008-10-09 15:00:40 -0400721 /* Must suppress retransmit to maintain credits */
Chuck Lever8a147932018-02-28 15:30:38 -0500722 if (rqst->rq_connect_cookie == xprt->connect_cookie)
Tom Talpey575448b2008-10-09 15:00:40 -0400723 goto drop_connection;
Tom Talpey575448b2008-10-09 15:00:40 -0400724
Chuck Lever42b9f5c2017-12-14 20:56:18 -0500725 __set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
Tom Talpey575448b2008-10-09 15:00:40 -0400726 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
727 goto drop_connection;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400728
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400729 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400730 rqst->rq_bytes_sent = 0;
731 return 0;
Tom Talpey575448b2008-10-09 15:00:40 -0400732
Chuck Leverc93c6222014-05-28 10:35:14 -0400733failed_marshal:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400734 if (rc != -ENOTCONN)
735 return rc;
Tom Talpey575448b2008-10-09 15:00:40 -0400736drop_connection:
737 xprt_disconnect_done(xprt);
738 return -ENOTCONN; /* implies disconnect */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400739}
740
Chuck Lever5d252f92016-01-07 14:50:10 -0500741void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400742{
743 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
744 long idle_time = 0;
745
746 if (xprt_connected(xprt))
747 idle_time = (long)(jiffies - xprt->last_used) / HZ;
748
Chuck Lever763f7e42015-08-03 13:04:36 -0400749 seq_puts(seq, "\txprt:\trdma ");
750 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
751 0, /* need a local port? */
752 xprt->stat.bind_count,
753 xprt->stat.connect_count,
754 xprt->stat.connect_time,
755 idle_time,
756 xprt->stat.sends,
757 xprt->stat.recvs,
758 xprt->stat.bad_xids,
759 xprt->stat.req_u,
760 xprt->stat.bklog_u);
Chuck Lever505bbe62016-06-29 13:52:54 -0400761 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
Chuck Lever763f7e42015-08-03 13:04:36 -0400762 r_xprt->rx_stats.read_chunk_count,
763 r_xprt->rx_stats.write_chunk_count,
764 r_xprt->rx_stats.reply_chunk_count,
765 r_xprt->rx_stats.total_rdma_request,
766 r_xprt->rx_stats.total_rdma_reply,
767 r_xprt->rx_stats.pullup_copy_count,
768 r_xprt->rx_stats.fixup_copy_count,
769 r_xprt->rx_stats.hardway_register_count,
770 r_xprt->rx_stats.failed_marshal_count,
Chuck Lever860477d2015-08-03 13:04:45 -0400771 r_xprt->rx_stats.bad_reply_count,
772 r_xprt->rx_stats.nomsg_call_count);
Chuck Lever01bb35c2017-10-20 10:48:36 -0400773 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
Chuck Lever505bbe62016-06-29 13:52:54 -0400774 r_xprt->rx_stats.mrs_recovered,
Chuck Levere2ac2362016-06-29 13:54:00 -0400775 r_xprt->rx_stats.mrs_orphaned,
Chuck Leverc8b920b2016-09-15 10:57:16 -0400776 r_xprt->rx_stats.mrs_allocated,
Chuck Leverae729502017-10-20 10:48:12 -0400777 r_xprt->rx_stats.local_inv_needed,
Chuck Lever01bb35c2017-10-20 10:48:36 -0400778 r_xprt->rx_stats.empty_sendctx_q,
779 r_xprt->rx_stats.reply_waits_for_send);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400780}
781
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400782static int
783xprt_rdma_enable_swap(struct rpc_xprt *xprt)
784{
Chuck Levera0451782015-10-24 17:26:29 -0400785 return 0;
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400786}
787
788static void
789xprt_rdma_disable_swap(struct rpc_xprt *xprt)
790{
791}
792
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400793/*
794 * Plumbing for rpc transport switch and kernel module
795 */
796
Chuck Leverd31ae252017-08-01 12:00:39 -0400797static const struct rpc_xprt_ops xprt_rdma_procs = {
Chuck Levere7ce7102014-05-28 10:34:57 -0400798 .reserve_xprt = xprt_reserve_xprt_cong,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400799 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
Trond Myklebustf39c1bf2012-09-07 11:08:50 -0400800 .alloc_slot = xprt_alloc_slot,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400801 .release_request = xprt_release_rqst_cong, /* ditto */
802 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
Chuck Lever33849792017-04-11 13:22:46 -0400803 .timer = xprt_rdma_timer,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400804 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
805 .set_port = xprt_rdma_set_port,
806 .connect = xprt_rdma_connect,
807 .buf_alloc = xprt_rdma_allocate,
808 .buf_free = xprt_rdma_free,
809 .send_request = xprt_rdma_send_request,
810 .close = xprt_rdma_close,
811 .destroy = xprt_rdma_destroy,
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400812 .print_stats = xprt_rdma_print_stats,
813 .enable_swap = xprt_rdma_enable_swap,
814 .disable_swap = xprt_rdma_disable_swap,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400815 .inject_disconnect = xprt_rdma_inject_disconnect,
816#if defined(CONFIG_SUNRPC_BACKCHANNEL)
817 .bc_setup = xprt_rdma_bc_setup,
Chuck Lever76566772015-10-24 17:28:32 -0400818 .bc_up = xprt_rdma_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -0400819 .bc_maxpayload = xprt_rdma_bc_maxpayload,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400820 .bc_free_rqst = xprt_rdma_bc_free_rqst,
821 .bc_destroy = xprt_rdma_bc_destroy,
822#endif
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400823};
824
825static struct xprt_class xprt_rdma = {
826 .list = LIST_HEAD_INIT(xprt_rdma.list),
827 .name = "rdma",
828 .owner = THIS_MODULE,
829 .ident = XPRT_TRANSPORT_RDMA,
830 .setup = xprt_setup_rdma,
831};
832
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400833void xprt_rdma_cleanup(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400834{
835 int rc;
836
Chuck Lever3a0799a2014-03-12 12:51:39 -0400837 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
Jeff Laytonf895b252014-11-17 16:58:04 -0500838#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400839 if (sunrpc_table_header) {
840 unregister_sysctl_table(sunrpc_table_header);
841 sunrpc_table_header = NULL;
842 }
843#endif
844 rc = xprt_unregister_transport(&xprt_rdma);
845 if (rc)
846 dprintk("RPC: %s: xprt_unregister returned %i\n",
847 __func__, rc);
Chuck Lever951e7212015-05-26 11:52:25 -0400848
Chuck Leverfe97b472015-10-24 17:27:10 -0400849 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500850
851 rc = xprt_unregister_transport(&xprt_rdma_bc);
852 if (rc)
853 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
854 __func__, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400855}
856
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400857int xprt_rdma_init(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400858{
859 int rc;
860
Chuck Lever505bbe62016-06-29 13:52:54 -0400861 rc = rpcrdma_alloc_wq();
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400862 if (rc)
863 return rc;
864
Chuck Lever951e7212015-05-26 11:52:25 -0400865 rc = xprt_register_transport(&xprt_rdma);
866 if (rc) {
Chuck Leverfe97b472015-10-24 17:27:10 -0400867 rpcrdma_destroy_wq();
Chuck Lever951e7212015-05-26 11:52:25 -0400868 return rc;
869 }
870
Chuck Lever5d252f92016-01-07 14:50:10 -0500871 rc = xprt_register_transport(&xprt_rdma_bc);
872 if (rc) {
873 xprt_unregister_transport(&xprt_rdma);
874 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500875 return rc;
876 }
877
Chuck Lever3a0799a2014-03-12 12:51:39 -0400878 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400879
Chuck Lever3a0799a2014-03-12 12:51:39 -0400880 dprintk("Defaults:\n");
881 dprintk("\tSlots %d\n"
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400882 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
883 xprt_rdma_slot_table_entries,
884 xprt_rdma_max_inline_read, xprt_rdma_max_inline_write);
Chuck Lever10492702017-12-14 20:56:42 -0500885 dprintk("\tPadding 0\n\tMemreg %d\n", xprt_rdma_memreg_strategy);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400886
Jeff Laytonf895b252014-11-17 16:58:04 -0500887#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400888 if (!sunrpc_table_header)
889 sunrpc_table_header = register_sysctl_table(sunrpc_table);
890#endif
891 return 0;
892}