svc_rdma.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. /*
  2. * Copyright (c) 2005-2006 Network Appliance, Inc. All rights reserved.
  3. *
  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
  8. * license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. *
  14. * Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. *
  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.
  21. *
  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
  25. * permission.
  26. *
  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.
  38. *
  39. * Author: Tom Tucker <tom@opengridcomputing.com>
  40. */
  41. #include <linux/module.h>
  42. #include <linux/init.h>
  43. #include <linux/slab.h>
  44. #include <linux/fs.h>
  45. #include <linux/sysctl.h>
  46. #include <linux/sunrpc/clnt.h>
  47. #include <linux/sunrpc/sched.h>
  48. #include <linux/sunrpc/svc_rdma.h>
  49. #define RPCDBG_FACILITY RPCDBG_SVCXPRT
  50. /* RPC/RDMA parameters */
  51. unsigned int svcrdma_ord = RPCRDMA_ORD;
  52. static unsigned int min_ord = 1;
  53. static unsigned int max_ord = 4096;
  54. unsigned int svcrdma_max_requests = RPCRDMA_MAX_REQUESTS;
  55. static unsigned int min_max_requests = 4;
  56. static unsigned int max_max_requests = 16384;
  57. unsigned int svcrdma_max_req_size = RPCRDMA_MAX_REQ_SIZE;
  58. static unsigned int min_max_inline = 4096;
  59. static unsigned int max_max_inline = 65536;
  60. atomic_t rdma_stat_recv;
  61. atomic_t rdma_stat_read;
  62. atomic_t rdma_stat_write;
  63. atomic_t rdma_stat_sq_starve;
  64. atomic_t rdma_stat_rq_starve;
  65. atomic_t rdma_stat_rq_poll;
  66. atomic_t rdma_stat_rq_prod;
  67. atomic_t rdma_stat_sq_poll;
  68. atomic_t rdma_stat_sq_prod;
  69. /* Temporary NFS request map and context caches */
  70. struct kmem_cache *svc_rdma_map_cachep;
  71. struct kmem_cache *svc_rdma_ctxt_cachep;
  72. /*
  73. * This function implements reading and resetting an atomic_t stat
  74. * variable through read/write to a proc file. Any write to the file
  75. * resets the associated statistic to zero. Any read returns it's
  76. * current value.
  77. */
  78. static int read_reset_stat(ctl_table *table, int write,
  79. void __user *buffer, size_t *lenp,
  80. loff_t *ppos)
  81. {
  82. atomic_t *stat = (atomic_t *)table->data;
  83. if (!stat)
  84. return -EINVAL;
  85. if (write)
  86. atomic_set(stat, 0);
  87. else {
  88. char str_buf[32];
  89. char *data;
  90. int len = snprintf(str_buf, 32, "%d\n", atomic_read(stat));
  91. if (len >= 32)
  92. return -EFAULT;
  93. len = strlen(str_buf);
  94. if (*ppos > len) {
  95. *lenp = 0;
  96. return 0;
  97. }
  98. data = &str_buf[*ppos];
  99. len -= *ppos;
  100. if (len > *lenp)
  101. len = *lenp;
  102. if (len && copy_to_user(buffer, str_buf, len))
  103. return -EFAULT;
  104. *lenp = len;
  105. *ppos += len;
  106. }
  107. return 0;
  108. }
  109. static struct ctl_table_header *svcrdma_table_header;
  110. static ctl_table svcrdma_parm_table[] = {
  111. {
  112. .procname = "max_requests",
  113. .data = &svcrdma_max_requests,
  114. .maxlen = sizeof(unsigned int),
  115. .mode = 0644,
  116. .proc_handler = proc_dointvec_minmax,
  117. .extra1 = &min_max_requests,
  118. .extra2 = &max_max_requests
  119. },
  120. {
  121. .procname = "max_req_size",
  122. .data = &svcrdma_max_req_size,
  123. .maxlen = sizeof(unsigned int),
  124. .mode = 0644,
  125. .proc_handler = proc_dointvec_minmax,
  126. .extra1 = &min_max_inline,
  127. .extra2 = &max_max_inline
  128. },
  129. {
  130. .procname = "max_outbound_read_requests",
  131. .data = &svcrdma_ord,
  132. .maxlen = sizeof(unsigned int),
  133. .mode = 0644,
  134. .proc_handler = proc_dointvec_minmax,
  135. .extra1 = &min_ord,
  136. .extra2 = &max_ord,
  137. },
  138. {
  139. .procname = "rdma_stat_read",
  140. .data = &rdma_stat_read,
  141. .maxlen = sizeof(atomic_t),
  142. .mode = 0644,
  143. .proc_handler = read_reset_stat,
  144. },
  145. {
  146. .procname = "rdma_stat_recv",
  147. .data = &rdma_stat_recv,
  148. .maxlen = sizeof(atomic_t),
  149. .mode = 0644,
  150. .proc_handler = read_reset_stat,
  151. },
  152. {
  153. .procname = "rdma_stat_write",
  154. .data = &rdma_stat_write,
  155. .maxlen = sizeof(atomic_t),
  156. .mode = 0644,
  157. .proc_handler = read_reset_stat,
  158. },
  159. {
  160. .procname = "rdma_stat_sq_starve",
  161. .data = &rdma_stat_sq_starve,
  162. .maxlen = sizeof(atomic_t),
  163. .mode = 0644,
  164. .proc_handler = read_reset_stat,
  165. },
  166. {
  167. .procname = "rdma_stat_rq_starve",
  168. .data = &rdma_stat_rq_starve,
  169. .maxlen = sizeof(atomic_t),
  170. .mode = 0644,
  171. .proc_handler = read_reset_stat,
  172. },
  173. {
  174. .procname = "rdma_stat_rq_poll",
  175. .data = &rdma_stat_rq_poll,
  176. .maxlen = sizeof(atomic_t),
  177. .mode = 0644,
  178. .proc_handler = read_reset_stat,
  179. },
  180. {
  181. .procname = "rdma_stat_rq_prod",
  182. .data = &rdma_stat_rq_prod,
  183. .maxlen = sizeof(atomic_t),
  184. .mode = 0644,
  185. .proc_handler = read_reset_stat,
  186. },
  187. {
  188. .procname = "rdma_stat_sq_poll",
  189. .data = &rdma_stat_sq_poll,
  190. .maxlen = sizeof(atomic_t),
  191. .mode = 0644,
  192. .proc_handler = read_reset_stat,
  193. },
  194. {
  195. .procname = "rdma_stat_sq_prod",
  196. .data = &rdma_stat_sq_prod,
  197. .maxlen = sizeof(atomic_t),
  198. .mode = 0644,
  199. .proc_handler = read_reset_stat,
  200. },
  201. { },
  202. };
  203. static ctl_table svcrdma_table[] = {
  204. {
  205. .procname = "svc_rdma",
  206. .mode = 0555,
  207. .child = svcrdma_parm_table
  208. },
  209. { },
  210. };
  211. static ctl_table svcrdma_root_table[] = {
  212. {
  213. .procname = "sunrpc",
  214. .mode = 0555,
  215. .child = svcrdma_table
  216. },
  217. { },
  218. };
  219. void svc_rdma_cleanup(void)
  220. {
  221. dprintk("SVCRDMA Module Removed, deregister RPC RDMA transport\n");
  222. flush_scheduled_work();
  223. if (svcrdma_table_header) {
  224. unregister_sysctl_table(svcrdma_table_header);
  225. svcrdma_table_header = NULL;
  226. }
  227. svc_unreg_xprt_class(&svc_rdma_class);
  228. kmem_cache_destroy(svc_rdma_map_cachep);
  229. kmem_cache_destroy(svc_rdma_ctxt_cachep);
  230. }
  231. int svc_rdma_init(void)
  232. {
  233. dprintk("SVCRDMA Module Init, register RPC RDMA transport\n");
  234. dprintk("\tsvcrdma_ord : %d\n", svcrdma_ord);
  235. dprintk("\tmax_requests : %d\n", svcrdma_max_requests);
  236. dprintk("\tsq_depth : %d\n",
  237. svcrdma_max_requests * RPCRDMA_SQ_DEPTH_MULT);
  238. dprintk("\tmax_inline : %d\n", svcrdma_max_req_size);
  239. if (!svcrdma_table_header)
  240. svcrdma_table_header =
  241. register_sysctl_table(svcrdma_root_table);
  242. /* Create the temporary map cache */
  243. svc_rdma_map_cachep = kmem_cache_create("svc_rdma_map_cache",
  244. sizeof(struct svc_rdma_req_map),
  245. 0,
  246. SLAB_HWCACHE_ALIGN,
  247. NULL);
  248. if (!svc_rdma_map_cachep) {
  249. printk(KERN_INFO "Could not allocate map cache.\n");
  250. goto err0;
  251. }
  252. /* Create the temporary context cache */
  253. svc_rdma_ctxt_cachep =
  254. kmem_cache_create("svc_rdma_ctxt_cache",
  255. sizeof(struct svc_rdma_op_ctxt),
  256. 0,
  257. SLAB_HWCACHE_ALIGN,
  258. NULL);
  259. if (!svc_rdma_ctxt_cachep) {
  260. printk(KERN_INFO "Could not allocate WR ctxt cache.\n");
  261. goto err1;
  262. }
  263. /* Register RDMA with the SVC transport switch */
  264. svc_reg_xprt_class(&svc_rdma_class);
  265. return 0;
  266. err1:
  267. kmem_cache_destroy(svc_rdma_map_cachep);
  268. err0:
  269. unregister_sysctl_table(svcrdma_table_header);
  270. return -ENOMEM;
  271. }
  272. MODULE_AUTHOR("Tom Tucker <tom@opengridcomputing.com>");
  273. MODULE_DESCRIPTION("SVC RDMA Transport");
  274. MODULE_LICENSE("Dual BSD/GPL");
  275. module_init(svc_rdma_init);
  276. module_exit(svc_rdma_cleanup);