Whamcloud - gitweb
LU-6245 libcfs: remove sysctl module handling
[fs/lustre-release.git] / lnet / klnds / o2iblnd / o2iblnd_modparams.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lnet/klnds/o2iblnd/o2iblnd_modparams.c
37  *
38  * Author: Eric Barton <eric@bartonsoftware.com>
39  */
40
41 #include "o2iblnd.h"
42
43 static int service = 987;
44 module_param(service, int, 0444);
45 MODULE_PARM_DESC(service, "service number (within RDMA_PS_TCP)");
46
47 static int cksum = 0;
48 module_param(cksum, int, 0644);
49 MODULE_PARM_DESC(cksum, "set non-zero to enable message (not RDMA) checksums");
50
51 static int timeout = 50;
52 module_param(timeout, int, 0644);
53 MODULE_PARM_DESC(timeout, "timeout (seconds)");
54
55 /* Number of threads in each scheduler pool which is percpt,
56  * we will estimate reasonable value based on CPUs if it's set to zero. */
57 static int nscheds;
58 module_param(nscheds, int, 0444);
59 MODULE_PARM_DESC(nscheds, "number of threads in each scheduler pool");
60
61 /* NB: this value is shared by all CPTs, it can grow at runtime */
62 static int ntx = 512;
63 module_param(ntx, int, 0444);
64 MODULE_PARM_DESC(ntx, "# of message descriptors allocated for each pool");
65
66 /* NB: this value is shared by all CPTs */
67 static int credits = 256;
68 module_param(credits, int, 0444);
69 MODULE_PARM_DESC(credits, "# concurrent sends");
70
71 static int peer_credits = 8;
72 module_param(peer_credits, int, 0444);
73 MODULE_PARM_DESC(peer_credits, "# concurrent sends to 1 peer");
74
75 static int peer_credits_hiw = 0;
76 module_param(peer_credits_hiw, int, 0444);
77 MODULE_PARM_DESC(peer_credits_hiw, "when eagerly to return credits");
78
79 static int peer_buffer_credits = 0;
80 module_param(peer_buffer_credits, int, 0444);
81 MODULE_PARM_DESC(peer_buffer_credits, "# per-peer router buffer credits");
82
83 static int peer_timeout = 180;
84 module_param(peer_timeout, int, 0444);
85 MODULE_PARM_DESC(peer_timeout, "Seconds without aliveness news to declare peer dead (<=0 to disable)");
86
87 static char *ipif_name = "ib0";
88 module_param(ipif_name, charp, 0444);
89 MODULE_PARM_DESC(ipif_name, "IPoIB interface name");
90
91 static int retry_count = 5;
92 module_param(retry_count, int, 0644);
93 MODULE_PARM_DESC(retry_count, "Retransmissions when no ACK received");
94
95 static int rnr_retry_count = 6;
96 module_param(rnr_retry_count, int, 0644);
97 MODULE_PARM_DESC(rnr_retry_count, "RNR retransmissions");
98
99 static int keepalive = 100;
100 module_param(keepalive, int, 0644);
101 MODULE_PARM_DESC(keepalive, "Idle time in seconds before sending a keepalive");
102
103 static int ib_mtu;
104 module_param(ib_mtu, int, 0444);
105 MODULE_PARM_DESC(ib_mtu, "IB MTU 256/512/1024/2048/4096");
106
107 static int concurrent_sends;
108 module_param(concurrent_sends, int, 0444);
109 MODULE_PARM_DESC(concurrent_sends, "send work-queue sizing");
110
111 static int map_on_demand;
112 module_param(map_on_demand, int, 0444);
113 MODULE_PARM_DESC(map_on_demand, "map on demand");
114
115 /* NB: this value is shared by all CPTs, it can grow at runtime */
116 static int fmr_pool_size = 512;
117 module_param(fmr_pool_size, int, 0444);
118 MODULE_PARM_DESC(fmr_pool_size, "size of fmr pool on each CPT (>= ntx / 4)");
119
120 /* NB: this value is shared by all CPTs, it can grow at runtime */
121 static int fmr_flush_trigger = 384;
122 module_param(fmr_flush_trigger, int, 0444);
123 MODULE_PARM_DESC(fmr_flush_trigger, "# dirty FMRs that triggers pool flush");
124
125 static int fmr_cache = 1;
126 module_param(fmr_cache, int, 0444);
127 MODULE_PARM_DESC(fmr_cache, "non-zero to enable FMR caching");
128
129 /*
130  * 0: disable failover
131  * 1: enable failover if necessary
132  * 2: force to failover (for debug)
133  */
134 static int dev_failover = 0;
135 module_param(dev_failover, int, 0444);
136 MODULE_PARM_DESC(dev_failover, "HCA failover for bonding (0 off, 1 on, other values reserved)");
137
138 static int require_privileged_port;
139 module_param(require_privileged_port, int, 0644);
140 MODULE_PARM_DESC(require_privileged_port, "require privileged port when accepting connection");
141
142 static int use_privileged_port = 1;
143 module_param(use_privileged_port, int, 0644);
144 MODULE_PARM_DESC(use_privileged_port, "use privileged port when initiating connection");
145
146 kib_tunables_t kiblnd_tunables = {
147         .kib_dev_failover           = &dev_failover,
148         .kib_service                = &service,
149         .kib_cksum                  = &cksum,
150         .kib_timeout                = &timeout,
151         .kib_keepalive              = &keepalive,
152         .kib_ntx                    = &ntx,
153         .kib_default_ipif           = &ipif_name,
154         .kib_retry_count            = &retry_count,
155         .kib_rnr_retry_count        = &rnr_retry_count,
156         .kib_ib_mtu                 = &ib_mtu,
157         .kib_require_priv_port      = &require_privileged_port,
158         .kib_use_priv_port          = &use_privileged_port,
159         .kib_nscheds                = &nscheds
160 };
161
162 static struct lnet_ioctl_config_o2iblnd_tunables default_tunables;
163
164 /* # messages/RDMAs in-flight */
165 int
166 kiblnd_msg_queue_size(int version, lnet_ni_t *ni)
167 {
168         if (version == IBLND_MSG_VERSION_1)
169                 return IBLND_MSG_QUEUE_SIZE_V1;
170         else if (ni)
171                 return ni->ni_peertxcredits;
172         else
173                 return peer_credits;
174 }
175
176 int
177 kiblnd_tunables_setup(lnet_ni_t *ni)
178 {
179         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
180
181         /*
182          * if there was no tunables specified, setup the tunables to be
183          * defaulted
184          */
185         if (!ni->ni_lnd_tunables) {
186                 LIBCFS_ALLOC(ni->ni_lnd_tunables,
187                              sizeof(*ni->ni_lnd_tunables));
188                 if (!ni->ni_lnd_tunables)
189                         return -ENOMEM;
190
191                 memcpy(&ni->ni_lnd_tunables->lt_tun_u.lt_o2ib,
192                        &default_tunables, sizeof(*tunables));
193         }
194         tunables = &ni->ni_lnd_tunables->lt_tun_u.lt_o2ib;
195
196         /* Current API version */
197         tunables->lnd_version = 0;
198
199         if (kiblnd_translate_mtu(*kiblnd_tunables.kib_ib_mtu) < 0) {
200                 CERROR("Invalid ib_mtu %d, expected 256/512/1024/2048/4096\n",
201                        *kiblnd_tunables.kib_ib_mtu);
202                 return -EINVAL;
203         }
204
205         if (!ni->ni_peertimeout)
206                 ni->ni_peertimeout = peer_timeout;
207
208         if (!ni->ni_maxtxcredits)
209                 ni->ni_maxtxcredits = credits;
210
211         if (!ni->ni_peertxcredits)
212                 ni->ni_peertxcredits = peer_credits;
213
214         if (!ni->ni_peerrtrcredits)
215                 ni->ni_peerrtrcredits = peer_buffer_credits;
216
217         if (ni->ni_peertxcredits < IBLND_CREDITS_DEFAULT)
218                 ni->ni_peertxcredits = IBLND_CREDITS_DEFAULT;
219
220         if (ni->ni_peertxcredits > IBLND_CREDITS_MAX)
221                 ni->ni_peertxcredits = IBLND_CREDITS_MAX;
222
223         if (ni->ni_peertxcredits > credits)
224                 ni->ni_peertxcredits = credits;
225
226         if (!tunables->lnd_peercredits_hiw)
227                 tunables->lnd_peercredits_hiw = peer_credits_hiw;
228
229         if (tunables->lnd_peercredits_hiw < ni->ni_peertxcredits / 2)
230                 tunables->lnd_peercredits_hiw = ni->ni_peertxcredits / 2;
231
232         if (tunables->lnd_peercredits_hiw >= ni->ni_peertxcredits)
233                 tunables->lnd_peercredits_hiw = ni->ni_peertxcredits - 1;
234
235         if (tunables->lnd_map_on_demand < 0 ||
236             tunables->lnd_map_on_demand > IBLND_MAX_RDMA_FRAGS) {
237                 /* disable map-on-demand */
238                 tunables->lnd_map_on_demand = 0;
239         }
240
241         if (tunables->lnd_map_on_demand == 1) {
242                 /* don't make sense to create map if only one fragment */
243                 tunables->lnd_map_on_demand = 2;
244         }
245
246         if (tunables->lnd_concurrent_sends == 0) {
247                 if (tunables->lnd_map_on_demand > 0 &&
248                     tunables->lnd_map_on_demand <= IBLND_MAX_RDMA_FRAGS / 8) {
249                         tunables->lnd_concurrent_sends =
250                                                 ni->ni_peertxcredits * 2;
251                 } else {
252                         tunables->lnd_concurrent_sends = ni->ni_peertxcredits;
253                 }
254         }
255
256         if (tunables->lnd_concurrent_sends > ni->ni_peertxcredits * 2)
257                 tunables->lnd_concurrent_sends = ni->ni_peertxcredits * 2;
258
259         if (tunables->lnd_concurrent_sends < ni->ni_peertxcredits / 2)
260                 tunables->lnd_concurrent_sends = ni->ni_peertxcredits / 2;
261
262         if (tunables->lnd_concurrent_sends < ni->ni_peertxcredits) {
263                 CWARN("Concurrent sends %d is lower than message "
264                       "queue size: %d, performance may drop slightly.\n",
265                       tunables->lnd_concurrent_sends, ni->ni_peertxcredits);
266         }
267
268         if (!tunables->lnd_fmr_pool_size)
269                 tunables->lnd_fmr_pool_size = fmr_pool_size;
270         if (!tunables->lnd_fmr_flush_trigger)
271                 tunables->lnd_fmr_flush_trigger = fmr_flush_trigger;
272         if (!tunables->lnd_fmr_cache)
273                 tunables->lnd_fmr_cache = fmr_cache;
274
275         return 0;
276 }
277
278 int
279 kiblnd_tunables_init(void)
280 {
281         default_tunables.lnd_version = 0;
282         default_tunables.lnd_peercredits_hiw = peer_credits_hiw,
283         default_tunables.lnd_map_on_demand = map_on_demand;
284         default_tunables.lnd_concurrent_sends = concurrent_sends;
285         default_tunables.lnd_fmr_pool_size = fmr_pool_size;
286         default_tunables.lnd_fmr_flush_trigger = fmr_flush_trigger;
287         default_tunables.lnd_fmr_cache = fmr_cache;
288         return 0;
289 }