Whamcloud - gitweb
LU-9119 lnet: remove debug ioctl
[fs/lustre-release.git] / lnet / include / lnet / lib-dlc.h
1 /*
2  * LGPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but 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.
18  *
19  * LGPL HEADER END
20  *
21  */
22 /*
23  * Copyright (c) 2014, 2016, Intel Corporation.
24  */
25 /*
26  * Author: Amir Shehata <amir.shehata@intel.com>
27  */
28
29 #ifndef LNET_DLC_H
30 #define LNET_DLC_H
31
32 #include <libcfs/libcfs_ioctl.h>
33 #include <lnet/types.h>
34
35 #define MAX_NUM_SHOW_ENTRIES    32
36 #define LNET_MAX_STR_LEN        128
37 #define LNET_MAX_SHOW_NUM_CPT   128
38 #define LNET_UNDEFINED_HOPS     ((__u32) -1)
39
40 /*
41  * To allow for future enhancements to extend the tunables
42  * add a hdr to this structure, so that the version can be set
43  * and checked for backwards compatibility. Newer versions of LNet
44  * can still work with older versions of lnetctl. The restriction is
45  * that the structure can be added to and not removed from in order
46  * to not invalidate older lnetctl utilities. Moreover, the order of
47  * fields must remain the same, and new fields appended to the structure
48  *
49  * That said all existing LND tunables will be added in this structure
50  * to avoid future changes.
51  */
52 struct lnet_ioctl_config_lnd_cmn_tunables {
53         __u32 lct_version;
54         __s32 lct_peer_timeout;
55         __s32 lct_peer_tx_credits;
56         __s32 lct_peer_rtr_credits;
57         __s32 lct_max_tx_credits;
58 };
59
60 struct lnet_ioctl_config_o2iblnd_tunables {
61         __u32 lnd_version;
62         __u32 lnd_peercredits_hiw;
63         __u32 lnd_map_on_demand;
64         __u32 lnd_concurrent_sends;
65         __u32 lnd_fmr_pool_size;
66         __u32 lnd_fmr_flush_trigger;
67         __u32 lnd_fmr_cache;
68         __u32 pad;
69 };
70
71 struct lnet_lnd_tunables {
72         union {
73                 struct lnet_ioctl_config_o2iblnd_tunables lnd_o2ib;
74         } lnd_tun_u;
75 };
76
77 struct lnet_ioctl_config_lnd_tunables {
78         struct lnet_ioctl_config_lnd_cmn_tunables lt_cmn;
79         struct lnet_lnd_tunables lt_tun;
80 };
81
82 struct lnet_ioctl_net_config {
83         char ni_interfaces[LNET_MAX_INTERFACES][LNET_MAX_STR_LEN];
84         __u32 ni_status;
85         __u32 ni_cpts[LNET_MAX_SHOW_NUM_CPT];
86         char cfg_bulk[0];
87 };
88
89 #define LNET_TINY_BUF_IDX       0
90 #define LNET_SMALL_BUF_IDX      1
91 #define LNET_LARGE_BUF_IDX      2
92
93 /* # different router buffer pools */
94 #define LNET_NRBPOOLS           (LNET_LARGE_BUF_IDX + 1)
95
96 struct lnet_ioctl_pool_cfg {
97         struct {
98                 __u32 pl_npages;
99                 __u32 pl_nbuffers;
100                 __u32 pl_credits;
101                 __u32 pl_mincredits;
102         } pl_pools[LNET_NRBPOOLS];
103         __u32 pl_routing;
104 };
105
106 struct lnet_ioctl_config_data {
107         struct libcfs_ioctl_hdr cfg_hdr;
108
109         __u32 cfg_net;
110         __u32 cfg_count;
111         __u64 cfg_nid;
112         __u32 cfg_ncpts;
113
114         union {
115                 struct {
116                         __u32 rtr_hop;
117                         __u32 rtr_priority;
118                         __u32 rtr_flags;
119                 } cfg_route;
120                 struct {
121                         char net_intf[LNET_MAX_STR_LEN];
122                         __s32 net_peer_timeout;
123                         __s32 net_peer_tx_credits;
124                         __s32 net_peer_rtr_credits;
125                         __s32 net_max_tx_credits;
126                         __u32 net_cksum_algo;
127                         __u32 net_interface_count;
128                 } cfg_net;
129                 struct {
130                         __u32 buf_enable;
131                         __s32 buf_tiny;
132                         __s32 buf_small;
133                         __s32 buf_large;
134                 } cfg_buffers;
135         } cfg_config_u;
136
137         char cfg_bulk[0];
138 };
139
140 struct lnet_ioctl_element_stats {
141         __u32   send_count;
142         __u32   recv_count;
143         __u32   drop_count;
144 };
145
146 /*
147  * lnet_ioctl_config_ni
148  *  This structure describes an NI configuration. There are multiple components
149  *  when configuring an NI: Net, Interfaces, CPT list and LND tunables
150  *  A network is passed as a string to the DLC and translated using
151  *  libcfs_str2net()
152  *  An interface is the name of the system configured interface
153  *  (ex eth0, ib1)
154  *  CPT is the list of CPTS LND tunables are passed in the lic_bulk area
155  */
156 struct lnet_ioctl_config_ni {
157         struct libcfs_ioctl_hdr lic_cfg_hdr;
158         lnet_nid_t              lic_nid;
159         char                    lic_ni_intf[LNET_MAX_INTERFACES][LNET_MAX_STR_LEN];
160         char                    lic_legacy_ip2nets[LNET_MAX_STR_LEN];
161         __u32                   lic_cpts[LNET_MAX_SHOW_NUM_CPT];
162         __u32                   lic_ncpts;
163         __u32                   lic_status;
164         __u32                   lic_tcp_bonding;
165         __u32                   lic_idx;
166         __s32                   lic_dev_cpt;
167         char                    pad[4];
168         char                    lic_bulk[0];
169 };
170
171 struct lnet_peer_ni_credit_info {
172         char cr_aliveness[LNET_MAX_STR_LEN];
173         __u32 cr_refcount;
174         __s32 cr_ni_peer_tx_credits;
175         __s32 cr_peer_tx_credits;
176         __s32 cr_peer_min_tx_credits;
177         __u32 cr_peer_tx_qnob;
178         __s32 cr_peer_rtr_credits;
179         __s32 cr_peer_min_rtr_credits;
180         __u32 cr_ncpt;
181 };
182
183 struct lnet_ioctl_peer {
184         struct libcfs_ioctl_hdr pr_hdr;
185         __u32 pr_count;
186         __u32 pr_pad;
187         lnet_nid_t pr_nid;
188
189         union {
190                 struct lnet_peer_ni_credit_info  pr_peer_credits;
191         } pr_lnd_u;
192 };
193
194 struct lnet_ioctl_peer_cfg {
195         struct libcfs_ioctl_hdr prcfg_hdr;
196         lnet_nid_t prcfg_prim_nid;
197         lnet_nid_t prcfg_cfg_nid;
198         __u32 prcfg_idx;
199         bool prcfg_mr;
200         char prcfg_bulk[0];
201 };
202
203 struct lnet_ioctl_numa_range {
204         struct libcfs_ioctl_hdr nr_hdr;
205         __u32 nr_range;
206 };
207
208 struct lnet_ioctl_lnet_stats {
209         struct libcfs_ioctl_hdr st_hdr;
210         struct lnet_counters st_cntrs;
211 };
212
213 #endif /* LNET_DLC_H */