2 * Copyright (c) 2005-2006 Network Appliance, Inc. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the BSD-type
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
14 * Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
17 * Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials provided
20 * with the distribution.
22 * Neither the name of the Network Appliance, Inc. nor the names of
23 * its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 * Author: Tom Tucker <tom@opengridcomputing.com>
42 #include <linux/slab.h>
44 #include <linux/sysctl.h>
45 #include <linux/workqueue.h>
46 #include <linux/sunrpc/clnt.h>
47 #include <linux/sunrpc/sched.h>
48 #include <linux/sunrpc/svc_rdma.h>
49 #include "xprt_rdma.h"
51 #define RPCDBG_FACILITY RPCDBG_SVCXPRT
53 /* RPC/RDMA parameters */
54 unsigned int svcrdma_ord
= RPCRDMA_ORD
;
55 static unsigned int min_ord
= 1;
56 static unsigned int max_ord
= 4096;
57 unsigned int svcrdma_max_requests
= RPCRDMA_MAX_REQUESTS
;
58 static unsigned int min_max_requests
= 4;
59 static unsigned int max_max_requests
= 16384;
60 unsigned int svcrdma_max_req_size
= RPCRDMA_MAX_REQ_SIZE
;
61 static unsigned int min_max_inline
= 4096;
62 static unsigned int max_max_inline
= 65536;
64 atomic_t rdma_stat_recv
;
65 atomic_t rdma_stat_read
;
66 atomic_t rdma_stat_write
;
67 atomic_t rdma_stat_sq_starve
;
68 atomic_t rdma_stat_rq_starve
;
69 atomic_t rdma_stat_rq_poll
;
70 atomic_t rdma_stat_rq_prod
;
71 atomic_t rdma_stat_sq_poll
;
72 atomic_t rdma_stat_sq_prod
;
74 /* Temporary NFS request map and context caches */
75 struct kmem_cache
*svc_rdma_map_cachep
;
76 struct kmem_cache
*svc_rdma_ctxt_cachep
;
78 struct workqueue_struct
*svc_rdma_wq
;
81 * This function implements reading and resetting an atomic_t stat
82 * variable through read/write to a proc file. Any write to the file
83 * resets the associated statistic to zero. Any read returns it's
86 static int read_reset_stat(struct ctl_table
*table
, int write
,
87 void __user
*buffer
, size_t *lenp
,
90 atomic_t
*stat
= (atomic_t
*)table
->data
;
100 int len
= snprintf(str_buf
, 32, "%d\n", atomic_read(stat
));
103 len
= strlen(str_buf
);
108 data
= &str_buf
[*ppos
];
112 if (len
&& copy_to_user(buffer
, str_buf
, len
))
120 static struct ctl_table_header
*svcrdma_table_header
;
121 static struct ctl_table svcrdma_parm_table
[] = {
123 .procname
= "max_requests",
124 .data
= &svcrdma_max_requests
,
125 .maxlen
= sizeof(unsigned int),
127 .proc_handler
= proc_dointvec_minmax
,
128 .extra1
= &min_max_requests
,
129 .extra2
= &max_max_requests
132 .procname
= "max_req_size",
133 .data
= &svcrdma_max_req_size
,
134 .maxlen
= sizeof(unsigned int),
136 .proc_handler
= proc_dointvec_minmax
,
137 .extra1
= &min_max_inline
,
138 .extra2
= &max_max_inline
141 .procname
= "max_outbound_read_requests",
142 .data
= &svcrdma_ord
,
143 .maxlen
= sizeof(unsigned int),
145 .proc_handler
= proc_dointvec_minmax
,
151 .procname
= "rdma_stat_read",
152 .data
= &rdma_stat_read
,
153 .maxlen
= sizeof(atomic_t
),
155 .proc_handler
= read_reset_stat
,
158 .procname
= "rdma_stat_recv",
159 .data
= &rdma_stat_recv
,
160 .maxlen
= sizeof(atomic_t
),
162 .proc_handler
= read_reset_stat
,
165 .procname
= "rdma_stat_write",
166 .data
= &rdma_stat_write
,
167 .maxlen
= sizeof(atomic_t
),
169 .proc_handler
= read_reset_stat
,
172 .procname
= "rdma_stat_sq_starve",
173 .data
= &rdma_stat_sq_starve
,
174 .maxlen
= sizeof(atomic_t
),
176 .proc_handler
= read_reset_stat
,
179 .procname
= "rdma_stat_rq_starve",
180 .data
= &rdma_stat_rq_starve
,
181 .maxlen
= sizeof(atomic_t
),
183 .proc_handler
= read_reset_stat
,
186 .procname
= "rdma_stat_rq_poll",
187 .data
= &rdma_stat_rq_poll
,
188 .maxlen
= sizeof(atomic_t
),
190 .proc_handler
= read_reset_stat
,
193 .procname
= "rdma_stat_rq_prod",
194 .data
= &rdma_stat_rq_prod
,
195 .maxlen
= sizeof(atomic_t
),
197 .proc_handler
= read_reset_stat
,
200 .procname
= "rdma_stat_sq_poll",
201 .data
= &rdma_stat_sq_poll
,
202 .maxlen
= sizeof(atomic_t
),
204 .proc_handler
= read_reset_stat
,
207 .procname
= "rdma_stat_sq_prod",
208 .data
= &rdma_stat_sq_prod
,
209 .maxlen
= sizeof(atomic_t
),
211 .proc_handler
= read_reset_stat
,
216 static struct ctl_table svcrdma_table
[] = {
218 .procname
= "svc_rdma",
220 .child
= svcrdma_parm_table
225 static struct ctl_table svcrdma_root_table
[] = {
227 .procname
= "sunrpc",
229 .child
= svcrdma_table
234 void svc_rdma_cleanup(void)
236 dprintk("SVCRDMA Module Removed, deregister RPC RDMA transport\n");
237 destroy_workqueue(svc_rdma_wq
);
238 if (svcrdma_table_header
) {
239 unregister_sysctl_table(svcrdma_table_header
);
240 svcrdma_table_header
= NULL
;
242 #if defined(CONFIG_SUNRPC_BACKCHANNEL)
243 svc_unreg_xprt_class(&svc_rdma_bc_class
);
245 svc_unreg_xprt_class(&svc_rdma_class
);
246 kmem_cache_destroy(svc_rdma_map_cachep
);
247 kmem_cache_destroy(svc_rdma_ctxt_cachep
);
250 int svc_rdma_init(void)
252 dprintk("SVCRDMA Module Init, register RPC RDMA transport\n");
253 dprintk("\tsvcrdma_ord : %d\n", svcrdma_ord
);
254 dprintk("\tmax_requests : %d\n", svcrdma_max_requests
);
255 dprintk("\tsq_depth : %d\n",
256 svcrdma_max_requests
* RPCRDMA_SQ_DEPTH_MULT
);
257 dprintk("\tmax_inline : %d\n", svcrdma_max_req_size
);
259 svc_rdma_wq
= alloc_workqueue("svc_rdma", 0, 0);
263 if (!svcrdma_table_header
)
264 svcrdma_table_header
=
265 register_sysctl_table(svcrdma_root_table
);
267 /* Create the temporary map cache */
268 svc_rdma_map_cachep
= kmem_cache_create("svc_rdma_map_cache",
269 sizeof(struct svc_rdma_req_map
),
273 if (!svc_rdma_map_cachep
) {
274 printk(KERN_INFO
"Could not allocate map cache.\n");
278 /* Create the temporary context cache */
279 svc_rdma_ctxt_cachep
=
280 kmem_cache_create("svc_rdma_ctxt_cache",
281 sizeof(struct svc_rdma_op_ctxt
),
285 if (!svc_rdma_ctxt_cachep
) {
286 printk(KERN_INFO
"Could not allocate WR ctxt cache.\n");
290 /* Register RDMA with the SVC transport switch */
291 svc_reg_xprt_class(&svc_rdma_class
);
292 #if defined(CONFIG_SUNRPC_BACKCHANNEL)
293 svc_reg_xprt_class(&svc_rdma_bc_class
);
297 kmem_cache_destroy(svc_rdma_map_cachep
);
299 unregister_sysctl_table(svcrdma_table_header
);
300 destroy_workqueue(svc_rdma_wq
);