1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
3 * Copyright (c) 2015-2018 Oracle. All rights reserved.
4 * Copyright (c) 2005-2006 Network Appliance, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the BSD-type
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
16 * Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
19 * Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials provided
22 * with the distribution.
24 * Neither the name of the Network Appliance, Inc. nor the names of
25 * its contributors may be used to endorse or promote products
26 * derived from this software without specific prior written
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 * Author: Tom Tucker <tom@opengridcomputing.com>
44 #include <linux/slab.h>
46 #include <linux/sysctl.h>
47 #include <linux/workqueue.h>
48 #include <linux/sunrpc/clnt.h>
49 #include <linux/sunrpc/sched.h>
50 #include <linux/sunrpc/svc_rdma.h>
52 #define RPCDBG_FACILITY RPCDBG_SVCXPRT
54 /* RPC/RDMA parameters */
55 unsigned int svcrdma_ord
= 16; /* historical default */
56 static unsigned int min_ord
= 1;
57 static unsigned int max_ord
= 255;
58 unsigned int svcrdma_max_requests
= RPCRDMA_MAX_REQUESTS
;
59 unsigned int svcrdma_max_bc_requests
= RPCRDMA_MAX_BC_REQUESTS
;
60 static unsigned int min_max_requests
= 4;
61 static unsigned int max_max_requests
= 16384;
62 unsigned int svcrdma_max_req_size
= RPCRDMA_DEF_INLINE_THRESH
;
63 static unsigned int min_max_inline
= RPCRDMA_DEF_INLINE_THRESH
;
64 static unsigned int max_max_inline
= RPCRDMA_MAX_INLINE_THRESH
;
65 static unsigned int svcrdma_stat_unused
;
66 static unsigned int zero
;
68 struct percpu_counter svcrdma_stat_read
;
69 struct percpu_counter svcrdma_stat_recv
;
70 struct percpu_counter svcrdma_stat_sq_starve
;
71 struct percpu_counter svcrdma_stat_write
;
74 SVCRDMA_COUNTER_BUFSIZ
= sizeof(unsigned long long),
77 static int svcrdma_counter_handler(const struct ctl_table
*table
, int write
,
78 void *buffer
, size_t *lenp
, loff_t
*ppos
)
80 struct percpu_counter
*stat
= (struct percpu_counter
*)table
->data
;
81 char tmp
[SVCRDMA_COUNTER_BUFSIZ
+ 1];
85 percpu_counter_set(stat
, 0);
89 len
= snprintf(tmp
, SVCRDMA_COUNTER_BUFSIZ
, "%lld\n",
90 percpu_counter_sum_positive(stat
));
91 if (len
>= SVCRDMA_COUNTER_BUFSIZ
)
102 memcpy(buffer
, tmp
, len
);
109 static struct ctl_table_header
*svcrdma_table_header
;
110 static struct ctl_table svcrdma_parm_table
[] = {
112 .procname
= "max_requests",
113 .data
= &svcrdma_max_requests
,
114 .maxlen
= sizeof(unsigned int),
116 .proc_handler
= proc_dointvec_minmax
,
117 .extra1
= &min_max_requests
,
118 .extra2
= &max_max_requests
121 .procname
= "max_req_size",
122 .data
= &svcrdma_max_req_size
,
123 .maxlen
= sizeof(unsigned int),
125 .proc_handler
= proc_dointvec_minmax
,
126 .extra1
= &min_max_inline
,
127 .extra2
= &max_max_inline
130 .procname
= "max_outbound_read_requests",
131 .data
= &svcrdma_ord
,
132 .maxlen
= sizeof(unsigned int),
134 .proc_handler
= proc_dointvec_minmax
,
140 .procname
= "rdma_stat_read",
141 .data
= &svcrdma_stat_read
,
142 .maxlen
= SVCRDMA_COUNTER_BUFSIZ
,
144 .proc_handler
= svcrdma_counter_handler
,
147 .procname
= "rdma_stat_recv",
148 .data
= &svcrdma_stat_recv
,
149 .maxlen
= SVCRDMA_COUNTER_BUFSIZ
,
151 .proc_handler
= svcrdma_counter_handler
,
154 .procname
= "rdma_stat_write",
155 .data
= &svcrdma_stat_write
,
156 .maxlen
= SVCRDMA_COUNTER_BUFSIZ
,
158 .proc_handler
= svcrdma_counter_handler
,
161 .procname
= "rdma_stat_sq_starve",
162 .data
= &svcrdma_stat_sq_starve
,
163 .maxlen
= SVCRDMA_COUNTER_BUFSIZ
,
165 .proc_handler
= svcrdma_counter_handler
,
168 .procname
= "rdma_stat_rq_starve",
169 .data
= &svcrdma_stat_unused
,
170 .maxlen
= sizeof(unsigned int),
172 .proc_handler
= proc_dointvec_minmax
,
177 .procname
= "rdma_stat_rq_poll",
178 .data
= &svcrdma_stat_unused
,
179 .maxlen
= sizeof(unsigned int),
181 .proc_handler
= proc_dointvec_minmax
,
186 .procname
= "rdma_stat_rq_prod",
187 .data
= &svcrdma_stat_unused
,
188 .maxlen
= sizeof(unsigned int),
190 .proc_handler
= proc_dointvec_minmax
,
195 .procname
= "rdma_stat_sq_poll",
196 .data
= &svcrdma_stat_unused
,
197 .maxlen
= sizeof(unsigned int),
199 .proc_handler
= proc_dointvec_minmax
,
204 .procname
= "rdma_stat_sq_prod",
205 .data
= &svcrdma_stat_unused
,
206 .maxlen
= sizeof(unsigned int),
208 .proc_handler
= proc_dointvec_minmax
,
214 static void svc_rdma_proc_cleanup(void)
216 if (!svcrdma_table_header
)
218 unregister_sysctl_table(svcrdma_table_header
);
219 svcrdma_table_header
= NULL
;
221 percpu_counter_destroy(&svcrdma_stat_write
);
222 percpu_counter_destroy(&svcrdma_stat_sq_starve
);
223 percpu_counter_destroy(&svcrdma_stat_recv
);
224 percpu_counter_destroy(&svcrdma_stat_read
);
227 static int svc_rdma_proc_init(void)
231 if (svcrdma_table_header
)
234 rc
= percpu_counter_init(&svcrdma_stat_read
, 0, GFP_KERNEL
);
237 rc
= percpu_counter_init(&svcrdma_stat_recv
, 0, GFP_KERNEL
);
240 rc
= percpu_counter_init(&svcrdma_stat_sq_starve
, 0, GFP_KERNEL
);
243 rc
= percpu_counter_init(&svcrdma_stat_write
, 0, GFP_KERNEL
);
247 svcrdma_table_header
= register_sysctl("sunrpc/svc_rdma",
252 percpu_counter_destroy(&svcrdma_stat_sq_starve
);
253 percpu_counter_destroy(&svcrdma_stat_recv
);
254 percpu_counter_destroy(&svcrdma_stat_read
);
258 struct workqueue_struct
*svcrdma_wq
;
260 void svc_rdma_cleanup(void)
262 svc_unreg_xprt_class(&svc_rdma_class
);
263 svc_rdma_proc_cleanup();
265 struct workqueue_struct
*wq
= svcrdma_wq
;
268 destroy_workqueue(wq
);
271 dprintk("SVCRDMA Module Removed, deregister RPC RDMA transport\n");
274 int svc_rdma_init(void)
276 struct workqueue_struct
*wq
;
279 wq
= alloc_workqueue("svcrdma", WQ_UNBOUND
, 0);
283 rc
= svc_rdma_proc_init();
285 destroy_workqueue(wq
);
290 svc_reg_xprt_class(&svc_rdma_class
);
292 dprintk("SVCRDMA Module Init, register RPC RDMA transport\n");
293 dprintk("\tsvcrdma_ord : %d\n", svcrdma_ord
);
294 dprintk("\tmax_requests : %u\n", svcrdma_max_requests
);
295 dprintk("\tmax_bc_requests : %u\n", svcrdma_max_bc_requests
);
296 dprintk("\tmax_inline : %d\n", svcrdma_max_req_size
);