Whamcloud - gitweb
LU-9897 utils: remove libcfsutils.a and libptlctl.a
[fs/lustre-release.git] / lnet / utils / lnetconfig / liblnetconfig_lnd.c
1 /*
2  * LGPL 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 Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1 of the
9  * License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * LGPL HEADER END
20  *
21  * Copyright (c) 2015, James Simmons
22  *
23  * Copyright (c) 2016, Intel Corporation.
24  *
25  * Author:
26  *   James Simmons <jsimmons@infradead.org>
27  */
28
29 #include <limits.h>
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <libcfs/util/ioctl.h>
34 #include "liblnd.h"
35 #include "liblnetconfig.h"
36
37 static int
38 lustre_o2iblnd_show_tun(struct cYAML *lndparams,
39                         struct lnet_ioctl_config_o2iblnd_tunables *lnd_cfg)
40 {
41         if (cYAML_create_number(lndparams, "peercredits_hiw",
42                                 lnd_cfg->lnd_peercredits_hiw) == NULL)
43                 return LUSTRE_CFG_RC_OUT_OF_MEM;
44
45         if (cYAML_create_number(lndparams, "map_on_demand",
46                                 lnd_cfg->lnd_map_on_demand) == NULL)
47                 return LUSTRE_CFG_RC_OUT_OF_MEM;
48
49         if (cYAML_create_number(lndparams, "concurrent_sends",
50                                 lnd_cfg->lnd_concurrent_sends) == NULL)
51                 return LUSTRE_CFG_RC_OUT_OF_MEM;
52
53         if (cYAML_create_number(lndparams, "fmr_pool_size",
54                                 lnd_cfg->lnd_fmr_pool_size) == NULL)
55                 return LUSTRE_CFG_RC_OUT_OF_MEM;
56
57         if (cYAML_create_number(lndparams, "fmr_flush_trigger",
58                                 lnd_cfg->lnd_fmr_flush_trigger) == NULL)
59                 return LUSTRE_CFG_RC_OUT_OF_MEM;
60
61         if (cYAML_create_number(lndparams, "fmr_cache",
62                                 lnd_cfg->lnd_fmr_cache) == NULL)
63                 return LUSTRE_CFG_RC_OUT_OF_MEM;
64
65         if (cYAML_create_number(lndparams, "ntx",
66                                 lnd_cfg->lnd_ntx) == NULL)
67                 return LUSTRE_CFG_RC_OUT_OF_MEM;
68
69         if (cYAML_create_number(lndparams, "conns_per_peer",
70                                 lnd_cfg->lnd_conns_per_peer) == NULL)
71                 return LUSTRE_CFG_RC_OUT_OF_MEM;
72
73         return LUSTRE_CFG_RC_NO_ERR;
74 }
75
76 int
77 lustre_net_show_tunables(struct cYAML *tunables,
78                          struct lnet_ioctl_config_lnd_cmn_tunables *cmn)
79 {
80
81
82         if (cYAML_create_number(tunables, "peer_timeout",
83                                 cmn->lct_peer_timeout)
84                                         == NULL)
85                 goto out;
86
87         if (cYAML_create_number(tunables, "peer_credits",
88                                 cmn->lct_peer_tx_credits)
89                                         == NULL)
90                 goto out;
91
92         if (cYAML_create_number(tunables,
93                                 "peer_buffer_credits",
94                                 cmn->lct_peer_rtr_credits)
95                                         == NULL)
96                 goto out;
97
98         if (cYAML_create_number(tunables, "credits",
99                                 cmn->lct_max_tx_credits)
100                                         == NULL)
101                 goto out;
102
103         return LUSTRE_CFG_RC_NO_ERR;
104
105 out:
106         return LUSTRE_CFG_RC_OUT_OF_MEM;
107 }
108
109 int
110 lustre_ni_show_tunables(struct cYAML *lnd_tunables,
111                         __u32 net_type,
112                         struct lnet_lnd_tunables *lnd)
113 {
114         int rc = LUSTRE_CFG_RC_NO_ERR;
115
116         if (net_type == O2IBLND)
117                 rc = lustre_o2iblnd_show_tun(lnd_tunables,
118                                              &lnd->lnd_tun_u.lnd_o2ib);
119
120         return rc;
121 }
122
123 static void
124 yaml_extract_o2ib_tun(struct cYAML *tree,
125                       struct lnet_ioctl_config_o2iblnd_tunables *lnd_cfg)
126 {
127         struct cYAML *map_on_demand = NULL, *concurrent_sends = NULL;
128         struct cYAML *fmr_pool_size = NULL, *fmr_cache = NULL;
129         struct cYAML *fmr_flush_trigger = NULL, *lndparams = NULL;
130         struct cYAML *conns_per_peer = NULL, *ntx = NULL;
131
132         lndparams = cYAML_get_object_item(tree, "lnd tunables");
133         if (!lndparams)
134                 return;
135
136         map_on_demand = cYAML_get_object_item(lndparams, "map_on_demand");
137         lnd_cfg->lnd_map_on_demand =
138                 (map_on_demand) ? map_on_demand->cy_valueint : 0;
139
140         concurrent_sends = cYAML_get_object_item(lndparams, "concurrent_sends");
141         lnd_cfg->lnd_concurrent_sends =
142                 (concurrent_sends) ? concurrent_sends->cy_valueint : 0;
143
144         fmr_pool_size = cYAML_get_object_item(lndparams, "fmr_pool_size");
145         lnd_cfg->lnd_fmr_pool_size =
146                 (fmr_pool_size) ? fmr_pool_size->cy_valueint : 0;
147
148         fmr_flush_trigger = cYAML_get_object_item(lndparams,
149                                                   "fmr_flush_trigger");
150         lnd_cfg->lnd_fmr_flush_trigger =
151                 (fmr_flush_trigger) ? fmr_flush_trigger->cy_valueint : 0;
152
153         fmr_cache = cYAML_get_object_item(lndparams, "fmr_cache");
154         lnd_cfg->lnd_fmr_cache =
155                 (fmr_cache) ? fmr_cache->cy_valueint : 0;
156
157         ntx = cYAML_get_object_item(lndparams, "ntx");
158         lnd_cfg->lnd_ntx = (ntx) ? ntx->cy_valueint : 0;
159
160         conns_per_peer = cYAML_get_object_item(lndparams, "conns_per_peer");
161         lnd_cfg->lnd_conns_per_peer =
162                 (conns_per_peer) ? conns_per_peer->cy_valueint : 1;
163 }
164
165
166 void
167 lustre_yaml_extract_lnd_tunables(struct cYAML *tree,
168                                  __u32 net_type,
169                                  struct lnet_lnd_tunables *tun)
170 {
171         if (net_type == O2IBLND)
172                 yaml_extract_o2ib_tun(tree,
173                                       &tun->lnd_tun_u.lnd_o2ib);
174
175 }
176