blob: 646c24494ea7eba7fb2a2296ba6339e8dbf8f31e [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;
69static unsigned int xprt_rdma_inline_write_padding;
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;
83
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",
116 .data = &xprt_rdma_inline_write_padding,
117 .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);
239 if (++xprt->connect_cookie == 0) /* maintain a reserved value */
240 ++xprt->connect_cookie;
241 if (ep->rep_connected > 0) {
242 if (!xprt_test_and_set_connected(xprt))
243 xprt_wake_pending_tasks(xprt, 0);
244 } else {
245 if (xprt_test_and_clear_connected(xprt))
246 xprt_wake_pending_tasks(xprt, -ENOTCONN);
247 }
248 spin_unlock_bh(&xprt->transport_lock);
249}
250
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400251static void
252xprt_rdma_connect_worker(struct work_struct *work)
253{
Chuck Lever5abefb82015-01-21 11:02:37 -0500254 struct rpcrdma_xprt *r_xprt = container_of(work, struct rpcrdma_xprt,
255 rx_connect_worker.work);
256 struct rpc_xprt *xprt = &r_xprt->rx_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400257 int rc = 0;
258
Trond Myklebustd19751e2012-09-11 17:21:25 -0400259 xprt_clear_connected(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400260
Trond Myklebustd19751e2012-09-11 17:21:25 -0400261 dprintk("RPC: %s: %sconnect\n", __func__,
262 r_xprt->rx_ep.rep_connected != 0 ? "re" : "");
263 rc = rpcrdma_ep_connect(&r_xprt->rx_ep, &r_xprt->rx_ia);
264 if (rc)
265 xprt_wake_pending_tasks(xprt, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400266
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400267 dprintk("RPC: %s: exit\n", __func__);
268 xprt_clear_connecting(xprt);
269}
270
Chuck Lever4a068252015-05-11 14:02:25 -0400271static void
272xprt_rdma_inject_disconnect(struct rpc_xprt *xprt)
273{
274 struct rpcrdma_xprt *r_xprt = container_of(xprt, struct rpcrdma_xprt,
275 rx_xprt);
276
277 pr_info("rpcrdma: injecting transport disconnect on xprt=%p\n", xprt);
278 rdma_disconnect(r_xprt->rx_ia.ri_id);
279}
280
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400281/*
282 * xprt_rdma_destroy
283 *
284 * Destroy the xprt.
285 * Free all memory associated with the object, including its own.
286 * NOTE: none of the *destroy methods free memory for their top-level
287 * objects, even though they may have allocated it (they do free
288 * private memory). It's up to the caller to handle it. In this
289 * case (RDMA transport), all structure memory is inlined with the
290 * struct rpcrdma_xprt.
291 */
292static void
293xprt_rdma_destroy(struct rpc_xprt *xprt)
294{
295 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400296
297 dprintk("RPC: %s: called\n", __func__);
298
Chuck Lever5abefb82015-01-21 11:02:37 -0500299 cancel_delayed_work_sync(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400300
301 xprt_clear_connected(xprt);
302
Chuck Lever7f1d5412014-05-28 10:33:16 -0400303 rpcrdma_ep_destroy(&r_xprt->rx_ep, &r_xprt->rx_ia);
Steve Wise72c02172015-09-21 12:24:23 -0500304 rpcrdma_buffer_destroy(&r_xprt->rx_buf);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400305 rpcrdma_ia_close(&r_xprt->rx_ia);
306
307 xprt_rdma_free_addresses(xprt);
308
Pavel Emelyanove204e622010-09-29 16:03:13 +0400309 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400310
311 dprintk("RPC: %s: returning\n", __func__);
312
313 module_put(THIS_MODULE);
314}
315
Trond Myklebust2881ae72007-12-20 16:03:54 -0500316static const struct rpc_timeout xprt_rdma_default_timeout = {
317 .to_initval = 60 * HZ,
318 .to_maxval = 60 * HZ,
319};
320
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400321/**
322 * xprt_setup_rdma - Set up transport to use RDMA
323 *
324 * @args: rpc transport arguments
325 */
326static struct rpc_xprt *
327xprt_setup_rdma(struct xprt_create *args)
328{
329 struct rpcrdma_create_data_internal cdata;
330 struct rpc_xprt *xprt;
331 struct rpcrdma_xprt *new_xprt;
332 struct rpcrdma_ep *new_ep;
Chuck Lever5231eb92015-08-03 13:02:41 -0400333 struct sockaddr *sap;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400334 int rc;
335
336 if (args->addrlen > sizeof(xprt->addr)) {
337 dprintk("RPC: %s: address too large\n", __func__);
338 return ERR_PTR(-EBADF);
339 }
340
Pavel Emelyanov37aa2132010-09-29 16:05:43 +0400341 xprt = xprt_alloc(args->net, sizeof(struct rpcrdma_xprt),
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400342 xprt_rdma_slot_table_entries,
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +0400343 xprt_rdma_slot_table_entries);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400344 if (xprt == NULL) {
345 dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n",
346 __func__);
347 return ERR_PTR(-ENOMEM);
348 }
349
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400350 /* 60 second timeout, no retries */
Trond Myklebustba7392b2007-12-20 16:03:55 -0500351 xprt->timeout = &xprt_rdma_default_timeout;
Chuck Leverbfaee092014-05-28 10:34:32 -0400352 xprt->bind_timeout = RPCRDMA_BIND_TO;
353 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
354 xprt->idle_timeout = RPCRDMA_IDLE_DISC_TO;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400355
356 xprt->resvport = 0; /* privileged port not needed */
357 xprt->tsh_size = 0; /* RPC-RDMA handles framing */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400358 xprt->ops = &xprt_rdma_procs;
359
360 /*
361 * Set up RDMA-specific connect data.
362 */
363
Chuck Lever5231eb92015-08-03 13:02:41 -0400364 sap = (struct sockaddr *)&cdata.addr;
365 memcpy(sap, args->dstaddr, args->addrlen);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400366
367 /* Ensure xprt->addr holds valid server TCP (not RDMA)
368 * address, for any side protocols which peek at it */
369 xprt->prot = IPPROTO_TCP;
370 xprt->addrlen = args->addrlen;
Chuck Lever5231eb92015-08-03 13:02:41 -0400371 memcpy(&xprt->addr, sap, xprt->addrlen);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400372
Chuck Lever5231eb92015-08-03 13:02:41 -0400373 if (rpc_get_port(sap))
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400374 xprt_set_bound(xprt);
375
\"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
389 cdata.padding = xprt_rdma_inline_write_padding;
390
391 /*
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;
409 new_ep->rep_remote_addr = cdata.addr;
410
411 rc = rpcrdma_ep_create(&new_xprt->rx_ep,
412 &new_xprt->rx_ia, &new_xprt->rx_data);
413 if (rc)
414 goto out2;
415
416 /*
417 * Allocate pre-registered send and receive buffers for headers and
418 * any inline data. Also specify any padding which will be provided
419 * from a preregistered zero buffer.
420 */
Chuck Leverac920d02015-01-21 11:03:44 -0500421 rc = rpcrdma_buffer_create(new_xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400422 if (rc)
423 goto out3;
424
425 /*
426 * Register a callback for connection events. This is necessary because
427 * connection loss notification is async. We also catch connection loss
428 * when reaping receives.
429 */
Chuck Lever5abefb82015-01-21 11:02:37 -0500430 INIT_DELAYED_WORK(&new_xprt->rx_connect_worker,
431 xprt_rdma_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400432
Chuck Lever5231eb92015-08-03 13:02:41 -0400433 xprt_rdma_format_addresses(xprt, sap);
Chuck Lever1c9351e2015-03-30 14:34:30 -0400434 xprt->max_payload = new_xprt->rx_ia.ri_ops->ro_maxpages(new_xprt);
435 if (xprt->max_payload == 0)
436 goto out4;
437 xprt->max_payload <<= PAGE_SHIFT;
Chuck Lever43e95982014-07-29 17:23:34 -0400438 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
439 __func__, xprt->max_payload);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400440
441 if (!try_module_get(THIS_MODULE))
442 goto out4;
443
Chuck Lever5231eb92015-08-03 13:02:41 -0400444 dprintk("RPC: %s: %s:%s\n", __func__,
445 xprt->address_strings[RPC_DISPLAY_ADDR],
446 xprt->address_strings[RPC_DISPLAY_PORT]);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400447 return xprt;
448
449out4:
450 xprt_rdma_free_addresses(xprt);
451 rc = -EINVAL;
452out3:
Chuck Lever7f1d5412014-05-28 10:33:16 -0400453 rpcrdma_ep_destroy(new_ep, &new_xprt->rx_ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400454out2:
455 rpcrdma_ia_close(&new_xprt->rx_ia);
456out1:
Pavel Emelyanove204e622010-09-29 16:03:13 +0400457 xprt_free(xprt);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400458 return ERR_PTR(rc);
459}
460
Chuck Leverbebd0312017-04-11 13:23:10 -0400461/**
462 * xprt_rdma_close - Close down RDMA connection
463 * @xprt: generic transport to be closed
464 *
465 * Called during transport shutdown reconnect, or device
466 * removal. Caller holds the transport's write lock.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400467 */
468static void
469xprt_rdma_close(struct rpc_xprt *xprt)
470{
471 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400472 struct rpcrdma_ep *ep = &r_xprt->rx_ep;
473 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400474
Chuck Leverbebd0312017-04-11 13:23:10 -0400475 dprintk("RPC: %s: closing xprt %p\n", __func__, xprt);
476
477 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING, &ia->ri_flags)) {
478 xprt_clear_connected(xprt);
479 rpcrdma_ia_remove(ia);
480 return;
481 }
482 if (ep->rep_connected == -ENODEV)
483 return;
484 if (ep->rep_connected > 0)
Tom Talpey08ca0dc2008-10-10 11:32:34 -0400485 xprt->reestablish_timeout = 0;
Trond Myklebust62da3b22007-11-06 18:44:20 -0500486 xprt_disconnect_done(xprt);
Chuck Leverbebd0312017-04-11 13:23:10 -0400487 rpcrdma_ep_disconnect(ep, ia);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400488}
489
490static void
491xprt_rdma_set_port(struct rpc_xprt *xprt, u16 port)
492{
493 struct sockaddr_in *sap;
494
495 sap = (struct sockaddr_in *)&xprt->addr;
496 sap->sin_port = htons(port);
497 sap = (struct sockaddr_in *)&rpcx_to_rdmad(xprt).addr;
498 sap->sin_port = htons(port);
499 dprintk("RPC: %s: %u\n", __func__, port);
500}
501
Chuck Lever33849792017-04-11 13:22:46 -0400502/**
503 * xprt_rdma_timer - invoked when an RPC times out
504 * @xprt: controlling RPC transport
505 * @task: RPC task that timed out
506 *
507 * Invoked when the transport is still connected, but an RPC
508 * retransmit timeout occurs.
509 *
510 * Since RDMA connections don't have a keep-alive, forcibly
511 * disconnect and retry to connect. This drives full
512 * detection of the network path, and retransmissions of
513 * all pending RPCs.
514 */
515static void
516xprt_rdma_timer(struct rpc_xprt *xprt, struct rpc_task *task)
517{
518 dprintk("RPC: %5u %s: xprt = %p\n", task->tk_pid, __func__, xprt);
519
520 xprt_force_disconnect(xprt);
521}
522
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400523static void
Trond Myklebust1b092092013-01-08 09:26:49 -0500524xprt_rdma_connect(struct rpc_xprt *xprt, struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400525{
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400526 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
527
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400528 if (r_xprt->rx_ep.rep_connected != 0) {
529 /* Reconnect */
Chuck Lever5abefb82015-01-21 11:02:37 -0500530 schedule_delayed_work(&r_xprt->rx_connect_worker,
531 xprt->reestablish_timeout);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400532 xprt->reestablish_timeout <<= 1;
Chuck Leverbfaee092014-05-28 10:34:32 -0400533 if (xprt->reestablish_timeout > RPCRDMA_MAX_REEST_TO)
534 xprt->reestablish_timeout = RPCRDMA_MAX_REEST_TO;
535 else if (xprt->reestablish_timeout < RPCRDMA_INIT_REEST_TO)
536 xprt->reestablish_timeout = RPCRDMA_INIT_REEST_TO;
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400537 } else {
Chuck Lever5abefb82015-01-21 11:02:37 -0500538 schedule_delayed_work(&r_xprt->rx_connect_worker, 0);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400539 if (!RPC_IS_ASYNC(task))
Chuck Lever5abefb82015-01-21 11:02:37 -0500540 flush_delayed_work(&r_xprt->rx_connect_worker);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400541 }
542}
543
Chuck Lever9c40c492016-09-15 10:55:53 -0400544/* Allocate a fixed-size buffer in which to construct and send the
545 * RPC-over-RDMA header for this request.
546 */
547static bool
548rpcrdma_get_rdmabuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
549 gfp_t flags)
550{
Chuck Lever08cf2ef2016-09-15 10:56:02 -0400551 size_t size = RPCRDMA_HDRBUF_SIZE;
Chuck Lever9c40c492016-09-15 10:55:53 -0400552 struct rpcrdma_regbuf *rb;
553
554 if (req->rl_rdmabuf)
555 return true;
556
Chuck Lever13650c22016-09-15 10:56:26 -0400557 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400558 if (IS_ERR(rb))
559 return false;
560
561 r_xprt->rx_stats.hardway_register_count += size;
562 req->rl_rdmabuf = rb;
Chuck Lever7a80f3f2017-08-10 12:47:28 -0400563 xdr_buf_init(&req->rl_hdrbuf, rb->rg_base, rdmab_length(rb));
Chuck Lever9c40c492016-09-15 10:55:53 -0400564 return true;
565}
566
Chuck Lever9c40c492016-09-15 10:55:53 -0400567static bool
568rpcrdma_get_sendbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
569 size_t size, gfp_t flags)
570{
571 struct rpcrdma_regbuf *rb;
Chuck Lever9c40c492016-09-15 10:55:53 -0400572
573 if (req->rl_sendbuf && rdmab_length(req->rl_sendbuf) >= size)
574 return true;
575
Chuck Lever655fec62016-09-15 10:57:24 -0400576 rb = rpcrdma_alloc_regbuf(size, DMA_TO_DEVICE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400577 if (IS_ERR(rb))
578 return false;
579
Chuck Lever13650c22016-09-15 10:56:26 -0400580 rpcrdma_free_regbuf(req->rl_sendbuf);
Chuck Lever655fec62016-09-15 10:57:24 -0400581 r_xprt->rx_stats.hardway_register_count += size;
Chuck Lever9c40c492016-09-15 10:55:53 -0400582 req->rl_sendbuf = rb;
583 return true;
584}
585
586/* The rq_rcv_buf is used only if a Reply chunk is necessary.
587 * The decision to use a Reply chunk is made later in
588 * rpcrdma_marshal_req. This buffer is registered at that time.
589 *
590 * Otherwise, the associated RPC Reply arrives in a separate
591 * Receive buffer, arbitrarily chosen by the HCA. The buffer
592 * allocated here for the RPC Reply is not utilized in that
593 * case. See rpcrdma_inline_fixup.
594 *
595 * A regbuf is used here to remember the buffer size.
596 */
597static bool
598rpcrdma_get_recvbuf(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
599 size_t size, gfp_t flags)
600{
601 struct rpcrdma_regbuf *rb;
602
603 if (req->rl_recvbuf && rdmab_length(req->rl_recvbuf) >= size)
604 return true;
605
Chuck Lever13650c22016-09-15 10:56:26 -0400606 rb = rpcrdma_alloc_regbuf(size, DMA_NONE, flags);
Chuck Lever9c40c492016-09-15 10:55:53 -0400607 if (IS_ERR(rb))
608 return false;
609
Chuck Lever13650c22016-09-15 10:56:26 -0400610 rpcrdma_free_regbuf(req->rl_recvbuf);
Chuck Lever9c40c492016-09-15 10:55:53 -0400611 r_xprt->rx_stats.hardway_register_count += size;
612 req->rl_recvbuf = rb;
613 return true;
614}
615
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400616/**
617 * xprt_rdma_allocate - allocate transport resources for an RPC
618 * @task: RPC task
619 *
620 * Return values:
621 * 0: Success; rq_buffer points to RPC buffer to use
622 * ENOMEM: Out of memory, call again later
623 * EIO: A permanent error occurred, do not retry
624 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400625 * The RDMA allocate/free functions need the task structure as a place
Chuck Lever9c40c492016-09-15 10:55:53 -0400626 * to hide the struct rpcrdma_req, which is necessary for the actual
627 * send/recv sequence.
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500628 *
Chuck Lever9c40c492016-09-15 10:55:53 -0400629 * xprt_rdma_allocate provides buffers that are already mapped for
630 * DMA, and a local DMA lkey is provided for each.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400631 */
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400632static int
633xprt_rdma_allocate(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400634{
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400635 struct rpc_rqst *rqst = task->tk_rqstp;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400636 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500637 struct rpcrdma_req *req;
Chuck Levera0a1d502015-01-26 17:11:47 -0500638 gfp_t flags;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400639
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500640 req = rpcrdma_buffer_get(&r_xprt->rx_buf);
Chuck Leverc977dea2014-05-28 10:35:06 -0400641 if (req == NULL)
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400642 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400643
Chuck Lever5d252f92016-01-07 14:50:10 -0500644 flags = RPCRDMA_DEF_GFP;
Chuck Levera0a1d502015-01-26 17:11:47 -0500645 if (RPC_IS_SWAPPER(task))
646 flags = __GFP_MEMALLOC | GFP_NOWAIT | __GFP_NOWARN;
647
Chuck Lever9c40c492016-09-15 10:55:53 -0400648 if (!rpcrdma_get_rdmabuf(r_xprt, req, flags))
649 goto out_fail;
650 if (!rpcrdma_get_sendbuf(r_xprt, req, rqst->rq_callsize, flags))
651 goto out_fail;
652 if (!rpcrdma_get_recvbuf(r_xprt, req, rqst->rq_rcvsize, flags))
653 goto out_fail;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400654
Chuck Lever9c40c492016-09-15 10:55:53 -0400655 dprintk("RPC: %5u %s: send size = %zd, recv size = %zd, req = %p\n",
656 task->tk_pid, __func__, rqst->rq_callsize,
657 rqst->rq_rcvsize, req);
658
Tom Talpey575448b2008-10-09 15:00:40 -0400659 req->rl_connect_cookie = 0; /* our reserved value */
Chuck Lever5a6d1db2016-09-15 10:55:45 -0400660 rpcrdma_set_xprtdata(rqst, req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400661 rqst->rq_buffer = req->rl_sendbuf->rg_base;
Chuck Lever9c40c492016-09-15 10:55:53 -0400662 rqst->rq_rbuffer = req->rl_recvbuf->rg_base;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400663 return 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400664
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500665out_fail:
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400666 rpcrdma_buffer_put(req);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -0400667 return -ENOMEM;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400668}
669
Chuck Lever3435c742016-09-15 10:55:29 -0400670/**
671 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
672 * @task: RPC task
673 *
674 * Caller guarantees rqst->rq_buffer is non-NULL.
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400675 */
676static void
Chuck Lever3435c742016-09-15 10:55:29 -0400677xprt_rdma_free(struct rpc_task *task)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400678{
Chuck Lever3435c742016-09-15 10:55:29 -0400679 struct rpc_rqst *rqst = task->tk_rqstp;
680 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(rqst->rq_xprt);
681 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400682
Chuck Lever531cca02017-10-20 10:48:20 -0400683 if (test_bit(RPCRDMA_REQ_F_BACKCHANNEL, &req->rl_flags))
Chuck Leverffc4d9b2015-12-16 17:22:14 -0500684 return;
685
Chuck Lever0ca77dc2015-01-21 11:04:08 -0500686 dprintk("RPC: %s: called on 0x%p\n", __func__, req->rl_reply);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400687
Chuck Lever0ba6f372017-10-20 10:48:28 -0400688 if (test_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags))
689 rpcrdma_release_rqst(r_xprt, req);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400690 rpcrdma_buffer_put(req);
691}
692
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400693/**
694 * xprt_rdma_send_request - marshal and send an RPC request
695 * @task: RPC task with an RPC message in rq_snd_buf
696 *
Chuck Leverbebd0312017-04-11 13:23:10 -0400697 * Caller holds the transport's write lock.
698 *
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400699 * Return values:
700 * 0: The request has been sent
701 * ENOTCONN: Caller needs to invoke connect logic then call again
702 * ENOBUFS: Call again later to send the request
703 * EIO: A permanent error occurred. The request was not sent,
704 * and don't try it again
705 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400706 * send_request invokes the meat of RPC RDMA. It must do the following:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400707 *
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400708 * 1. Marshal the RPC request into an RPC RDMA request, which means
709 * putting a header in front of data, and creating IOVs for RDMA
710 * from those in the request.
711 * 2. In marshaling, detect opportunities for RDMA, and use them.
712 * 3. Post a recv message to set up asynch completion, then send
713 * the request (rpcrdma_ep_post).
714 * 4. No partial sends are possible in the RPC-RDMA protocol (as in UDP).
715 */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400716static int
717xprt_rdma_send_request(struct rpc_task *task)
718{
719 struct rpc_rqst *rqst = task->tk_rqstp;
Trond Myklebusta4f08352013-01-08 09:10:21 -0500720 struct rpc_xprt *xprt = rqst->rq_xprt;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400721 struct rpcrdma_req *req = rpcr_to_rdmar(rqst);
722 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
Chuck Lever6ab59942014-07-29 17:23:43 -0400723 int rc = 0;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400724
Chuck Leverbebd0312017-04-11 13:23:10 -0400725 if (!xprt_connected(xprt))
726 goto drop_connection;
727
Chuck Lever9d6b0402016-06-29 13:54:16 -0400728 /* On retransmit, remove any previously registered chunks */
Chuck Lever48016dc2016-11-29 10:52:48 -0500729 if (unlikely(!list_empty(&req->rl_registered)))
Chuck Lever4ce6c042017-10-09 12:03:34 -0400730 r_xprt->rx_ia.ri_ops->ro_unmap_sync(r_xprt,
731 &req->rl_registered);
Chuck Lever9d6b0402016-06-29 13:54:16 -0400732
Chuck Lever09e60642017-08-10 12:47:12 -0400733 rc = rpcrdma_marshal_req(r_xprt, rqst);
Chuck Lever6ab59942014-07-29 17:23:43 -0400734 if (rc < 0)
735 goto failed_marshal;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400736
737 if (req->rl_reply == NULL) /* e.g. reconnection */
738 rpcrdma_recv_buffer_get(req);
739
Tom Talpey575448b2008-10-09 15:00:40 -0400740 /* Must suppress retransmit to maintain credits */
741 if (req->rl_connect_cookie == xprt->connect_cookie)
742 goto drop_connection;
743 req->rl_connect_cookie = xprt->connect_cookie;
744
Chuck Lever0ba6f372017-10-20 10:48:28 -0400745 set_bit(RPCRDMA_REQ_F_PENDING, &req->rl_flags);
Tom Talpey575448b2008-10-09 15:00:40 -0400746 if (rpcrdma_ep_post(&r_xprt->rx_ia, &r_xprt->rx_ep, req))
747 goto drop_connection;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400748
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400749 rqst->rq_xmit_bytes_sent += rqst->rq_snd_buf.len;
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400750 rqst->rq_bytes_sent = 0;
751 return 0;
Tom Talpey575448b2008-10-09 15:00:40 -0400752
Chuck Leverc93c6222014-05-28 10:35:14 -0400753failed_marshal:
Chuck Lever7a89f9c2016-06-29 13:53:43 -0400754 if (rc != -ENOTCONN)
755 return rc;
Tom Talpey575448b2008-10-09 15:00:40 -0400756drop_connection:
757 xprt_disconnect_done(xprt);
758 return -ENOTCONN; /* implies disconnect */
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400759}
760
Chuck Lever5d252f92016-01-07 14:50:10 -0500761void xprt_rdma_print_stats(struct rpc_xprt *xprt, struct seq_file *seq)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400762{
763 struct rpcrdma_xprt *r_xprt = rpcx_to_rdmax(xprt);
764 long idle_time = 0;
765
766 if (xprt_connected(xprt))
767 idle_time = (long)(jiffies - xprt->last_used) / HZ;
768
Chuck Lever763f7e42015-08-03 13:04:36 -0400769 seq_puts(seq, "\txprt:\trdma ");
770 seq_printf(seq, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
771 0, /* need a local port? */
772 xprt->stat.bind_count,
773 xprt->stat.connect_count,
774 xprt->stat.connect_time,
775 idle_time,
776 xprt->stat.sends,
777 xprt->stat.recvs,
778 xprt->stat.bad_xids,
779 xprt->stat.req_u,
780 xprt->stat.bklog_u);
Chuck Lever505bbe62016-06-29 13:52:54 -0400781 seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
Chuck Lever763f7e42015-08-03 13:04:36 -0400782 r_xprt->rx_stats.read_chunk_count,
783 r_xprt->rx_stats.write_chunk_count,
784 r_xprt->rx_stats.reply_chunk_count,
785 r_xprt->rx_stats.total_rdma_request,
786 r_xprt->rx_stats.total_rdma_reply,
787 r_xprt->rx_stats.pullup_copy_count,
788 r_xprt->rx_stats.fixup_copy_count,
789 r_xprt->rx_stats.hardway_register_count,
790 r_xprt->rx_stats.failed_marshal_count,
Chuck Lever860477d2015-08-03 13:04:45 -0400791 r_xprt->rx_stats.bad_reply_count,
792 r_xprt->rx_stats.nomsg_call_count);
Chuck Lever01bb35c2017-10-20 10:48:36 -0400793 seq_printf(seq, "%lu %lu %lu %lu %lu %lu\n",
Chuck Lever505bbe62016-06-29 13:52:54 -0400794 r_xprt->rx_stats.mrs_recovered,
Chuck Levere2ac2362016-06-29 13:54:00 -0400795 r_xprt->rx_stats.mrs_orphaned,
Chuck Leverc8b920b2016-09-15 10:57:16 -0400796 r_xprt->rx_stats.mrs_allocated,
Chuck Leverae729502017-10-20 10:48:12 -0400797 r_xprt->rx_stats.local_inv_needed,
Chuck Lever01bb35c2017-10-20 10:48:36 -0400798 r_xprt->rx_stats.empty_sendctx_q,
799 r_xprt->rx_stats.reply_waits_for_send);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400800}
801
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400802static int
803xprt_rdma_enable_swap(struct rpc_xprt *xprt)
804{
Chuck Levera0451782015-10-24 17:26:29 -0400805 return 0;
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400806}
807
808static void
809xprt_rdma_disable_swap(struct rpc_xprt *xprt)
810{
811}
812
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400813/*
814 * Plumbing for rpc transport switch and kernel module
815 */
816
Chuck Leverd31ae252017-08-01 12:00:39 -0400817static const struct rpc_xprt_ops xprt_rdma_procs = {
Chuck Levere7ce7102014-05-28 10:34:57 -0400818 .reserve_xprt = xprt_reserve_xprt_cong,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400819 .release_xprt = xprt_release_xprt_cong, /* sunrpc/xprt.c */
Trond Myklebustf39c1bf2012-09-07 11:08:50 -0400820 .alloc_slot = xprt_alloc_slot,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400821 .release_request = xprt_release_rqst_cong, /* ditto */
822 .set_retrans_timeout = xprt_set_retrans_timeout_def, /* ditto */
Chuck Lever33849792017-04-11 13:22:46 -0400823 .timer = xprt_rdma_timer,
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400824 .rpcbind = rpcb_getport_async, /* sunrpc/rpcb_clnt.c */
825 .set_port = xprt_rdma_set_port,
826 .connect = xprt_rdma_connect,
827 .buf_alloc = xprt_rdma_allocate,
828 .buf_free = xprt_rdma_free,
829 .send_request = xprt_rdma_send_request,
830 .close = xprt_rdma_close,
831 .destroy = xprt_rdma_destroy,
Jeff Laytond67fa4d2015-06-03 16:14:29 -0400832 .print_stats = xprt_rdma_print_stats,
833 .enable_swap = xprt_rdma_enable_swap,
834 .disable_swap = xprt_rdma_disable_swap,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400835 .inject_disconnect = xprt_rdma_inject_disconnect,
836#if defined(CONFIG_SUNRPC_BACKCHANNEL)
837 .bc_setup = xprt_rdma_bc_setup,
Chuck Lever76566772015-10-24 17:28:32 -0400838 .bc_up = xprt_rdma_bc_up,
Chuck Lever6b26cc82016-05-02 14:40:40 -0400839 .bc_maxpayload = xprt_rdma_bc_maxpayload,
Chuck Leverf531a5d2015-10-24 17:27:43 -0400840 .bc_free_rqst = xprt_rdma_bc_free_rqst,
841 .bc_destroy = xprt_rdma_bc_destroy,
842#endif
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400843};
844
845static struct xprt_class xprt_rdma = {
846 .list = LIST_HEAD_INIT(xprt_rdma.list),
847 .name = "rdma",
848 .owner = THIS_MODULE,
849 .ident = XPRT_TRANSPORT_RDMA,
850 .setup = xprt_setup_rdma,
851};
852
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400853void xprt_rdma_cleanup(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400854{
855 int rc;
856
Chuck Lever3a0799a2014-03-12 12:51:39 -0400857 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
Jeff Laytonf895b252014-11-17 16:58:04 -0500858#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400859 if (sunrpc_table_header) {
860 unregister_sysctl_table(sunrpc_table_header);
861 sunrpc_table_header = NULL;
862 }
863#endif
864 rc = xprt_unregister_transport(&xprt_rdma);
865 if (rc)
866 dprintk("RPC: %s: xprt_unregister returned %i\n",
867 __func__, rc);
Chuck Lever951e7212015-05-26 11:52:25 -0400868
Chuck Leverfe97b472015-10-24 17:27:10 -0400869 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500870
871 rc = xprt_unregister_transport(&xprt_rdma_bc);
872 if (rc)
873 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
874 __func__, rc);
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400875}
876
Chuck Leverffe1f0d2015-06-04 11:21:42 -0400877int xprt_rdma_init(void)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400878{
879 int rc;
880
Chuck Lever505bbe62016-06-29 13:52:54 -0400881 rc = rpcrdma_alloc_wq();
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400882 if (rc)
883 return rc;
884
Chuck Lever951e7212015-05-26 11:52:25 -0400885 rc = xprt_register_transport(&xprt_rdma);
886 if (rc) {
Chuck Leverfe97b472015-10-24 17:27:10 -0400887 rpcrdma_destroy_wq();
Chuck Lever951e7212015-05-26 11:52:25 -0400888 return rc;
889 }
890
Chuck Lever5d252f92016-01-07 14:50:10 -0500891 rc = xprt_register_transport(&xprt_rdma_bc);
892 if (rc) {
893 xprt_unregister_transport(&xprt_rdma);
894 rpcrdma_destroy_wq();
Chuck Lever5d252f92016-01-07 14:50:10 -0500895 return rc;
896 }
897
Chuck Lever3a0799a2014-03-12 12:51:39 -0400898 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400899
Chuck Lever3a0799a2014-03-12 12:51:39 -0400900 dprintk("Defaults:\n");
901 dprintk("\tSlots %d\n"
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400902 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
903 xprt_rdma_slot_table_entries,
904 xprt_rdma_max_inline_read, xprt_rdma_max_inline_write);
Chuck Lever3a0799a2014-03-12 12:51:39 -0400905 dprintk("\tPadding %d\n\tMemreg %d\n",
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400906 xprt_rdma_inline_write_padding, xprt_rdma_memreg_strategy);
907
Jeff Laytonf895b252014-11-17 16:58:04 -0500908#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
\"Talpey, Thomas\f58851e2007-09-10 13:50:12 -0400909 if (!sunrpc_table_header)
910 sunrpc_table_header = register_sysctl_table(sunrpc_table);
911#endif
912 return 0;
913}