2 * Copyright (c) 2014-2017 Oracle. All rights reserved.
3 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
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
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
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.
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
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.
44 * This file contains the top-level implementation of an RPC RDMA
47 * Naming convention: functions beginning with xprt_ are part of the
48 * transport switch. All others are RPC RDMA internal.
51 #include <linux/module.h>
52 #include <linux/slab.h>
53 #include <linux/seq_file.h>
54 #include <linux/sunrpc/addr.h>
55 #include <linux/smp.h>
57 #include "xprt_rdma.h"
59 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
60 # define RPCDBG_FACILITY RPCDBG_TRANS
67 static unsigned int xprt_rdma_slot_table_entries
= RPCRDMA_DEF_SLOT_TABLE
;
68 unsigned int xprt_rdma_max_inline_read
= RPCRDMA_DEF_INLINE
;
69 static unsigned int xprt_rdma_max_inline_write
= RPCRDMA_DEF_INLINE
;
70 unsigned int xprt_rdma_memreg_strategy
= RPCRDMA_FRWR
;
71 int xprt_rdma_pad_optimize
;
73 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
75 static unsigned int min_slot_table_size
= RPCRDMA_MIN_SLOT_TABLE
;
76 static unsigned int max_slot_table_size
= RPCRDMA_MAX_SLOT_TABLE
;
77 static unsigned int min_inline_size
= RPCRDMA_MIN_INLINE
;
78 static unsigned int max_inline_size
= RPCRDMA_MAX_INLINE
;
79 static unsigned int zero
;
80 static unsigned int max_padding
= PAGE_SIZE
;
81 static unsigned int min_memreg
= RPCRDMA_BOUNCEBUFFERS
;
82 static unsigned int max_memreg
= RPCRDMA_LAST
- 1;
83 static unsigned int dummy
;
85 static struct ctl_table_header
*sunrpc_table_header
;
87 static struct ctl_table xr_tunables_table
[] = {
89 .procname
= "rdma_slot_table_entries",
90 .data
= &xprt_rdma_slot_table_entries
,
91 .maxlen
= sizeof(unsigned int),
93 .proc_handler
= proc_dointvec_minmax
,
94 .extra1
= &min_slot_table_size
,
95 .extra2
= &max_slot_table_size
98 .procname
= "rdma_max_inline_read",
99 .data
= &xprt_rdma_max_inline_read
,
100 .maxlen
= sizeof(unsigned int),
102 .proc_handler
= proc_dointvec_minmax
,
103 .extra1
= &min_inline_size
,
104 .extra2
= &max_inline_size
,
107 .procname
= "rdma_max_inline_write",
108 .data
= &xprt_rdma_max_inline_write
,
109 .maxlen
= sizeof(unsigned int),
111 .proc_handler
= proc_dointvec_minmax
,
112 .extra1
= &min_inline_size
,
113 .extra2
= &max_inline_size
,
116 .procname
= "rdma_inline_write_padding",
118 .maxlen
= sizeof(unsigned int),
120 .proc_handler
= proc_dointvec_minmax
,
122 .extra2
= &max_padding
,
125 .procname
= "rdma_memreg_strategy",
126 .data
= &xprt_rdma_memreg_strategy
,
127 .maxlen
= sizeof(unsigned int),
129 .proc_handler
= proc_dointvec_minmax
,
130 .extra1
= &min_memreg
,
131 .extra2
= &max_memreg
,
134 .procname
= "rdma_pad_optimize",
135 .data
= &xprt_rdma_pad_optimize
,
136 .maxlen
= sizeof(unsigned int),
138 .proc_handler
= proc_dointvec
,
143 static struct ctl_table sunrpc_table
[] = {
145 .procname
= "sunrpc",
147 .child
= xr_tunables_table
154 static const struct rpc_xprt_ops xprt_rdma_procs
;
157 xprt_rdma_format_addresses4(struct rpc_xprt
*xprt
, struct sockaddr
*sap
)
159 struct sockaddr_in
*sin
= (struct sockaddr_in
*)sap
;
162 snprintf(buf
, sizeof(buf
), "%08x", ntohl(sin
->sin_addr
.s_addr
));
163 xprt
->address_strings
[RPC_DISPLAY_HEX_ADDR
] = kstrdup(buf
, GFP_KERNEL
);
165 xprt
->address_strings
[RPC_DISPLAY_NETID
] = RPCBIND_NETID_RDMA
;
169 xprt_rdma_format_addresses6(struct rpc_xprt
*xprt
, struct sockaddr
*sap
)
171 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)sap
;
174 snprintf(buf
, sizeof(buf
), "%pi6", &sin6
->sin6_addr
);
175 xprt
->address_strings
[RPC_DISPLAY_HEX_ADDR
] = kstrdup(buf
, GFP_KERNEL
);
177 xprt
->address_strings
[RPC_DISPLAY_NETID
] = RPCBIND_NETID_RDMA6
;
181 xprt_rdma_format_addresses(struct rpc_xprt
*xprt
, struct sockaddr
*sap
)
185 switch (sap
->sa_family
) {
187 xprt_rdma_format_addresses4(xprt
, sap
);
190 xprt_rdma_format_addresses6(xprt
, sap
);
193 pr_err("rpcrdma: Unrecognized address family\n");
197 (void)rpc_ntop(sap
, buf
, sizeof(buf
));
198 xprt
->address_strings
[RPC_DISPLAY_ADDR
] = kstrdup(buf
, GFP_KERNEL
);
200 snprintf(buf
, sizeof(buf
), "%u", rpc_get_port(sap
));
201 xprt
->address_strings
[RPC_DISPLAY_PORT
] = kstrdup(buf
, GFP_KERNEL
);
203 snprintf(buf
, sizeof(buf
), "%4hx", rpc_get_port(sap
));
204 xprt
->address_strings
[RPC_DISPLAY_HEX_PORT
] = kstrdup(buf
, GFP_KERNEL
);
206 xprt
->address_strings
[RPC_DISPLAY_PROTO
] = "rdma";
210 xprt_rdma_free_addresses(struct rpc_xprt
*xprt
)
214 for (i
= 0; i
< RPC_DISPLAY_MAX
; i
++)
216 case RPC_DISPLAY_PROTO
:
217 case RPC_DISPLAY_NETID
:
220 kfree(xprt
->address_strings
[i
]);
225 rpcrdma_conn_func(struct rpcrdma_ep
*ep
)
227 schedule_delayed_work(&ep
->rep_connect_worker
, 0);
231 rpcrdma_connect_worker(struct work_struct
*work
)
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
;
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);
246 if (xprt_test_and_clear_connected(xprt
))
247 xprt_wake_pending_tasks(xprt
, -ENOTCONN
);
249 spin_unlock_bh(&xprt
->transport_lock
);
253 xprt_rdma_connect_worker(struct work_struct
*work
)
255 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
;
260 xprt_clear_connected(xprt
);
262 rc
= rpcrdma_ep_connect(&r_xprt
->rx_ep
, &r_xprt
->rx_ia
);
264 xprt_wake_pending_tasks(xprt
, rc
);
266 xprt_clear_connecting(xprt
);
270 xprt_rdma_inject_disconnect(struct rpc_xprt
*xprt
)
272 struct rpcrdma_xprt
*r_xprt
= container_of(xprt
, struct rpcrdma_xprt
,
275 trace_xprtrdma_inject_dsc(r_xprt
);
276 rdma_disconnect(r_xprt
->rx_ia
.ri_id
);
283 * Free all memory associated with the object, including its own.
284 * NOTE: none of the *destroy methods free memory for their top-level
285 * objects, even though they may have allocated it (they do free
286 * private memory). It's up to the caller to handle it. In this
287 * case (RDMA transport), all structure memory is inlined with the
288 * struct rpcrdma_xprt.
291 xprt_rdma_destroy(struct rpc_xprt
*xprt
)
293 struct rpcrdma_xprt
*r_xprt
= rpcx_to_rdmax(xprt
);
295 trace_xprtrdma_destroy(r_xprt
);
297 cancel_delayed_work_sync(&r_xprt
->rx_connect_worker
);
299 xprt_clear_connected(xprt
);
301 rpcrdma_ep_destroy(&r_xprt
->rx_ep
, &r_xprt
->rx_ia
);
302 rpcrdma_buffer_destroy(&r_xprt
->rx_buf
);
303 rpcrdma_ia_close(&r_xprt
->rx_ia
);
305 xprt_rdma_free_addresses(xprt
);
308 module_put(THIS_MODULE
);
311 static const struct rpc_timeout xprt_rdma_default_timeout
= {
312 .to_initval
= 60 * HZ
,
313 .to_maxval
= 60 * HZ
,
317 * xprt_setup_rdma - Set up transport to use RDMA
319 * @args: rpc transport arguments
321 static struct rpc_xprt
*
322 xprt_setup_rdma(struct xprt_create
*args
)
324 struct rpcrdma_create_data_internal cdata
;
325 struct rpc_xprt
*xprt
;
326 struct rpcrdma_xprt
*new_xprt
;
327 struct rpcrdma_ep
*new_ep
;
328 struct sockaddr
*sap
;
331 if (args
->addrlen
> sizeof(xprt
->addr
)) {
332 dprintk("RPC: %s: address too large\n", __func__
);
333 return ERR_PTR(-EBADF
);
336 xprt
= xprt_alloc(args
->net
, sizeof(struct rpcrdma_xprt
),
337 xprt_rdma_slot_table_entries
,
338 xprt_rdma_slot_table_entries
);
340 dprintk("RPC: %s: couldn't allocate rpcrdma_xprt\n",
342 return ERR_PTR(-ENOMEM
);
345 /* 60 second timeout, no retries */
346 xprt
->timeout
= &xprt_rdma_default_timeout
;
347 xprt
->bind_timeout
= RPCRDMA_BIND_TO
;
348 xprt
->reestablish_timeout
= RPCRDMA_INIT_REEST_TO
;
349 xprt
->idle_timeout
= RPCRDMA_IDLE_DISC_TO
;
351 xprt
->resvport
= 0; /* privileged port not needed */
352 xprt
->tsh_size
= 0; /* RPC-RDMA handles framing */
353 xprt
->ops
= &xprt_rdma_procs
;
356 * Set up RDMA-specific connect data.
360 /* Ensure xprt->addr holds valid server TCP (not RDMA)
361 * address, for any side protocols which peek at it */
362 xprt
->prot
= IPPROTO_TCP
;
363 xprt
->addrlen
= args
->addrlen
;
364 memcpy(&xprt
->addr
, sap
, xprt
->addrlen
);
366 if (rpc_get_port(sap
))
367 xprt_set_bound(xprt
);
368 xprt_rdma_format_addresses(xprt
, sap
);
370 cdata
.max_requests
= xprt
->max_reqs
;
372 cdata
.rsize
= RPCRDMA_MAX_SEGS
* PAGE_SIZE
; /* RDMA write max */
373 cdata
.wsize
= RPCRDMA_MAX_SEGS
* PAGE_SIZE
; /* RDMA read max */
375 cdata
.inline_wsize
= xprt_rdma_max_inline_write
;
376 if (cdata
.inline_wsize
> cdata
.wsize
)
377 cdata
.inline_wsize
= cdata
.wsize
;
379 cdata
.inline_rsize
= xprt_rdma_max_inline_read
;
380 if (cdata
.inline_rsize
> cdata
.rsize
)
381 cdata
.inline_rsize
= cdata
.rsize
;
384 * Create new transport instance, which includes initialized
390 new_xprt
= rpcx_to_rdmax(xprt
);
392 rc
= rpcrdma_ia_open(new_xprt
);
397 * initialize and create ep
399 new_xprt
->rx_data
= cdata
;
400 new_ep
= &new_xprt
->rx_ep
;
402 rc
= rpcrdma_ep_create(&new_xprt
->rx_ep
,
403 &new_xprt
->rx_ia
, &new_xprt
->rx_data
);
407 rc
= rpcrdma_buffer_create(new_xprt
);
411 INIT_DELAYED_WORK(&new_xprt
->rx_connect_worker
,
412 xprt_rdma_connect_worker
);
414 xprt
->max_payload
= new_xprt
->rx_ia
.ri_ops
->ro_maxpages(new_xprt
);
415 if (xprt
->max_payload
== 0)
417 xprt
->max_payload
<<= PAGE_SHIFT
;
418 dprintk("RPC: %s: transport data payload maximum: %zu bytes\n",
419 __func__
, xprt
->max_payload
);
421 if (!try_module_get(THIS_MODULE
))
424 dprintk("RPC: %s: %s:%s\n", __func__
,
425 xprt
->address_strings
[RPC_DISPLAY_ADDR
],
426 xprt
->address_strings
[RPC_DISPLAY_PORT
]);
427 trace_xprtrdma_create(new_xprt
);
431 rpcrdma_buffer_destroy(&new_xprt
->rx_buf
);
434 rpcrdma_ep_destroy(new_ep
, &new_xprt
->rx_ia
);
436 rpcrdma_ia_close(&new_xprt
->rx_ia
);
438 trace_xprtrdma_destroy(new_xprt
);
439 xprt_rdma_free_addresses(xprt
);
445 * xprt_rdma_close - Close down RDMA connection
446 * @xprt: generic transport to be closed
448 * Called during transport shutdown reconnect, or device
449 * removal. Caller holds the transport's write lock.
452 xprt_rdma_close(struct rpc_xprt
*xprt
)
454 struct rpcrdma_xprt
*r_xprt
= rpcx_to_rdmax(xprt
);
455 struct rpcrdma_ep
*ep
= &r_xprt
->rx_ep
;
456 struct rpcrdma_ia
*ia
= &r_xprt
->rx_ia
;
458 dprintk("RPC: %s: closing xprt %p\n", __func__
, xprt
);
460 if (test_and_clear_bit(RPCRDMA_IAF_REMOVING
, &ia
->ri_flags
)) {
461 xprt_clear_connected(xprt
);
462 rpcrdma_ia_remove(ia
);
465 if (ep
->rep_connected
== -ENODEV
)
467 if (ep
->rep_connected
> 0)
468 xprt
->reestablish_timeout
= 0;
469 xprt_disconnect_done(xprt
);
470 rpcrdma_ep_disconnect(ep
, ia
);
474 * xprt_rdma_set_port - update server port with rpcbind result
475 * @xprt: controlling RPC transport
476 * @port: new port value
478 * Transport connect status is unchanged.
481 xprt_rdma_set_port(struct rpc_xprt
*xprt
, u16 port
)
483 struct sockaddr
*sap
= (struct sockaddr
*)&xprt
->addr
;
486 dprintk("RPC: %s: setting port for xprt %p (%s:%s) to %u\n",
488 xprt
->address_strings
[RPC_DISPLAY_ADDR
],
489 xprt
->address_strings
[RPC_DISPLAY_PORT
],
492 rpc_set_port(sap
, port
);
494 kfree(xprt
->address_strings
[RPC_DISPLAY_PORT
]);
495 snprintf(buf
, sizeof(buf
), "%u", port
);
496 xprt
->address_strings
[RPC_DISPLAY_PORT
] = kstrdup(buf
, GFP_KERNEL
);
498 kfree(xprt
->address_strings
[RPC_DISPLAY_HEX_PORT
]);
499 snprintf(buf
, sizeof(buf
), "%4hx", port
);
500 xprt
->address_strings
[RPC_DISPLAY_HEX_PORT
] = kstrdup(buf
, GFP_KERNEL
);
504 * xprt_rdma_timer - invoked when an RPC times out
505 * @xprt: controlling RPC transport
506 * @task: RPC task that timed out
508 * Invoked when the transport is still connected, but an RPC
509 * retransmit timeout occurs.
511 * Since RDMA connections don't have a keep-alive, forcibly
512 * disconnect and retry to connect. This drives full
513 * detection of the network path, and retransmissions of
517 xprt_rdma_timer(struct rpc_xprt
*xprt
, struct rpc_task
*task
)
519 xprt_force_disconnect(xprt
);
523 xprt_rdma_connect(struct rpc_xprt
*xprt
, struct rpc_task
*task
)
525 struct rpcrdma_xprt
*r_xprt
= rpcx_to_rdmax(xprt
);
527 if (r_xprt
->rx_ep
.rep_connected
!= 0) {
529 schedule_delayed_work(&r_xprt
->rx_connect_worker
,
530 xprt
->reestablish_timeout
);
531 xprt
->reestablish_timeout
<<= 1;
532 if (xprt
->reestablish_timeout
> RPCRDMA_MAX_REEST_TO
)
533 xprt
->reestablish_timeout
= RPCRDMA_MAX_REEST_TO
;
534 else if (xprt
->reestablish_timeout
< RPCRDMA_INIT_REEST_TO
)
535 xprt
->reestablish_timeout
= RPCRDMA_INIT_REEST_TO
;
537 schedule_delayed_work(&r_xprt
->rx_connect_worker
, 0);
538 if (!RPC_IS_ASYNC(task
))
539 flush_delayed_work(&r_xprt
->rx_connect_worker
);
543 /* Allocate a fixed-size buffer in which to construct and send the
544 * RPC-over-RDMA header for this request.
547 rpcrdma_get_rdmabuf(struct rpcrdma_xprt
*r_xprt
, struct rpcrdma_req
*req
,
550 size_t size
= RPCRDMA_HDRBUF_SIZE
;
551 struct rpcrdma_regbuf
*rb
;
556 rb
= rpcrdma_alloc_regbuf(size
, DMA_TO_DEVICE
, flags
);
560 r_xprt
->rx_stats
.hardway_register_count
+= size
;
561 req
->rl_rdmabuf
= rb
;
562 xdr_buf_init(&req
->rl_hdrbuf
, rb
->rg_base
, rdmab_length(rb
));
567 rpcrdma_get_sendbuf(struct rpcrdma_xprt
*r_xprt
, struct rpcrdma_req
*req
,
568 size_t size
, gfp_t flags
)
570 struct rpcrdma_regbuf
*rb
;
572 if (req
->rl_sendbuf
&& rdmab_length(req
->rl_sendbuf
) >= size
)
575 rb
= rpcrdma_alloc_regbuf(size
, DMA_TO_DEVICE
, flags
);
579 rpcrdma_free_regbuf(req
->rl_sendbuf
);
580 r_xprt
->rx_stats
.hardway_register_count
+= size
;
581 req
->rl_sendbuf
= rb
;
585 /* The rq_rcv_buf is used only if a Reply chunk is necessary.
586 * The decision to use a Reply chunk is made later in
587 * rpcrdma_marshal_req. This buffer is registered at that time.
589 * Otherwise, the associated RPC Reply arrives in a separate
590 * Receive buffer, arbitrarily chosen by the HCA. The buffer
591 * allocated here for the RPC Reply is not utilized in that
592 * case. See rpcrdma_inline_fixup.
594 * A regbuf is used here to remember the buffer size.
597 rpcrdma_get_recvbuf(struct rpcrdma_xprt
*r_xprt
, struct rpcrdma_req
*req
,
598 size_t size
, gfp_t flags
)
600 struct rpcrdma_regbuf
*rb
;
602 if (req
->rl_recvbuf
&& rdmab_length(req
->rl_recvbuf
) >= size
)
605 rb
= rpcrdma_alloc_regbuf(size
, DMA_NONE
, flags
);
609 rpcrdma_free_regbuf(req
->rl_recvbuf
);
610 r_xprt
->rx_stats
.hardway_register_count
+= size
;
611 req
->rl_recvbuf
= rb
;
616 * xprt_rdma_allocate - allocate transport resources for an RPC
620 * 0: Success; rq_buffer points to RPC buffer to use
621 * ENOMEM: Out of memory, call again later
622 * EIO: A permanent error occurred, do not retry
624 * The RDMA allocate/free functions need the task structure as a place
625 * to hide the struct rpcrdma_req, which is necessary for the actual
626 * send/recv sequence.
628 * xprt_rdma_allocate provides buffers that are already mapped for
629 * DMA, and a local DMA lkey is provided for each.
632 xprt_rdma_allocate(struct rpc_task
*task
)
634 struct rpc_rqst
*rqst
= task
->tk_rqstp
;
635 struct rpcrdma_xprt
*r_xprt
= rpcx_to_rdmax(rqst
->rq_xprt
);
636 struct rpcrdma_req
*req
;
639 req
= rpcrdma_buffer_get(&r_xprt
->rx_buf
);
643 flags
= RPCRDMA_DEF_GFP
;
644 if (RPC_IS_SWAPPER(task
))
645 flags
= __GFP_MEMALLOC
| GFP_NOWAIT
| __GFP_NOWARN
;
647 if (!rpcrdma_get_rdmabuf(r_xprt
, req
, flags
))
649 if (!rpcrdma_get_sendbuf(r_xprt
, req
, rqst
->rq_callsize
, flags
))
651 if (!rpcrdma_get_recvbuf(r_xprt
, req
, rqst
->rq_rcvsize
, flags
))
654 req
->rl_cpu
= smp_processor_id();
655 req
->rl_connect_cookie
= 0; /* our reserved value */
656 rpcrdma_set_xprtdata(rqst
, req
);
657 rqst
->rq_buffer
= req
->rl_sendbuf
->rg_base
;
658 rqst
->rq_rbuffer
= req
->rl_recvbuf
->rg_base
;
659 trace_xprtrdma_allocate(task
, req
);
663 rpcrdma_buffer_put(req
);
665 trace_xprtrdma_allocate(task
, NULL
);
670 * xprt_rdma_free - release resources allocated by xprt_rdma_allocate
673 * Caller guarantees rqst->rq_buffer is non-NULL.
676 xprt_rdma_free(struct rpc_task
*task
)
678 struct rpc_rqst
*rqst
= task
->tk_rqstp
;
679 struct rpcrdma_xprt
*r_xprt
= rpcx_to_rdmax(rqst
->rq_xprt
);
680 struct rpcrdma_req
*req
= rpcr_to_rdmar(rqst
);
682 if (test_bit(RPCRDMA_REQ_F_PENDING
, &req
->rl_flags
))
683 rpcrdma_release_rqst(r_xprt
, req
);
684 trace_xprtrdma_rpc_done(task
, req
);
685 rpcrdma_buffer_put(req
);
689 * xprt_rdma_send_request - marshal and send an RPC request
690 * @task: RPC task with an RPC message in rq_snd_buf
692 * Caller holds the transport's write lock.
695 * %0 if the RPC message has been sent
696 * %-ENOTCONN if the caller should reconnect and call again
697 * %-ENOBUFS if the caller should call again later
698 * %-EIO if a permanent error occurred and the request was not
699 * sent. Do not try to send this message again.
702 xprt_rdma_send_request(struct rpc_task
*task
)
704 struct rpc_rqst
*rqst
= task
->tk_rqstp
;
705 struct rpc_xprt
*xprt
= rqst
->rq_xprt
;
706 struct rpcrdma_req
*req
= rpcr_to_rdmar(rqst
);
707 struct rpcrdma_xprt
*r_xprt
= rpcx_to_rdmax(xprt
);
710 #if defined(CONFIG_SUNRPC_BACKCHANNEL)
711 if (unlikely(!rqst
->rq_buffer
))
712 return xprt_rdma_bc_send_reply(rqst
);
713 #endif /* CONFIG_SUNRPC_BACKCHANNEL */
715 if (!xprt_connected(xprt
))
716 goto drop_connection
;
718 rc
= rpcrdma_marshal_req(r_xprt
, rqst
);
722 if (req
->rl_reply
== NULL
) /* e.g. reconnection */
723 rpcrdma_recv_buffer_get(req
);
725 /* Must suppress retransmit to maintain credits */
726 if (req
->rl_connect_cookie
== xprt
->connect_cookie
)
727 goto drop_connection
;
728 req
->rl_connect_cookie
= xprt
->connect_cookie
;
730 __set_bit(RPCRDMA_REQ_F_PENDING
, &req
->rl_flags
);
731 if (rpcrdma_ep_post(&r_xprt
->rx_ia
, &r_xprt
->rx_ep
, req
))
732 goto drop_connection
;
734 rqst
->rq_xmit_bytes_sent
+= rqst
->rq_snd_buf
.len
;
735 rqst
->rq_bytes_sent
= 0;
742 xprt_disconnect_done(xprt
);
743 return -ENOTCONN
; /* implies disconnect */
746 void xprt_rdma_print_stats(struct rpc_xprt
*xprt
, struct seq_file
*seq
)
748 struct rpcrdma_xprt
*r_xprt
= rpcx_to_rdmax(xprt
);
751 if (xprt_connected(xprt
))
752 idle_time
= (long)(jiffies
- xprt
->last_used
) / HZ
;
754 seq_puts(seq
, "\txprt:\trdma ");
755 seq_printf(seq
, "%u %lu %lu %lu %ld %lu %lu %lu %llu %llu ",
756 0, /* need a local port? */
757 xprt
->stat
.bind_count
,
758 xprt
->stat
.connect_count
,
759 xprt
->stat
.connect_time
,
766 seq_printf(seq
, "%lu %lu %lu %llu %llu %llu %llu %lu %lu %lu %lu ",
767 r_xprt
->rx_stats
.read_chunk_count
,
768 r_xprt
->rx_stats
.write_chunk_count
,
769 r_xprt
->rx_stats
.reply_chunk_count
,
770 r_xprt
->rx_stats
.total_rdma_request
,
771 r_xprt
->rx_stats
.total_rdma_reply
,
772 r_xprt
->rx_stats
.pullup_copy_count
,
773 r_xprt
->rx_stats
.fixup_copy_count
,
774 r_xprt
->rx_stats
.hardway_register_count
,
775 r_xprt
->rx_stats
.failed_marshal_count
,
776 r_xprt
->rx_stats
.bad_reply_count
,
777 r_xprt
->rx_stats
.nomsg_call_count
);
778 seq_printf(seq
, "%lu %lu %lu %lu %lu %lu\n",
779 r_xprt
->rx_stats
.mrs_recovered
,
780 r_xprt
->rx_stats
.mrs_orphaned
,
781 r_xprt
->rx_stats
.mrs_allocated
,
782 r_xprt
->rx_stats
.local_inv_needed
,
783 r_xprt
->rx_stats
.empty_sendctx_q
,
784 r_xprt
->rx_stats
.reply_waits_for_send
);
788 xprt_rdma_enable_swap(struct rpc_xprt
*xprt
)
794 xprt_rdma_disable_swap(struct rpc_xprt
*xprt
)
799 * Plumbing for rpc transport switch and kernel module
802 static const struct rpc_xprt_ops xprt_rdma_procs
= {
803 .reserve_xprt
= xprt_reserve_xprt_cong
,
804 .release_xprt
= xprt_release_xprt_cong
, /* sunrpc/xprt.c */
805 .alloc_slot
= xprt_alloc_slot
,
806 .release_request
= xprt_release_rqst_cong
, /* ditto */
807 .set_retrans_timeout
= xprt_set_retrans_timeout_def
, /* ditto */
808 .timer
= xprt_rdma_timer
,
809 .rpcbind
= rpcb_getport_async
, /* sunrpc/rpcb_clnt.c */
810 .set_port
= xprt_rdma_set_port
,
811 .connect
= xprt_rdma_connect
,
812 .buf_alloc
= xprt_rdma_allocate
,
813 .buf_free
= xprt_rdma_free
,
814 .send_request
= xprt_rdma_send_request
,
815 .close
= xprt_rdma_close
,
816 .destroy
= xprt_rdma_destroy
,
817 .print_stats
= xprt_rdma_print_stats
,
818 .enable_swap
= xprt_rdma_enable_swap
,
819 .disable_swap
= xprt_rdma_disable_swap
,
820 .inject_disconnect
= xprt_rdma_inject_disconnect
,
821 #if defined(CONFIG_SUNRPC_BACKCHANNEL)
822 .bc_setup
= xprt_rdma_bc_setup
,
823 .bc_up
= xprt_rdma_bc_up
,
824 .bc_maxpayload
= xprt_rdma_bc_maxpayload
,
825 .bc_free_rqst
= xprt_rdma_bc_free_rqst
,
826 .bc_destroy
= xprt_rdma_bc_destroy
,
830 static struct xprt_class xprt_rdma
= {
831 .list
= LIST_HEAD_INIT(xprt_rdma
.list
),
833 .owner
= THIS_MODULE
,
834 .ident
= XPRT_TRANSPORT_RDMA
,
835 .setup
= xprt_setup_rdma
,
838 void xprt_rdma_cleanup(void)
842 dprintk("RPCRDMA Module Removed, deregister RPC RDMA transport\n");
843 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
844 if (sunrpc_table_header
) {
845 unregister_sysctl_table(sunrpc_table_header
);
846 sunrpc_table_header
= NULL
;
849 rc
= xprt_unregister_transport(&xprt_rdma
);
851 dprintk("RPC: %s: xprt_unregister returned %i\n",
854 rpcrdma_destroy_wq();
856 rc
= xprt_unregister_transport(&xprt_rdma_bc
);
858 dprintk("RPC: %s: xprt_unregister(bc) returned %i\n",
862 int xprt_rdma_init(void)
866 rc
= rpcrdma_alloc_wq();
870 rc
= xprt_register_transport(&xprt_rdma
);
872 rpcrdma_destroy_wq();
876 rc
= xprt_register_transport(&xprt_rdma_bc
);
878 xprt_unregister_transport(&xprt_rdma
);
879 rpcrdma_destroy_wq();
883 dprintk("RPCRDMA Module Init, register RPC RDMA transport\n");
885 dprintk("Defaults:\n");
886 dprintk("\tSlots %d\n"
887 "\tMaxInlineRead %d\n\tMaxInlineWrite %d\n",
888 xprt_rdma_slot_table_entries
,
889 xprt_rdma_max_inline_read
, xprt_rdma_max_inline_write
);
890 dprintk("\tPadding 0\n\tMemreg %d\n", xprt_rdma_memreg_strategy
);
892 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
893 if (!sunrpc_table_header
)
894 sunrpc_table_header
= register_sysctl_table(sunrpc_table
);